From 6f6794748c6a222710e57b71c8e9f5b4a4790a2e Mon Sep 17 00:00:00 2001 From: Tim Whiting Date: Sat, 11 Jul 2020 12:13:05 -0600 Subject: [PATCH] add in type parameters to map set and list literals --- grammar.js | 5 +- src/grammar.json | 28 + src/node-types.json | 8 + src/parser.c | 251137 ++++++++++++++++++++-------------------- test/corpus/dart.txt | 14 + 5 files changed, 128141 insertions(+), 123051 deletions(-) diff --git a/grammar.js b/grammar.js index 91734163a..a50bb7068 100644 --- a/grammar.js +++ b/grammar.js @@ -230,6 +230,7 @@ module.exports = grammar({ [$._top_level_definition, $.const_object_expression, $._final_const_var_or_type], [$._final_const_var_or_type, $.const_object_expression], [$._final_const_var_or_type], + [$.type_parameter, $._type_name], // [$._expression_without_cascade, $._real_expression] // [$.constructor_signature, $._formal_parameter_part], // [$._unannotated_type, $.type_parameter], @@ -588,12 +589,12 @@ module.exports = grammar({ // ), list_literal: $ => seq( - '[', + optional($.type_arguments), '[', commaSepTrailingComma($._element), ']' ), set_or_map_literal: $ => seq( - '{', + optional($.type_arguments), '{', commaSepTrailingComma( $._element ), diff --git a/src/grammar.json b/src/grammar.json index e4b3360bf..5d469ef73 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1821,6 +1821,18 @@ "list_literal": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "[" @@ -1879,6 +1891,18 @@ "set_or_map_literal": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "{" @@ -9383,6 +9407,10 @@ ], [ "_final_const_var_or_type" + ], + [ + "type_parameter", + "_type_name" ] ], "externals": [ diff --git a/src/node-types.json b/src/node-types.json index 5964a3ac6..2eb7fbe3f 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -6282,6 +6282,10 @@ "type": "throw_expression", "named": true }, + { + "type": "type_arguments", + "named": true + }, { "type": "unary_expression", "named": true @@ -8211,6 +8215,10 @@ "type": "throw_expression", "named": true }, + { + "type": "type_arguments", + "named": true + }, { "type": "unary_expression", "named": true diff --git a/src/parser.c b/src/parser.c index 0a86810e2..18f2aa287 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 11 -#define STATE_COUNT 3810 -#define LARGE_STATE_COUNT 970 +#define STATE_COUNT 3868 +#define LARGE_STATE_COUNT 1006 #define SYMBOL_COUNT 423 #define ALIAS_COUNT 1 #define TOKEN_COUNT 148 @@ -3418,122 +3418,122 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(93); - if (lookahead == '!') ADVANCE(215); - if (lookahead == '"') ADVANCE(124); - if (lookahead == '#') ADVANCE(95); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(210); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '+') ADVANCE(199); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(203); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(208); - if (lookahead == '0') ADVANCE(97); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(146); - if (lookahead == '>') ADVANCE(179); - if (lookahead == '?') ADVANCE(165); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '\\') ADVANCE(85); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(187); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 's') ADVANCE(247); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(184); - if (lookahead == '}') ADVANCE(122); - if (lookahead == '~') ADVANCE(217); + if (eof) ADVANCE(94); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '"') ADVANCE(125); + if (lookahead == '#') ADVANCE(96); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '%') ADVANCE(211); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '\'') ADVANCE(128); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '+') ADVANCE(200); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(204); + if (lookahead == '.') ADVANCE(223); + if (lookahead == '/') ADVANCE(209); + if (lookahead == '0') ADVANCE(98); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(173); + if (lookahead == '=') ADVANCE(147); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '\\') ADVANCE(86); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(188); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 's') ADVANCE(248); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(185); + if (lookahead == '}') ADVANCE(123); + if (lookahead == '~') ADVANCE(218); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(238); + if (lookahead == '\n') ADVANCE(239); if (lookahead == '/') ADVANCE(24); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1) END_STATE(); case 2: - if (lookahead == '!') ADVANCE(215); - if (lookahead == '"') ADVANCE(123); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(210); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '+') ADVANCE(199); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(203); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(208); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(179); - if (lookahead == '?') ADVANCE(165); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '\\') ADVANCE(68); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(187); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 's') ADVANCE(247); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(184); - if (lookahead == '}') ADVANCE(122); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '"') ADVANCE(14); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '%') ADVANCE(211); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '+') ADVANCE(200); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(204); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(209); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(173); + if (lookahead == '=') ADVANCE(146); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '\\') ADVANCE(69); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(188); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 's') ADVANCE(248); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(185); + if (lookahead == '}') ADVANCE(123); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(215); - if (lookahead == '"') ADVANCE(123); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(210); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '+') ADVANCE(199); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(203); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(208); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(179); - if (lookahead == '?') ADVANCE(165); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(187); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 's') ADVANCE(247); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(184); - if (lookahead == '}') ADVANCE(122); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '"') ADVANCE(14); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '%') ADVANCE(211); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '+') ADVANCE(200); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(204); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(209); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(173); + if (lookahead == '=') ADVANCE(146); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(188); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 's') ADVANCE(248); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(185); + if (lookahead == '}') ADVANCE(123); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3541,33 +3541,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(3) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(215); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(207); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(39); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '?') ADVANCE(166); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(186); - if (lookahead == 'a') ADVANCE(246); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(122); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(198); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(208); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(40); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(167); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(187); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == '|') ADVANCE(186); + if (lookahead == '}') ADVANCE(123); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3575,30 +3575,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(4) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(215); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(160); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(198); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(207); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '?') ADVANCE(166); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '^') ADVANCE(186); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 's') ADVANCE(247); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(185); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '(') ADVANCE(161); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(199); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(203); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(208); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(41); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(167); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '^') ADVANCE(187); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 's') ADVANCE(248); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(186); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3606,30 +3606,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(5) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(215); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(160); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(207); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '?') ADVANCE(166); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '^') ADVANCE(186); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 's') ADVANCE(247); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(185); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '(') ADVANCE(161); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(198); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(208); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(41); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(167); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '^') ADVANCE(187); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 's') ADVANCE(248); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(186); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3637,34 +3637,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(6) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(39); - if (lookahead == '"') ADVANCE(123); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(210); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '\'') ADVANCE(21); - if (lookahead == '(') ADVANCE(160); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '+') ADVANCE(200); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(204); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(208); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(179); - if (lookahead == '?') ADVANCE(165); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '\\') ADVANCE(68); - if (lookahead == '^') ADVANCE(187); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 's') ADVANCE(247); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(184); + if (lookahead == '!') ADVANCE(40); + if (lookahead == '"') ADVANCE(124); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '%') ADVANCE(211); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '(') ADVANCE(161); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '+') ADVANCE(201); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(209); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(173); + if (lookahead == '=') ADVANCE(146); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '\\') ADVANCE(69); + if (lookahead == '^') ADVANCE(188); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 's') ADVANCE(248); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(185); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3672,33 +3672,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(8) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(39); - if (lookahead == '"') ADVANCE(123); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(210); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '\'') ADVANCE(21); - if (lookahead == '(') ADVANCE(160); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '+') ADVANCE(200); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(204); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(208); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(145); - if (lookahead == '>') ADVANCE(179); - if (lookahead == '?') ADVANCE(165); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '^') ADVANCE(187); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 's') ADVANCE(247); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(184); + if (lookahead == '!') ADVANCE(40); + if (lookahead == '"') ADVANCE(124); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '%') ADVANCE(211); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '(') ADVANCE(161); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '+') ADVANCE(201); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(209); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(173); + if (lookahead == '=') ADVANCE(146); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '^') ADVANCE(188); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 's') ADVANCE(248); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(185); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3706,71 +3706,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(8) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(39); - if (lookahead == '"') ADVANCE(14); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(210); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '+') ADVANCE(200); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(204); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(208); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(179); - if (lookahead == '?') ADVANCE(165); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '\\') ADVANCE(68); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(187); - if (lookahead == 'a') ADVANCE(246); - if (lookahead == '|') ADVANCE(184); - if (lookahead == '}') ADVANCE(122); + if (lookahead == '!') ADVANCE(40); + if (lookahead == '"') ADVANCE(124); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '%') ADVANCE(211); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '+') ADVANCE(201); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(209); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(173); + if (lookahead == '=') ADVANCE(145); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '\\') ADVANCE(69); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(188); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == '|') ADVANCE(185); + if (lookahead == '}') ADVANCE(123); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) if (('A' <= lookahead && lookahead <= '_') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(39); - if (lookahead == '"') ADVANCE(14); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '%') ADVANCE(210); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '+') ADVANCE(200); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(204); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(208); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(179); - if (lookahead == '?') ADVANCE(165); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(187); - if (lookahead == 'a') ADVANCE(246); - if (lookahead == '|') ADVANCE(184); - if (lookahead == '}') ADVANCE(122); + if (lookahead == '!') ADVANCE(40); + if (lookahead == '"') ADVANCE(124); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '%') ADVANCE(211); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '+') ADVANCE(201); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(209); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(173); + if (lookahead == '=') ADVANCE(145); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(188); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == '|') ADVANCE(185); + if (lookahead == '}') ADVANCE(123); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3778,31 +3778,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(10) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(39); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(207); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(173); - if (lookahead == '=') ADVANCE(39); - if (lookahead == '>') ADVANCE(53); - if (lookahead == '?') ADVANCE(167); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(186); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(122); + if (lookahead == '!') ADVANCE(40); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(198); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(208); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(39); + if (lookahead == '=') ADVANCE(40); + if (lookahead == '>') ADVANCE(54); + if (lookahead == '?') ADVANCE(168); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(187); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(186); + if (lookahead == '}') ADVANCE(123); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3810,32 +3810,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(11) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(39); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(207); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(39); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '?') ADVANCE(167); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(186); - if (lookahead == 'a') ADVANCE(246); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(122); + if (lookahead == '!') ADVANCE(40); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(198); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(208); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(40); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(168); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(187); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == '|') ADVANCE(186); + if (lookahead == '}') ADVANCE(123); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3843,30 +3843,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(12) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(39); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(160); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(197); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(207); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(40); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '?') ADVANCE(167); - if (lookahead == '^') ADVANCE(186); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 's') ADVANCE(247); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(185); + if (lookahead == '!') ADVANCE(40); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '(') ADVANCE(161); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(198); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '/') ADVANCE(208); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(41); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(168); + if (lookahead == '^') ADVANCE(187); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 's') ADVANCE(248); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(186); if (lookahead == '~') ADVANCE(36); if (lookahead == '\t' || lookahead == '\n' || @@ -3874,100 +3874,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(13) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 14: if (lookahead == '"') ADVANCE(15); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(128); + if (lookahead == '"') ADVANCE(129); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(123); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '\'') ADVANCE(126); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(138); + if (lookahead == '"') ADVANCE(124); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(139); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(132); + lookahead == ' ') ADVANCE(133); if (lookahead != 0 && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || '{' < lookahead)) ADVANCE(130); + (lookahead < 'a' || '{' < lookahead)) ADVANCE(131); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(123); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '\'') ADVANCE(135); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(138); + if (lookahead == '"') ADVANCE(124); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '\'') ADVANCE(136); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(139); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(133); + lookahead == ' ') ADVANCE(134); if (lookahead != 0 && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || '{' < lookahead)) ADVANCE(130); + (lookahead < 'a' || '{' < lookahead)) ADVANCE(131); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(131); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '\'') ADVANCE(126); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(138); + if (lookahead == '"') ADVANCE(132); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(139); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(134); + lookahead == ' ') ADVANCE(135); if (lookahead != 0 && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || '{' < lookahead)) ADVANCE(130); + (lookahead < 'a' || '{' < lookahead)) ADVANCE(131); END_STATE(); case 19: - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '-') ADVANCE(201); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '[') ADVANCE(55); - if (lookahead == '^') ADVANCE(186); - if (lookahead == 'a') ADVANCE(66); - if (lookahead == '|') ADVANCE(183); - if (lookahead == '~') ADVANCE(217); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(189); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(198); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '/') ADVANCE(208); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(47); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '[') ADVANCE(56); + if (lookahead == '^') ADVANCE(187); + if (lookahead == 'a') ADVANCE(67); + if (lookahead == '|') ADVANCE(184); + if (lookahead == '~') ADVANCE(218); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(19) END_STATE(); case 20: - if (lookahead == '%') ADVANCE(41); - if (lookahead == '&') ADVANCE(42); - if (lookahead == '(') ADVANCE(160); - if (lookahead == '*') ADVANCE(43); - if (lookahead == '+') ADVANCE(44); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(45); - if (lookahead == '.') ADVANCE(223); + if (lookahead == '%') ADVANCE(42); + if (lookahead == '&') ADVANCE(43); + if (lookahead == '(') ADVANCE(161); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '+') ADVANCE(45); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(46); + if (lookahead == '.') ADVANCE(224); if (lookahead == '/') ADVANCE(25); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(54); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(148); + if (lookahead == '>') ADVANCE(55); if (lookahead == '?') ADVANCE(32); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '^') ADVANCE(47); - if (lookahead == 'a') ADVANCE(67); - if (lookahead == 's') ADVANCE(69); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(48); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '^') ADVANCE(48); + if (lookahead == 'a') ADVANCE(68); + if (lookahead == 's') ADVANCE(70); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(49); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3977,40 +3977,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(22); END_STATE(); case 22: - if (lookahead == '\'') ADVANCE(129); + if (lookahead == '\'') ADVANCE(130); END_STATE(); case 23: - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '.') ADVANCE(222); if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(171); - if (lookahead == '=') ADVANCE(143); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '}') ADVANCE(122); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(172); + if (lookahead == '=') ADVANCE(144); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '}') ADVANCE(123); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 24: if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(250); + if (lookahead == '/') ADVANCE(251); END_STATE(); case 25: if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '=') ADVANCE(151); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '=') ADVANCE(152); END_STATE(); case 26: if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(249); + if (lookahead == '/') ADVANCE(250); if (lookahead != 0) ADVANCE(27); END_STATE(); case 27: @@ -4018,1247 +4018,1242 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(27); END_STATE(); case 28: - if (lookahead == '*') ADVANCE(236); + if (lookahead == '*') ADVANCE(237); END_STATE(); case 29: - if (lookahead == '+') ADVANCE(212); + if (lookahead == '+') ADVANCE(213); END_STATE(); case 30: - if (lookahead == '+') ADVANCE(212); - if (lookahead == '=') ADVANCE(148); + if (lookahead == '+') ADVANCE(213); + if (lookahead == '=') ADVANCE(149); END_STATE(); case 31: - if (lookahead == '.') ADVANCE(225); + if (lookahead == '.') ADVANCE(226); END_STATE(); case 32: - if (lookahead == '.') ADVANCE(225); - if (lookahead == '?') ADVANCE(51); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '?') ADVANCE(52); END_STATE(); case 33: - if (lookahead == '.') ADVANCE(213); + if (lookahead == '.') ADVANCE(214); END_STATE(); case 34: - if (lookahead == '.') ADVANCE(80); + if (lookahead == '.') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); case 35: if (lookahead == '.') ADVANCE(33); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); END_STATE(); case 36: - if (lookahead == '/') ADVANCE(211); + if (lookahead == '/') ADVANCE(212); END_STATE(); case 37: if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(176); - if (lookahead == '>') ADVANCE(178); - if (lookahead == 'a') ADVANCE(246); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '>') ADVANCE(179); + if (lookahead == 'a') ADVANCE(247); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(37) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 38: - if (lookahead == '/') ADVANCE(136); - if (lookahead == '{') ADVANCE(121); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '{') ADVANCE(122); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(137); + lookahead == ' ') ADVANCE(138); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); - if (lookahead != 0) ADVANCE(130); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); + if (lookahead != 0) ADVANCE(131); END_STATE(); case 39: - if (lookahead == '=') ADVANCE(170); + if (lookahead == '<') ADVANCE(192); END_STATE(); case 40: - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(234); + if (lookahead == '=') ADVANCE(171); END_STATE(); case 41: - if (lookahead == '=') ADVANCE(155); + if (lookahead == '=') ADVANCE(171); + if (lookahead == '>') ADVANCE(235); END_STATE(); case 42: - if (lookahead == '=') ADVANCE(152); + if (lookahead == '=') ADVANCE(156); END_STATE(); case 43: - if (lookahead == '=') ADVANCE(150); + if (lookahead == '=') ADVANCE(153); END_STATE(); case 44: - if (lookahead == '=') ADVANCE(148); + if (lookahead == '=') ADVANCE(151); END_STATE(); case 45: if (lookahead == '=') ADVANCE(149); END_STATE(); case 46: - if (lookahead == '=') ADVANCE(229); + if (lookahead == '=') ADVANCE(150); END_STATE(); case 47: - if (lookahead == '=') ADVANCE(154); + if (lookahead == '=') ADVANCE(230); END_STATE(); case 48: - if (lookahead == '=') ADVANCE(153); + if (lookahead == '=') ADVANCE(155); END_STATE(); case 49: - if (lookahead == '=') ADVANCE(156); + if (lookahead == '=') ADVANCE(154); END_STATE(); case 50: if (lookahead == '=') ADVANCE(157); - if (lookahead == '>') ADVANCE(52); END_STATE(); case 51: - if (lookahead == '=') ADVANCE(159); + if (lookahead == '=') ADVANCE(158); + if (lookahead == '>') ADVANCE(53); END_STATE(); case 52: - if (lookahead == '=') ADVANCE(158); + if (lookahead == '=') ADVANCE(160); END_STATE(); case 53: - if (lookahead == '>') ADVANCE(194); + if (lookahead == '=') ADVANCE(159); END_STATE(); case 54: - if (lookahead == '>') ADVANCE(50); + if (lookahead == '>') ADVANCE(195); END_STATE(); case 55: - if (lookahead == ']') ADVANCE(230); + if (lookahead == '>') ADVANCE(51); END_STATE(); case 56: - if (lookahead == '_') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (lookahead == ']') ADVANCE(231); END_STATE(); case 57: if (lookahead == '_') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); case 58: if (lookahead == '_') ADVANCE(58); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); END_STATE(); case 59: - if (lookahead == '_') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + if (lookahead == '_') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); case 60: - if (lookahead == '_') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + if (lookahead == '_') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); case 61: - if (lookahead == '_') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + if (lookahead == '_') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); END_STATE(); case 62: - if (lookahead == 'c') ADVANCE(28); + if (lookahead == '_') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 63: - if (lookahead == 'c') ADVANCE(232); + if (lookahead == 'c') ADVANCE(28); END_STATE(); case 64: - if (lookahead == 'n') ADVANCE(62); + if (lookahead == 'c') ADVANCE(233); END_STATE(); case 65: if (lookahead == 'n') ADVANCE(63); END_STATE(); case 66: - if (lookahead == 's') ADVANCE(218); + if (lookahead == 'n') ADVANCE(64); END_STATE(); case 67: - if (lookahead == 's') ADVANCE(70); + if (lookahead == 's') ADVANCE(219); END_STATE(); case 68: - if (lookahead == 'u') ADVANCE(71); - if (lookahead == 'x') ADVANCE(84); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); - if (lookahead != 0) ADVANCE(117); + if (lookahead == 's') ADVANCE(71); END_STATE(); case 69: - if (lookahead == 'y') ADVANCE(64); + if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'x') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); + if (lookahead != 0) ADVANCE(118); END_STATE(); case 70: if (lookahead == 'y') ADVANCE(65); END_STATE(); case 71: - if (lookahead == '{') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); + if (lookahead == 'y') ADVANCE(66); END_STATE(); case 72: - if (lookahead == '}') ADVANCE(117); + if (lookahead == '{') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); END_STATE(); case 73: - if (lookahead == '+' || - lookahead == '-') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (lookahead == '}') ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(73); END_STATE(); case 74: if (lookahead == '+' || lookahead == '-') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); case 75: - if (lookahead == '0' || - lookahead == '1') ADVANCE(106); + if (lookahead == '+' || + lookahead == '-') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); END_STATE(); case 76: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(104); + if (lookahead == '0' || + lookahead == '1') ADVANCE(107); END_STATE(); case 77: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(105); END_STATE(); case 78: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); case 79: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); END_STATE(); case 80: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); case 81: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 82: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 83: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(73); END_STATE(); case 84: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(85); END_STATE(); case 85: - if (lookahead != 0) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(82); END_STATE(); case 86: - if (eof) ADVANCE(93); - if (lookahead == '!') ADVANCE(215); - if (lookahead == '"') ADVANCE(124); - if (lookahead == '#') ADVANCE(94); - if (lookahead == '%') ADVANCE(210); - if (lookahead == '&') ADVANCE(190); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '+') ADVANCE(199); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(203); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(208); - if (lookahead == '0') ADVANCE(97); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(179); - if (lookahead == '?') ADVANCE(165); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(187); - if (lookahead == 'a') ADVANCE(246); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(184); - if (lookahead == '}') ADVANCE(122); - if (lookahead == '~') ADVANCE(217); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(86) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + if (lookahead != 0) ADVANCE(126); END_STATE(); case 87: - if (eof) ADVANCE(93); - if (lookahead == '!') ADVANCE(215); - if (lookahead == '"') ADVANCE(124); - if (lookahead == '#') ADVANCE(94); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(198); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '0') ADVANCE(97); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); + if (eof) ADVANCE(94); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '"') ADVANCE(125); + if (lookahead == '#') ADVANCE(95); + if (lookahead == '%') ADVANCE(211); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '\'') ADVANCE(128); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(207); + if (lookahead == '+') ADVANCE(200); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(204); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(209); + if (lookahead == '0') ADVANCE(98); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); if (lookahead == '<') ADVANCE(173); - if (lookahead == '=') ADVANCE(39); - if (lookahead == '>') ADVANCE(53); - if (lookahead == '?') ADVANCE(167); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(186); - if (lookahead == '{') ADVANCE(121); + if (lookahead == '=') ADVANCE(145); + if (lookahead == '>') ADVANCE(180); + if (lookahead == '?') ADVANCE(166); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(188); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == '{') ADVANCE(122); if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(122); - if (lookahead == '~') ADVANCE(217); + if (lookahead == '}') ADVANCE(123); + if (lookahead == '~') ADVANCE(218); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(87) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 88: - if (eof) ADVANCE(93); - if (lookahead == '!') ADVANCE(215); - if (lookahead == '"') ADVANCE(124); - if (lookahead == '#') ADVANCE(94); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(198); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '0') ADVANCE(97); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); + if (eof) ADVANCE(94); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '"') ADVANCE(125); + if (lookahead == '#') ADVANCE(95); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '\'') ADVANCE(128); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(199); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(203); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(208); + if (lookahead == '0') ADVANCE(98); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(39); - if (lookahead == '>') ADVANCE(180); - if (lookahead == '?') ADVANCE(166); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(186); - if (lookahead == 'a') ADVANCE(246); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(122); - if (lookahead == '~') ADVANCE(217); + if (lookahead == '=') ADVANCE(40); + if (lookahead == '>') ADVANCE(54); + if (lookahead == '?') ADVANCE(168); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(187); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(186); + if (lookahead == '}') ADVANCE(123); + if (lookahead == '~') ADVANCE(218); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(88) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 89: - if (eof) ADVANCE(93); - if (lookahead == '!') ADVANCE(215); - if (lookahead == '"') ADVANCE(124); - if (lookahead == '#') ADVANCE(94); - if (lookahead == '%') ADVANCE(209); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(160); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(198); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '0') ADVANCE(97); - if (lookahead == '<') ADVANCE(174); - if (lookahead == '=') ADVANCE(39); - if (lookahead == '>') ADVANCE(180); + if (eof) ADVANCE(94); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '"') ADVANCE(125); + if (lookahead == '#') ADVANCE(95); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '\'') ADVANCE(128); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(199); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(203); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(208); + if (lookahead == '0') ADVANCE(98); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(40); + if (lookahead == '>') ADVANCE(181); if (lookahead == '?') ADVANCE(167); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == '^') ADVANCE(186); - if (lookahead == 'a') ADVANCE(246); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '~') ADVANCE(217); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(187); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(186); + if (lookahead == '}') ADVANCE(123); + if (lookahead == '~') ADVANCE(218); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(89) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 90: - if (eof) ADVANCE(93); - if (lookahead == '!') ADVANCE(214); - if (lookahead == '"') ADVANCE(124); + if (eof) ADVANCE(94); + if (lookahead == '!') ADVANCE(216); + if (lookahead == '"') ADVANCE(125); if (lookahead == '#') ADVANCE(95); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '+') ADVANCE(29); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '.') ADVANCE(35); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(97); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(171); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(177); - if (lookahead == '?') ADVANCE(164); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '}') ADVANCE(122); - if (lookahead == '~') ADVANCE(216); + if (lookahead == '%') ADVANCE(210); + if (lookahead == '&') ADVANCE(190); + if (lookahead == '\'') ADVANCE(128); + if (lookahead == '(') ADVANCE(161); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(199); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(203); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(208); + if (lookahead == '0') ADVANCE(98); + if (lookahead == '<') ADVANCE(175); + if (lookahead == '=') ADVANCE(40); + if (lookahead == '>') ADVANCE(181); + if (lookahead == '?') ADVANCE(168); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == '^') ADVANCE(187); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(186); + if (lookahead == '~') ADVANCE(218); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(90) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 91: - if (eof) ADVANCE(93); - if (lookahead == '!') ADVANCE(214); - if (lookahead == '"') ADVANCE(124); - if (lookahead == '#') ADVANCE(94); - if (lookahead == '%') ADVANCE(41); - if (lookahead == '&') ADVANCE(42); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '*') ADVANCE(43); - if (lookahead == '+') ADVANCE(30); - if (lookahead == ',') ADVANCE(140); + if (eof) ADVANCE(94); + if (lookahead == '!') ADVANCE(215); + if (lookahead == '"') ADVANCE(125); + if (lookahead == '#') ADVANCE(96); + if (lookahead == '\'') ADVANCE(128); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(29); + if (lookahead == ',') ADVANCE(141); if (lookahead == '-') ADVANCE(203); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(25); - if (lookahead == '0') ADVANCE(97); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(175); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(54); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '^') ADVANCE(47); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '|') ADVANCE(48); - if (lookahead == '}') ADVANCE(122); - if (lookahead == '~') ADVANCE(216); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (lookahead == '.') ADVANCE(35); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(98); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(172); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(178); + if (lookahead == '?') ADVANCE(165); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '}') ADVANCE(123); + if (lookahead == '~') ADVANCE(217); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(91) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 92: - if (eof) ADVANCE(93); - if (lookahead == '!') ADVANCE(214); - if (lookahead == '"') ADVANCE(124); - if (lookahead == '#') ADVANCE(94); - if (lookahead == '\'') ADVANCE(127); - if (lookahead == '(') ADVANCE(160); - if (lookahead == ')') ADVANCE(161); - if (lookahead == '+') ADVANCE(29); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(202); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(97); - if (lookahead == ';') ADVANCE(239); - if (lookahead == '<') ADVANCE(171); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(177); - if (lookahead == '?') ADVANCE(31); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '[') ADVANCE(139); - if (lookahead == ']') ADVANCE(141); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '~') ADVANCE(216); + if (eof) ADVANCE(94); + if (lookahead == '!') ADVANCE(215); + if (lookahead == '"') ADVANCE(125); + if (lookahead == '#') ADVANCE(95); + if (lookahead == '%') ADVANCE(42); + if (lookahead == '&') ADVANCE(43); + if (lookahead == '\'') ADVANCE(128); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '+') ADVANCE(30); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(204); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '0') ADVANCE(98); + if (lookahead == ':') ADVANCE(143); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(55); + if (lookahead == '?') ADVANCE(32); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '^') ADVANCE(48); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '|') ADVANCE(49); + if (lookahead == '}') ADVANCE(123); + if (lookahead == '~') ADVANCE(217); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(92) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 93: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(94); + if (lookahead == '!') ADVANCE(215); + if (lookahead == '"') ADVANCE(125); + if (lookahead == '#') ADVANCE(95); + if (lookahead == '\'') ADVANCE(128); + if (lookahead == '(') ADVANCE(161); + if (lookahead == ')') ADVANCE(162); + if (lookahead == '+') ADVANCE(29); + if (lookahead == ',') ADVANCE(141); + if (lookahead == '-') ADVANCE(203); + if (lookahead == '.') ADVANCE(225); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(98); + if (lookahead == ';') ADVANCE(240); + if (lookahead == '<') ADVANCE(172); + if (lookahead == '=') ADVANCE(47); + if (lookahead == '>') ADVANCE(178); + if (lookahead == '?') ADVANCE(31); + if (lookahead == '@') ADVANCE(229); + if (lookahead == '[') ADVANCE(140); + if (lookahead == ']') ADVANCE(142); + if (lookahead == '{') ADVANCE(122); + if (lookahead == '~') ADVANCE(217); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(93) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 95: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(237); END_STATE(); case 96: - ACCEPT_TOKEN(sym_decimal_integer_literal); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(238); END_STATE(); case 97: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '.') ADVANCE(110); + END_STATE(); + case 98: + ACCEPT_TOKEN(sym_decimal_integer_literal); + if (lookahead == '.') ADVANCE(111); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(75); + lookahead == 'b') ADVANCE(76); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(96); + lookahead == 'l') ADVANCE(97); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(76); + lookahead == 'o') ADVANCE(77); if (lookahead == 'X' || lookahead == 'x') ADVANCE(34); - if (lookahead == '_') ADVANCE(56); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(73); + lookahead == 'e') ADVANCE(74); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(73); + lookahead == 'p') ADVANCE(74); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); - case 98: + case 99: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '.') ADVANCE(110); + if (lookahead == '.') ADVANCE(111); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(96); - if (lookahead == '_') ADVANCE(56); + lookahead == 'l') ADVANCE(97); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(73); + lookahead == 'e') ADVANCE(74); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(73); + lookahead == 'p') ADVANCE(74); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); - case 99: + case 100: ACCEPT_TOKEN(sym_hex_integer_literal); END_STATE(); - case 100: + case 101: ACCEPT_TOKEN(sym_hex_integer_literal); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(117); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(99); - if (lookahead == '_') ADVANCE(59); + lookahead == 'l') ADVANCE(100); + if (lookahead == '_') ADVANCE(60); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(102); + lookahead == 'e') ADVANCE(103); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); + lookahead == 'p') ADVANCE(75); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(101); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(102); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(101); END_STATE(); - case 101: + case 102: ACCEPT_TOKEN(sym_hex_integer_literal); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(117); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(99); - if (lookahead == '_') ADVANCE(79); + lookahead == 'l') ADVANCE(100); + if (lookahead == '_') ADVANCE(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(102); + lookahead == 'e') ADVANCE(103); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); + lookahead == 'p') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); - case 102: + case 103: ACCEPT_TOKEN(sym_hex_integer_literal); if (lookahead == '+' || - lookahead == '-') ADVANCE(78); - if (lookahead == '.') ADVANCE(116); + lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(117); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(99); - if (lookahead == '_') ADVANCE(79); + lookahead == 'l') ADVANCE(100); + if (lookahead == '_') ADVANCE(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(102); + lookahead == 'e') ADVANCE(103); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + lookahead == 'p') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(101); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); - case 103: + case 104: ACCEPT_TOKEN(sym_octal_integer_literal); END_STATE(); - case 104: + case 105: ACCEPT_TOKEN(sym_octal_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(103); - if (lookahead == '_') ADVANCE(76); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(104); + lookahead == 'l') ADVANCE(104); + if (lookahead == '_') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(105); END_STATE(); - case 105: + case 106: ACCEPT_TOKEN(sym_binary_integer_literal); END_STATE(); - case 106: + case 107: ACCEPT_TOKEN(sym_binary_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(105); - if (lookahead == '_') ADVANCE(75); + lookahead == 'l') ADVANCE(106); + if (lookahead == '_') ADVANCE(76); if (lookahead == '0' || - lookahead == '1') ADVANCE(106); + lookahead == '1') ADVANCE(107); END_STATE(); - case 107: + case 108: ACCEPT_TOKEN(sym_decimal_floating_point_literal); END_STATE(); - case 108: + case 109: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(73); + lookahead == 'e') ADVANCE(74); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); END_STATE(); - case 109: + case 110: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(58); + if (lookahead == '_') ADVANCE(59); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); + lookahead == 'f') ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); - case 110: + case 111: ACCEPT_TOKEN(sym_decimal_floating_point_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(73); + lookahead == 'e') ADVANCE(74); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); END_STATE(); - case 111: + case 112: ACCEPT_TOKEN(sym_hex_floating_point_literal); END_STATE(); - case 112: + case 113: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(80); + if (lookahead == '_') ADVANCE(81); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(115); + lookahead == 'e') ADVANCE(116); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); + lookahead == 'p') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); - case 113: + case 114: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(61); + if (lookahead == '_') ADVANCE(62); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(115); + lookahead == 'e') ADVANCE(116); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); + lookahead == 'p') ADVANCE(75); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(112); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(113); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); END_STATE(); - case 114: + case 115: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(60); + if (lookahead == '_') ADVANCE(61); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); + lookahead == 'f') ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); END_STATE(); - case 115: + case 116: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == '+' || - lookahead == '-') ADVANCE(78); - if (lookahead == '_') ADVANCE(80); + lookahead == '-') ADVANCE(79); + if (lookahead == '_') ADVANCE(81); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(115); + lookahead == 'e') ADVANCE(116); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(113); + lookahead == 'p') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); - case 116: + case 117: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(115); + lookahead == 'e') ADVANCE(116); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); + lookahead == 'p') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); - END_STATE(); - case 117: - ACCEPT_TOKEN(sym__unused_escape_sequence); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 118: ACCEPT_TOKEN(sym__unused_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); END_STATE(); case 119: ACCEPT_TOKEN(sym__unused_escape_sequence); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(118); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(sym__unused_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 124: ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(15); END_STATE(); case 125: - ACCEPT_TOKEN(aux_sym__double_quote_string_literal_token2); + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(15); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(aux_sym__double_quote_string_literal_token2); END_STATE(); case 127: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(22); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(22); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE_SQUOTE); + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); case 130: - ACCEPT_TOKEN(aux_sym__sub_string_test_token1); + ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE_SQUOTE); END_STATE(); case 131: ACCEPT_TOKEN(aux_sym__sub_string_test_token1); - if (lookahead == '"') ADVANCE(15); END_STATE(); case 132: ACCEPT_TOKEN(aux_sym__sub_string_test_token1); - if (lookahead == '"') ADVANCE(123); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '\'') ADVANCE(126); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '"') ADVANCE(15); + END_STATE(); + case 133: + ACCEPT_TOKEN(aux_sym__sub_string_test_token1); + if (lookahead == '"') ADVANCE(124); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '/') ADVANCE(137); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(132); + lookahead == ' ') ADVANCE(133); if (lookahead != 0 && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || '{' < lookahead)) ADVANCE(130); + (lookahead < 'a' || '{' < lookahead)) ADVANCE(131); END_STATE(); - case 133: + case 134: ACCEPT_TOKEN(aux_sym__sub_string_test_token1); - if (lookahead == '"') ADVANCE(123); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '\'') ADVANCE(135); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '"') ADVANCE(124); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '\'') ADVANCE(136); + if (lookahead == '/') ADVANCE(137); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(133); + lookahead == ' ') ADVANCE(134); if (lookahead != 0 && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || '{' < lookahead)) ADVANCE(130); + (lookahead < 'a' || '{' < lookahead)) ADVANCE(131); END_STATE(); - case 134: + case 135: ACCEPT_TOKEN(aux_sym__sub_string_test_token1); - if (lookahead == '"') ADVANCE(131); - if (lookahead == '$') ADVANCE(120); - if (lookahead == '\'') ADVANCE(126); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '"') ADVANCE(132); + if (lookahead == '$') ADVANCE(121); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '/') ADVANCE(137); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(134); + lookahead == ' ') ADVANCE(135); if (lookahead != 0 && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || '{' < lookahead)) ADVANCE(130); + (lookahead < 'a' || '{' < lookahead)) ADVANCE(131); END_STATE(); - case 135: + case 136: ACCEPT_TOKEN(aux_sym__sub_string_test_token1); if (lookahead == '\'') ADVANCE(22); END_STATE(); - case 136: + case 137: ACCEPT_TOKEN(aux_sym__sub_string_test_token1); if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(250); + if (lookahead == '/') ADVANCE(251); END_STATE(); - case 137: + case 138: ACCEPT_TOKEN(aux_sym__sub_string_test_token1); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '/') ADVANCE(137); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(137); + lookahead == ' ') ADVANCE(138); if (lookahead != 0 && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || '{' < lookahead)) ADVANCE(130); - END_STATE(); - case 138: - ACCEPT_TOKEN(aux_sym__sub_string_test_token1); - if (lookahead == 'u') ADVANCE(71); - if (lookahead == 'x') ADVANCE(84); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); - if (lookahead != 0) ADVANCE(117); + (lookahead < 'a' || '{' < lookahead)) ADVANCE(131); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(aux_sym__sub_string_test_token1); + if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'x') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); + if (lookahead != 0) ADVANCE(118); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 144: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(170); END_STATE(); case 145: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(234); + if (lookahead == '=') ADVANCE(171); END_STATE(); case 146: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(229); - if (lookahead == '>') ADVANCE(234); + if (lookahead == '=') ADVANCE(171); + if (lookahead == '>') ADVANCE(235); END_STATE(); case 147: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(234); + if (lookahead == '=') ADVANCE(230); + if (lookahead == '>') ADVANCE(235); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(235); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 163: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(159); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(160); END_STATE(); case 165: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(225); - if (lookahead == '?') ADVANCE(163); END_STATE(); case 166: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(225); - if (lookahead == '?') ADVANCE(162); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '?') ADVANCE(164); END_STATE(); case 167: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(162); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '?') ADVANCE(163); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '?') ADVANCE(163); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 170: - ACCEPT_TOKEN(sym_equality_operator); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(sym_equality_operator); END_STATE(); case 172: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '=') ADVANCE(182); END_STATE(); case 173: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(191); + if (lookahead == '<') ADVANCE(193); + if (lookahead == '=') ADVANCE(183); END_STATE(); case 174: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(191); - if (lookahead == '=') ADVANCE(182); + if (lookahead == '<') ADVANCE(192); END_STATE(); case 175: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(49); + if (lookahead == '<') ADVANCE(192); + if (lookahead == '=') ADVANCE(183); END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(182); + if (lookahead == '<') ADVANCE(50); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(183); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(181); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(181); - if (lookahead == '>') ADVANCE(193); + if (lookahead == '=') ADVANCE(182); END_STATE(); case 180: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(181); + if (lookahead == '=') ADVANCE(182); if (lookahead == '>') ADVANCE(194); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '>') ADVANCE(195); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 184: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(153); - if (lookahead == '|') ADVANCE(168); END_STATE(); case 185: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(168); + if (lookahead == '=') ADVANCE(154); + if (lookahead == '|') ADVANCE(169); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(169); END_STATE(); case 187: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(154); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(155); END_STATE(); case 189: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(169); END_STATE(); case 190: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(169); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '&') ADVANCE(170); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(170); + if (lookahead == '=') ADVANCE(153); END_STATE(); case 192: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(156); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(157); - if (lookahead == '>') ADVANCE(196); END_STATE(); case 194: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(195); + if (lookahead == '=') ADVANCE(158); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(196); END_STATE(); case 196: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(158); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(159); END_STATE(); case 198: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(212); END_STATE(); case 199: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(212); - if (lookahead == '=') ADVANCE(148); + if (lookahead == '+') ADVANCE(213); END_STATE(); case 200: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(148); + if (lookahead == '+') ADVANCE(213); + if (lookahead == '=') ADVANCE(149); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(149); END_STATE(); case 202: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(212); END_STATE(); case 203: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(212); - if (lookahead == '=') ADVANCE(149); + if (lookahead == '-') ADVANCE(213); END_STATE(); case 204: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(149); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '=') ADVANCE(150); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(150); END_STATE(); case 206: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(150); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(250); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(151); END_STATE(); case 208: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '=') ADVANCE(151); + if (lookahead == '/') ADVANCE(251); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '=') ADVANCE(152); END_STATE(); case 210: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(155); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_TILDE_SLASH); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(156); END_STATE(); case 212: - ACCEPT_TOKEN(sym_increment_operator); + ACCEPT_TOKEN(anon_sym_TILDE_SLASH); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(sym_increment_operator); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 215: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(170); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(171); END_STATE(); case 217: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '/') ADVANCE(211); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '/') ADVANCE(212); END_STATE(); case 219: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); END_STATE(); case 220: ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_as); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 222: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); END_STATE(); case 223: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(226); + if (lookahead == '.') ADVANCE(228); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); END_STATE(); case 224: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (lookahead == '.') ADVANCE(227); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(227); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(109); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); case 227: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(213); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(214); END_STATE(); case 229: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); - if (lookahead == '=') ADVANCE(231); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK_EQ); + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + if (lookahead == '=') ADVANCE(232); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '*') ADVANCE(235); + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK_EQ); END_STATE(); case 233: ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '*') ADVANCE(235); + if (lookahead == '*') ADVANCE(236); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_async); + if (lookahead == '*') ADVANCE(236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_async_STAR); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_sync_STAR); + ACCEPT_TOKEN(anon_sym_async_STAR); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(anon_sym_sync_STAR); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(238); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(239); END_STATE(); case 240: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(236); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 241: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(240); + if (lookahead == '*') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 242: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(233); + if (lookahead == 'c') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 243: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(241); + if (lookahead == 'c') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 244: ACCEPT_TOKEN(sym_identifier); @@ -5266,15 +5261,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 245: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(219); + if (lookahead == 'n') ADVANCE(243); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 246: ACCEPT_TOKEN(sym_identifier); @@ -5282,30 +5277,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 247: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(243); + if (lookahead == 's') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 248: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 249: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(249); END_STATE(); case 250: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 251: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(250); + lookahead != '\n') ADVANCE(251); END_STATE(); default: return false; @@ -6218,869 +6221,869 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 90}, - [2] = {.lex_state = 90}, - [3] = {.lex_state = 90}, - [4] = {.lex_state = 90}, - [5] = {.lex_state = 90}, - [6] = {.lex_state = 90}, - [7] = {.lex_state = 90}, - [8] = {.lex_state = 90}, - [9] = {.lex_state = 90}, - [10] = {.lex_state = 90}, - [11] = {.lex_state = 90}, - [12] = {.lex_state = 90}, - [13] = {.lex_state = 90}, - [14] = {.lex_state = 90}, - [15] = {.lex_state = 90}, - [16] = {.lex_state = 90}, - [17] = {.lex_state = 90}, - [18] = {.lex_state = 90}, - [19] = {.lex_state = 90}, - [20] = {.lex_state = 90}, - [21] = {.lex_state = 90}, - [22] = {.lex_state = 90}, - [23] = {.lex_state = 90}, - [24] = {.lex_state = 90}, - [25] = {.lex_state = 90}, - [26] = {.lex_state = 90}, - [27] = {.lex_state = 90}, - [28] = {.lex_state = 90}, - [29] = {.lex_state = 90}, - [30] = {.lex_state = 90}, - [31] = {.lex_state = 90}, - [32] = {.lex_state = 90}, - [33] = {.lex_state = 90}, - [34] = {.lex_state = 90}, - [35] = {.lex_state = 90}, - [36] = {.lex_state = 90}, - [37] = {.lex_state = 90}, - [38] = {.lex_state = 90}, - [39] = {.lex_state = 90}, - [40] = {.lex_state = 90}, - [41] = {.lex_state = 90}, - [42] = {.lex_state = 90}, - [43] = {.lex_state = 90}, - [44] = {.lex_state = 90}, - [45] = {.lex_state = 90}, - [46] = {.lex_state = 90}, - [47] = {.lex_state = 90}, - [48] = {.lex_state = 90}, - [49] = {.lex_state = 90}, - [50] = {.lex_state = 90}, - [51] = {.lex_state = 90}, - [52] = {.lex_state = 90}, - [53] = {.lex_state = 90}, - [54] = {.lex_state = 90}, - [55] = {.lex_state = 90}, - [56] = {.lex_state = 90}, - [57] = {.lex_state = 90}, - [58] = {.lex_state = 90}, - [59] = {.lex_state = 90}, - [60] = {.lex_state = 90}, - [61] = {.lex_state = 90}, - [62] = {.lex_state = 90}, - [63] = {.lex_state = 90}, - [64] = {.lex_state = 90}, - [65] = {.lex_state = 90}, - [66] = {.lex_state = 90}, - [67] = {.lex_state = 90}, - [68] = {.lex_state = 90}, - [69] = {.lex_state = 90}, - [70] = {.lex_state = 90}, - [71] = {.lex_state = 90}, - [72] = {.lex_state = 90}, - [73] = {.lex_state = 90}, - [74] = {.lex_state = 90}, - [75] = {.lex_state = 90}, - [76] = {.lex_state = 90}, - [77] = {.lex_state = 90}, - [78] = {.lex_state = 90}, - [79] = {.lex_state = 90}, - [80] = {.lex_state = 90}, - [81] = {.lex_state = 90}, - [82] = {.lex_state = 90}, - [83] = {.lex_state = 90}, - [84] = {.lex_state = 90}, - [85] = {.lex_state = 90}, - [86] = {.lex_state = 90}, - [87] = {.lex_state = 90}, - [88] = {.lex_state = 90}, - [89] = {.lex_state = 90}, - [90] = {.lex_state = 86}, - [91] = {.lex_state = 86}, - [92] = {.lex_state = 86}, - [93] = {.lex_state = 86}, - [94] = {.lex_state = 86}, - [95] = {.lex_state = 86}, - [96] = {.lex_state = 86}, - [97] = {.lex_state = 86}, - [98] = {.lex_state = 86}, - [99] = {.lex_state = 86}, - [100] = {.lex_state = 86}, - [101] = {.lex_state = 86}, - [102] = {.lex_state = 86}, - [103] = {.lex_state = 86}, - [104] = {.lex_state = 86}, - [105] = {.lex_state = 86}, - [106] = {.lex_state = 86}, - [107] = {.lex_state = 86}, - [108] = {.lex_state = 86}, - [109] = {.lex_state = 86}, - [110] = {.lex_state = 86}, - [111] = {.lex_state = 86}, - [112] = {.lex_state = 86}, - [113] = {.lex_state = 86}, - [114] = {.lex_state = 86}, - [115] = {.lex_state = 86}, - [116] = {.lex_state = 86}, - [117] = {.lex_state = 86}, - [118] = {.lex_state = 86}, - [119] = {.lex_state = 86}, - [120] = {.lex_state = 86}, - [121] = {.lex_state = 86}, - [122] = {.lex_state = 86}, - [123] = {.lex_state = 86}, - [124] = {.lex_state = 86}, - [125] = {.lex_state = 90}, - [126] = {.lex_state = 90}, - [127] = {.lex_state = 90}, - [128] = {.lex_state = 90}, - [129] = {.lex_state = 90}, - [130] = {.lex_state = 90}, - [131] = {.lex_state = 90}, - [132] = {.lex_state = 90}, - [133] = {.lex_state = 90}, - [134] = {.lex_state = 90}, - [135] = {.lex_state = 90}, - [136] = {.lex_state = 90}, - [137] = {.lex_state = 90}, - [138] = {.lex_state = 90}, - [139] = {.lex_state = 86}, - [140] = {.lex_state = 90}, - [141] = {.lex_state = 90}, - [142] = {.lex_state = 90}, - [143] = {.lex_state = 90}, - [144] = {.lex_state = 90}, - [145] = {.lex_state = 90}, - [146] = {.lex_state = 90}, - [147] = {.lex_state = 90}, - [148] = {.lex_state = 90}, - [149] = {.lex_state = 90}, - [150] = {.lex_state = 90}, - [151] = {.lex_state = 90}, - [152] = {.lex_state = 90}, - [153] = {.lex_state = 90}, - [154] = {.lex_state = 90}, - [155] = {.lex_state = 90}, - [156] = {.lex_state = 90}, - [157] = {.lex_state = 90}, - [158] = {.lex_state = 90}, - [159] = {.lex_state = 90}, - [160] = {.lex_state = 90}, - [161] = {.lex_state = 90}, - [162] = {.lex_state = 90}, - [163] = {.lex_state = 90}, - [164] = {.lex_state = 90}, - [165] = {.lex_state = 90}, - [166] = {.lex_state = 90}, - [167] = {.lex_state = 90}, - [168] = {.lex_state = 90}, - [169] = {.lex_state = 90}, - [170] = {.lex_state = 90}, - [171] = {.lex_state = 90}, - [172] = {.lex_state = 90}, - [173] = {.lex_state = 90}, - [174] = {.lex_state = 90}, - [175] = {.lex_state = 90}, - [176] = {.lex_state = 86}, - [177] = {.lex_state = 90}, - [178] = {.lex_state = 86}, - [179] = {.lex_state = 90}, - [180] = {.lex_state = 86}, - [181] = {.lex_state = 90}, - [182] = {.lex_state = 86}, - [183] = {.lex_state = 86}, - [184] = {.lex_state = 86}, - [185] = {.lex_state = 86}, - [186] = {.lex_state = 86}, - [187] = {.lex_state = 86}, - [188] = {.lex_state = 86}, - [189] = {.lex_state = 86}, - [190] = {.lex_state = 86}, - [191] = {.lex_state = 86}, - [192] = {.lex_state = 86}, - [193] = {.lex_state = 88}, - [194] = {.lex_state = 86}, - [195] = {.lex_state = 86}, - [196] = {.lex_state = 86}, - [197] = {.lex_state = 86}, - [198] = {.lex_state = 86}, - [199] = {.lex_state = 86}, - [200] = {.lex_state = 86}, - [201] = {.lex_state = 86}, - [202] = {.lex_state = 86}, - [203] = {.lex_state = 86}, - [204] = {.lex_state = 86}, - [205] = {.lex_state = 86}, - [206] = {.lex_state = 86}, - [207] = {.lex_state = 86}, - [208] = {.lex_state = 86}, - [209] = {.lex_state = 86}, - [210] = {.lex_state = 86}, - [211] = {.lex_state = 86}, - [212] = {.lex_state = 86}, - [213] = {.lex_state = 86}, - [214] = {.lex_state = 86}, - [215] = {.lex_state = 86}, - [216] = {.lex_state = 86}, - [217] = {.lex_state = 86}, - [218] = {.lex_state = 86}, - [219] = {.lex_state = 86}, - [220] = {.lex_state = 86}, - [221] = {.lex_state = 86}, - [222] = {.lex_state = 86}, - [223] = {.lex_state = 86}, - [224] = {.lex_state = 86}, - [225] = {.lex_state = 86}, - [226] = {.lex_state = 86}, - [227] = {.lex_state = 86}, - [228] = {.lex_state = 86}, - [229] = {.lex_state = 86}, - [230] = {.lex_state = 86}, - [231] = {.lex_state = 86}, - [232] = {.lex_state = 86}, - [233] = {.lex_state = 86}, - [234] = {.lex_state = 86}, - [235] = {.lex_state = 86}, - [236] = {.lex_state = 86}, - [237] = {.lex_state = 86}, - [238] = {.lex_state = 86}, - [239] = {.lex_state = 86}, - [240] = {.lex_state = 86}, - [241] = {.lex_state = 86}, - [242] = {.lex_state = 86}, - [243] = {.lex_state = 86}, - [244] = {.lex_state = 86}, - [245] = {.lex_state = 86}, - [246] = {.lex_state = 86}, - [247] = {.lex_state = 86}, - [248] = {.lex_state = 86}, - [249] = {.lex_state = 86}, - [250] = {.lex_state = 86}, - [251] = {.lex_state = 86}, - [252] = {.lex_state = 86}, - [253] = {.lex_state = 86}, - [254] = {.lex_state = 86}, - [255] = {.lex_state = 86}, - [256] = {.lex_state = 86}, - [257] = {.lex_state = 86}, - [258] = {.lex_state = 86}, - [259] = {.lex_state = 86}, - [260] = {.lex_state = 86}, - [261] = {.lex_state = 86}, - [262] = {.lex_state = 86}, - [263] = {.lex_state = 86}, - [264] = {.lex_state = 86}, - [265] = {.lex_state = 86}, - [266] = {.lex_state = 86}, - [267] = {.lex_state = 86}, - [268] = {.lex_state = 86}, - [269] = {.lex_state = 86}, - [270] = {.lex_state = 86}, - [271] = {.lex_state = 86}, - [272] = {.lex_state = 86}, - [273] = {.lex_state = 86}, - [274] = {.lex_state = 86}, - [275] = {.lex_state = 86}, - [276] = {.lex_state = 86}, - [277] = {.lex_state = 86}, - [278] = {.lex_state = 86}, - [279] = {.lex_state = 86}, - [280] = {.lex_state = 86}, - [281] = {.lex_state = 86}, - [282] = {.lex_state = 86}, - [283] = {.lex_state = 86}, - [284] = {.lex_state = 86}, - [285] = {.lex_state = 86}, - [286] = {.lex_state = 86}, - [287] = {.lex_state = 86}, - [288] = {.lex_state = 86}, - [289] = {.lex_state = 86}, - [290] = {.lex_state = 86}, - [291] = {.lex_state = 86}, - [292] = {.lex_state = 86}, - [293] = {.lex_state = 86}, - [294] = {.lex_state = 86}, - [295] = {.lex_state = 86}, - [296] = {.lex_state = 86}, - [297] = {.lex_state = 86}, - [298] = {.lex_state = 86}, - [299] = {.lex_state = 86}, - [300] = {.lex_state = 86}, - [301] = {.lex_state = 86}, - [302] = {.lex_state = 86}, - [303] = {.lex_state = 86}, - [304] = {.lex_state = 86}, - [305] = {.lex_state = 86}, - [306] = {.lex_state = 88}, - [307] = {.lex_state = 88}, - [308] = {.lex_state = 90}, - [309] = {.lex_state = 90}, - [310] = {.lex_state = 88}, - [311] = {.lex_state = 88}, - [312] = {.lex_state = 90}, - [313] = {.lex_state = 88}, - [314] = {.lex_state = 90}, - [315] = {.lex_state = 90}, - [316] = {.lex_state = 90}, - [317] = {.lex_state = 88}, - [318] = {.lex_state = 88}, - [319] = {.lex_state = 88}, - [320] = {.lex_state = 90}, - [321] = {.lex_state = 90}, - [322] = {.lex_state = 88}, - [323] = {.lex_state = 90}, - [324] = {.lex_state = 90}, - [325] = {.lex_state = 90}, - [326] = {.lex_state = 88}, - [327] = {.lex_state = 90}, - [328] = {.lex_state = 90}, - [329] = {.lex_state = 88}, - [330] = {.lex_state = 88}, - [331] = {.lex_state = 88}, - [332] = {.lex_state = 88}, - [333] = {.lex_state = 86}, - [334] = {.lex_state = 88}, - [335] = {.lex_state = 89}, - [336] = {.lex_state = 89}, - [337] = {.lex_state = 89}, - [338] = {.lex_state = 89}, - [339] = {.lex_state = 89}, - [340] = {.lex_state = 90}, - [341] = {.lex_state = 90}, - [342] = {.lex_state = 90}, - [343] = {.lex_state = 89}, - [344] = {.lex_state = 90}, - [345] = {.lex_state = 89}, - [346] = {.lex_state = 89}, - [347] = {.lex_state = 89}, - [348] = {.lex_state = 86}, - [349] = {.lex_state = 86}, - [350] = {.lex_state = 90}, - [351] = {.lex_state = 89}, - [352] = {.lex_state = 90}, + [1] = {.lex_state = 91}, + [2] = {.lex_state = 91}, + [3] = {.lex_state = 91}, + [4] = {.lex_state = 91}, + [5] = {.lex_state = 91}, + [6] = {.lex_state = 91}, + [7] = {.lex_state = 91}, + [8] = {.lex_state = 91}, + [9] = {.lex_state = 91}, + [10] = {.lex_state = 91}, + [11] = {.lex_state = 91}, + [12] = {.lex_state = 91}, + [13] = {.lex_state = 91}, + [14] = {.lex_state = 91}, + [15] = {.lex_state = 91}, + [16] = {.lex_state = 91}, + [17] = {.lex_state = 91}, + [18] = {.lex_state = 91}, + [19] = {.lex_state = 91}, + [20] = {.lex_state = 91}, + [21] = {.lex_state = 91}, + [22] = {.lex_state = 91}, + [23] = {.lex_state = 91}, + [24] = {.lex_state = 91}, + [25] = {.lex_state = 91}, + [26] = {.lex_state = 91}, + [27] = {.lex_state = 91}, + [28] = {.lex_state = 91}, + [29] = {.lex_state = 91}, + [30] = {.lex_state = 91}, + [31] = {.lex_state = 91}, + [32] = {.lex_state = 91}, + [33] = {.lex_state = 91}, + [34] = {.lex_state = 91}, + [35] = {.lex_state = 91}, + [36] = {.lex_state = 91}, + [37] = {.lex_state = 91}, + [38] = {.lex_state = 91}, + [39] = {.lex_state = 91}, + [40] = {.lex_state = 91}, + [41] = {.lex_state = 91}, + [42] = {.lex_state = 91}, + [43] = {.lex_state = 91}, + [44] = {.lex_state = 91}, + [45] = {.lex_state = 91}, + [46] = {.lex_state = 91}, + [47] = {.lex_state = 91}, + [48] = {.lex_state = 91}, + [49] = {.lex_state = 91}, + [50] = {.lex_state = 91}, + [51] = {.lex_state = 91}, + [52] = {.lex_state = 91}, + [53] = {.lex_state = 91}, + [54] = {.lex_state = 91}, + [55] = {.lex_state = 91}, + [56] = {.lex_state = 91}, + [57] = {.lex_state = 91}, + [58] = {.lex_state = 91}, + [59] = {.lex_state = 91}, + [60] = {.lex_state = 91}, + [61] = {.lex_state = 91}, + [62] = {.lex_state = 91}, + [63] = {.lex_state = 91}, + [64] = {.lex_state = 91}, + [65] = {.lex_state = 91}, + [66] = {.lex_state = 91}, + [67] = {.lex_state = 91}, + [68] = {.lex_state = 91}, + [69] = {.lex_state = 91}, + [70] = {.lex_state = 91}, + [71] = {.lex_state = 91}, + [72] = {.lex_state = 91}, + [73] = {.lex_state = 91}, + [74] = {.lex_state = 91}, + [75] = {.lex_state = 91}, + [76] = {.lex_state = 91}, + [77] = {.lex_state = 91}, + [78] = {.lex_state = 91}, + [79] = {.lex_state = 91}, + [80] = {.lex_state = 91}, + [81] = {.lex_state = 91}, + [82] = {.lex_state = 91}, + [83] = {.lex_state = 91}, + [84] = {.lex_state = 91}, + [85] = {.lex_state = 91}, + [86] = {.lex_state = 91}, + [87] = {.lex_state = 91}, + [88] = {.lex_state = 91}, + [89] = {.lex_state = 91}, + [90] = {.lex_state = 87}, + [91] = {.lex_state = 87}, + [92] = {.lex_state = 87}, + [93] = {.lex_state = 87}, + [94] = {.lex_state = 87}, + [95] = {.lex_state = 87}, + [96] = {.lex_state = 87}, + [97] = {.lex_state = 87}, + [98] = {.lex_state = 87}, + [99] = {.lex_state = 87}, + [100] = {.lex_state = 87}, + [101] = {.lex_state = 87}, + [102] = {.lex_state = 87}, + [103] = {.lex_state = 87}, + [104] = {.lex_state = 87}, + [105] = {.lex_state = 87}, + [106] = {.lex_state = 87}, + [107] = {.lex_state = 87}, + [108] = {.lex_state = 87}, + [109] = {.lex_state = 87}, + [110] = {.lex_state = 87}, + [111] = {.lex_state = 87}, + [112] = {.lex_state = 87}, + [113] = {.lex_state = 87}, + [114] = {.lex_state = 87}, + [115] = {.lex_state = 87}, + [116] = {.lex_state = 87}, + [117] = {.lex_state = 91}, + [118] = {.lex_state = 91}, + [119] = {.lex_state = 91}, + [120] = {.lex_state = 91}, + [121] = {.lex_state = 91}, + [122] = {.lex_state = 91}, + [123] = {.lex_state = 91}, + [124] = {.lex_state = 91}, + [125] = {.lex_state = 91}, + [126] = {.lex_state = 91}, + [127] = {.lex_state = 91}, + [128] = {.lex_state = 91}, + [129] = {.lex_state = 91}, + [130] = {.lex_state = 91}, + [131] = {.lex_state = 91}, + [132] = {.lex_state = 91}, + [133] = {.lex_state = 91}, + [134] = {.lex_state = 91}, + [135] = {.lex_state = 91}, + [136] = {.lex_state = 91}, + [137] = {.lex_state = 91}, + [138] = {.lex_state = 91}, + [139] = {.lex_state = 91}, + [140] = {.lex_state = 91}, + [141] = {.lex_state = 91}, + [142] = {.lex_state = 91}, + [143] = {.lex_state = 91}, + [144] = {.lex_state = 91}, + [145] = {.lex_state = 91}, + [146] = {.lex_state = 91}, + [147] = {.lex_state = 91}, + [148] = {.lex_state = 91}, + [149] = {.lex_state = 91}, + [150] = {.lex_state = 91}, + [151] = {.lex_state = 91}, + [152] = {.lex_state = 91}, + [153] = {.lex_state = 91}, + [154] = {.lex_state = 91}, + [155] = {.lex_state = 91}, + [156] = {.lex_state = 91}, + [157] = {.lex_state = 91}, + [158] = {.lex_state = 91}, + [159] = {.lex_state = 91}, + [160] = {.lex_state = 91}, + [161] = {.lex_state = 91}, + [162] = {.lex_state = 91}, + [163] = {.lex_state = 91}, + [164] = {.lex_state = 91}, + [165] = {.lex_state = 91}, + [166] = {.lex_state = 91}, + [167] = {.lex_state = 91}, + [168] = {.lex_state = 91}, + [169] = {.lex_state = 87}, + [170] = {.lex_state = 91}, + [171] = {.lex_state = 87}, + [172] = {.lex_state = 91}, + [173] = {.lex_state = 91}, + [174] = {.lex_state = 91}, + [175] = {.lex_state = 91}, + [176] = {.lex_state = 87}, + [177] = {.lex_state = 87}, + [178] = {.lex_state = 91}, + [179] = {.lex_state = 91}, + [180] = {.lex_state = 91}, + [181] = {.lex_state = 91}, + [182] = {.lex_state = 91}, + [183] = {.lex_state = 91}, + [184] = {.lex_state = 91}, + [185] = {.lex_state = 91}, + [186] = {.lex_state = 91}, + [187] = {.lex_state = 91}, + [188] = {.lex_state = 91}, + [189] = {.lex_state = 91}, + [190] = {.lex_state = 91}, + [191] = {.lex_state = 91}, + [192] = {.lex_state = 91}, + [193] = {.lex_state = 91}, + [194] = {.lex_state = 91}, + [195] = {.lex_state = 91}, + [196] = {.lex_state = 91}, + [197] = {.lex_state = 91}, + [198] = {.lex_state = 91}, + [199] = {.lex_state = 91}, + [200] = {.lex_state = 91}, + [201] = {.lex_state = 91}, + [202] = {.lex_state = 91}, + [203] = {.lex_state = 91}, + [204] = {.lex_state = 87}, + [205] = {.lex_state = 91}, + [206] = {.lex_state = 87}, + [207] = {.lex_state = 87}, + [208] = {.lex_state = 91}, + [209] = {.lex_state = 87}, + [210] = {.lex_state = 87}, + [211] = {.lex_state = 87}, + [212] = {.lex_state = 87}, + [213] = {.lex_state = 87}, + [214] = {.lex_state = 87}, + [215] = {.lex_state = 87}, + [216] = {.lex_state = 87}, + [217] = {.lex_state = 87}, + [218] = {.lex_state = 87}, + [219] = {.lex_state = 87}, + [220] = {.lex_state = 87}, + [221] = {.lex_state = 87}, + [222] = {.lex_state = 87}, + [223] = {.lex_state = 87}, + [224] = {.lex_state = 87}, + [225] = {.lex_state = 91}, + [226] = {.lex_state = 87}, + [227] = {.lex_state = 91}, + [228] = {.lex_state = 91}, + [229] = {.lex_state = 87}, + [230] = {.lex_state = 91}, + [231] = {.lex_state = 87}, + [232] = {.lex_state = 87}, + [233] = {.lex_state = 87}, + [234] = {.lex_state = 91}, + [235] = {.lex_state = 91}, + [236] = {.lex_state = 87}, + [237] = {.lex_state = 87}, + [238] = {.lex_state = 91}, + [239] = {.lex_state = 91}, + [240] = {.lex_state = 91}, + [241] = {.lex_state = 91}, + [242] = {.lex_state = 87}, + [243] = {.lex_state = 87}, + [244] = {.lex_state = 87}, + [245] = {.lex_state = 87}, + [246] = {.lex_state = 91}, + [247] = {.lex_state = 87}, + [248] = {.lex_state = 87}, + [249] = {.lex_state = 89}, + [250] = {.lex_state = 91}, + [251] = {.lex_state = 91}, + [252] = {.lex_state = 87}, + [253] = {.lex_state = 87}, + [254] = {.lex_state = 87}, + [255] = {.lex_state = 87}, + [256] = {.lex_state = 87}, + [257] = {.lex_state = 87}, + [258] = {.lex_state = 87}, + [259] = {.lex_state = 87}, + [260] = {.lex_state = 87}, + [261] = {.lex_state = 87}, + [262] = {.lex_state = 87}, + [263] = {.lex_state = 87}, + [264] = {.lex_state = 87}, + [265] = {.lex_state = 87}, + [266] = {.lex_state = 87}, + [267] = {.lex_state = 87}, + [268] = {.lex_state = 87}, + [269] = {.lex_state = 87}, + [270] = {.lex_state = 87}, + [271] = {.lex_state = 87}, + [272] = {.lex_state = 87}, + [273] = {.lex_state = 87}, + [274] = {.lex_state = 87}, + [275] = {.lex_state = 87}, + [276] = {.lex_state = 87}, + [277] = {.lex_state = 87}, + [278] = {.lex_state = 87}, + [279] = {.lex_state = 87}, + [280] = {.lex_state = 87}, + [281] = {.lex_state = 87}, + [282] = {.lex_state = 87}, + [283] = {.lex_state = 87}, + [284] = {.lex_state = 87}, + [285] = {.lex_state = 87}, + [286] = {.lex_state = 87}, + [287] = {.lex_state = 87}, + [288] = {.lex_state = 87}, + [289] = {.lex_state = 87}, + [290] = {.lex_state = 87}, + [291] = {.lex_state = 87}, + [292] = {.lex_state = 87}, + [293] = {.lex_state = 87}, + [294] = {.lex_state = 87}, + [295] = {.lex_state = 87}, + [296] = {.lex_state = 87}, + [297] = {.lex_state = 87}, + [298] = {.lex_state = 87}, + [299] = {.lex_state = 87}, + [300] = {.lex_state = 87}, + [301] = {.lex_state = 87}, + [302] = {.lex_state = 87}, + [303] = {.lex_state = 87}, + [304] = {.lex_state = 87}, + [305] = {.lex_state = 87}, + [306] = {.lex_state = 87}, + [307] = {.lex_state = 87}, + [308] = {.lex_state = 87}, + [309] = {.lex_state = 87}, + [310] = {.lex_state = 87}, + [311] = {.lex_state = 87}, + [312] = {.lex_state = 87}, + [313] = {.lex_state = 87}, + [314] = {.lex_state = 87}, + [315] = {.lex_state = 87}, + [316] = {.lex_state = 87}, + [317] = {.lex_state = 87}, + [318] = {.lex_state = 87}, + [319] = {.lex_state = 87}, + [320] = {.lex_state = 87}, + [321] = {.lex_state = 87}, + [322] = {.lex_state = 87}, + [323] = {.lex_state = 87}, + [324] = {.lex_state = 87}, + [325] = {.lex_state = 87}, + [326] = {.lex_state = 87}, + [327] = {.lex_state = 87}, + [328] = {.lex_state = 87}, + [329] = {.lex_state = 87}, + [330] = {.lex_state = 87}, + [331] = {.lex_state = 87}, + [332] = {.lex_state = 87}, + [333] = {.lex_state = 87}, + [334] = {.lex_state = 87}, + [335] = {.lex_state = 87}, + [336] = {.lex_state = 87}, + [337] = {.lex_state = 87}, + [338] = {.lex_state = 87}, + [339] = {.lex_state = 87}, + [340] = {.lex_state = 87}, + [341] = {.lex_state = 87}, + [342] = {.lex_state = 87}, + [343] = {.lex_state = 87}, + [344] = {.lex_state = 87}, + [345] = {.lex_state = 87}, + [346] = {.lex_state = 87}, + [347] = {.lex_state = 87}, + [348] = {.lex_state = 87}, + [349] = {.lex_state = 87}, + [350] = {.lex_state = 87}, + [351] = {.lex_state = 87}, + [352] = {.lex_state = 87}, [353] = {.lex_state = 89}, - [354] = {.lex_state = 90}, - [355] = {.lex_state = 90}, - [356] = {.lex_state = 88}, - [357] = {.lex_state = 88}, - [358] = {.lex_state = 90}, - [359] = {.lex_state = 90}, - [360] = {.lex_state = 90}, - [361] = {.lex_state = 90}, - [362] = {.lex_state = 88}, - [363] = {.lex_state = 90}, - [364] = {.lex_state = 90}, - [365] = {.lex_state = 90}, - [366] = {.lex_state = 88}, - [367] = {.lex_state = 88}, - [368] = {.lex_state = 90}, - [369] = {.lex_state = 90}, - [370] = {.lex_state = 90}, - [371] = {.lex_state = 90}, - [372] = {.lex_state = 90}, - [373] = {.lex_state = 90}, - [374] = {.lex_state = 90}, - [375] = {.lex_state = 88}, - [376] = {.lex_state = 90}, - [377] = {.lex_state = 90}, - [378] = {.lex_state = 90}, - [379] = {.lex_state = 90}, - [380] = {.lex_state = 90}, - [381] = {.lex_state = 90}, - [382] = {.lex_state = 90}, - [383] = {.lex_state = 90}, - [384] = {.lex_state = 90}, + [354] = {.lex_state = 91}, + [355] = {.lex_state = 91}, + [356] = {.lex_state = 91}, + [357] = {.lex_state = 89}, + [358] = {.lex_state = 89}, + [359] = {.lex_state = 91}, + [360] = {.lex_state = 89}, + [361] = {.lex_state = 89}, + [362] = {.lex_state = 89}, + [363] = {.lex_state = 89}, + [364] = {.lex_state = 89}, + [365] = {.lex_state = 91}, + [366] = {.lex_state = 89}, + [367] = {.lex_state = 89}, + [368] = {.lex_state = 91}, + [369] = {.lex_state = 89}, + [370] = {.lex_state = 91}, + [371] = {.lex_state = 89}, + [372] = {.lex_state = 91}, + [373] = {.lex_state = 91}, + [374] = {.lex_state = 91}, + [375] = {.lex_state = 89}, + [376] = {.lex_state = 89}, + [377] = {.lex_state = 91}, + [378] = {.lex_state = 91}, + [379] = {.lex_state = 91}, + [380] = {.lex_state = 91}, + [381] = {.lex_state = 87}, + [382] = {.lex_state = 91}, + [383] = {.lex_state = 89}, + [384] = {.lex_state = 91}, [385] = {.lex_state = 90}, - [386] = {.lex_state = 90}, - [387] = {.lex_state = 90}, - [388] = {.lex_state = 90}, - [389] = {.lex_state = 88}, - [390] = {.lex_state = 90}, - [391] = {.lex_state = 90}, - [392] = {.lex_state = 90}, - [393] = {.lex_state = 90}, - [394] = {.lex_state = 90}, - [395] = {.lex_state = 90}, - [396] = {.lex_state = 90}, - [397] = {.lex_state = 90}, - [398] = {.lex_state = 90}, - [399] = {.lex_state = 90}, - [400] = {.lex_state = 90}, - [401] = {.lex_state = 90}, - [402] = {.lex_state = 90}, - [403] = {.lex_state = 90}, - [404] = {.lex_state = 90}, - [405] = {.lex_state = 90}, - [406] = {.lex_state = 90}, - [407] = {.lex_state = 90}, - [408] = {.lex_state = 90}, - [409] = {.lex_state = 90}, - [410] = {.lex_state = 90}, - [411] = {.lex_state = 90}, - [412] = {.lex_state = 90}, - [413] = {.lex_state = 90}, - [414] = {.lex_state = 90}, + [386] = {.lex_state = 91}, + [387] = {.lex_state = 91}, + [388] = {.lex_state = 91}, + [389] = {.lex_state = 91}, + [390] = {.lex_state = 91}, + [391] = {.lex_state = 91}, + [392] = {.lex_state = 91}, + [393] = {.lex_state = 91}, + [394] = {.lex_state = 91}, + [395] = {.lex_state = 91}, + [396] = {.lex_state = 91}, + [397] = {.lex_state = 91}, + [398] = {.lex_state = 91}, + [399] = {.lex_state = 91}, + [400] = {.lex_state = 91}, + [401] = {.lex_state = 91}, + [402] = {.lex_state = 91}, + [403] = {.lex_state = 91}, + [404] = {.lex_state = 91}, + [405] = {.lex_state = 91}, + [406] = {.lex_state = 91}, + [407] = {.lex_state = 91}, + [408] = {.lex_state = 91}, + [409] = {.lex_state = 91}, + [410] = {.lex_state = 91}, + [411] = {.lex_state = 91}, + [412] = {.lex_state = 91}, + [413] = {.lex_state = 91}, + [414] = {.lex_state = 91}, [415] = {.lex_state = 90}, - [416] = {.lex_state = 90}, - [417] = {.lex_state = 90}, - [418] = {.lex_state = 90}, - [419] = {.lex_state = 90}, - [420] = {.lex_state = 90}, - [421] = {.lex_state = 90}, - [422] = {.lex_state = 90}, + [416] = {.lex_state = 91}, + [417] = {.lex_state = 91}, + [418] = {.lex_state = 91}, + [419] = {.lex_state = 91}, + [420] = {.lex_state = 91}, + [421] = {.lex_state = 91}, + [422] = {.lex_state = 91}, [423] = {.lex_state = 90}, [424] = {.lex_state = 90}, [425] = {.lex_state = 90}, - [426] = {.lex_state = 90}, - [427] = {.lex_state = 90}, - [428] = {.lex_state = 90}, - [429] = {.lex_state = 90}, - [430] = {.lex_state = 90}, - [431] = {.lex_state = 90}, - [432] = {.lex_state = 90}, - [433] = {.lex_state = 90}, - [434] = {.lex_state = 90}, - [435] = {.lex_state = 90}, - [436] = {.lex_state = 90}, - [437] = {.lex_state = 90}, - [438] = {.lex_state = 90}, - [439] = {.lex_state = 90}, - [440] = {.lex_state = 88}, - [441] = {.lex_state = 90}, - [442] = {.lex_state = 90}, - [443] = {.lex_state = 90}, - [444] = {.lex_state = 90}, - [445] = {.lex_state = 90}, - [446] = {.lex_state = 90}, - [447] = {.lex_state = 90}, - [448] = {.lex_state = 90}, - [449] = {.lex_state = 90}, - [450] = {.lex_state = 90}, - [451] = {.lex_state = 90}, - [452] = {.lex_state = 90}, - [453] = {.lex_state = 90}, - [454] = {.lex_state = 90}, - [455] = {.lex_state = 90}, - [456] = {.lex_state = 90}, - [457] = {.lex_state = 90}, - [458] = {.lex_state = 90}, - [459] = {.lex_state = 90}, - [460] = {.lex_state = 90}, - [461] = {.lex_state = 90}, - [462] = {.lex_state = 90}, - [463] = {.lex_state = 90}, - [464] = {.lex_state = 90}, - [465] = {.lex_state = 90}, - [466] = {.lex_state = 90}, - [467] = {.lex_state = 90}, - [468] = {.lex_state = 90}, - [469] = {.lex_state = 90}, - [470] = {.lex_state = 90}, - [471] = {.lex_state = 90}, - [472] = {.lex_state = 90}, - [473] = {.lex_state = 90}, - [474] = {.lex_state = 88}, - [475] = {.lex_state = 88}, - [476] = {.lex_state = 90}, - [477] = {.lex_state = 90}, - [478] = {.lex_state = 90}, - [479] = {.lex_state = 90}, - [480] = {.lex_state = 90}, - [481] = {.lex_state = 90}, - [482] = {.lex_state = 90}, - [483] = {.lex_state = 90}, - [484] = {.lex_state = 90}, + [426] = {.lex_state = 91}, + [427] = {.lex_state = 91}, + [428] = {.lex_state = 91}, + [429] = {.lex_state = 91}, + [430] = {.lex_state = 91}, + [431] = {.lex_state = 91}, + [432] = {.lex_state = 91}, + [433] = {.lex_state = 91}, + [434] = {.lex_state = 91}, + [435] = {.lex_state = 91}, + [436] = {.lex_state = 91}, + [437] = {.lex_state = 91}, + [438] = {.lex_state = 91}, + [439] = {.lex_state = 91}, + [440] = {.lex_state = 91}, + [441] = {.lex_state = 91}, + [442] = {.lex_state = 91}, + [443] = {.lex_state = 91}, + [444] = {.lex_state = 91}, + [445] = {.lex_state = 91}, + [446] = {.lex_state = 91}, + [447] = {.lex_state = 91}, + [448] = {.lex_state = 91}, + [449] = {.lex_state = 91}, + [450] = {.lex_state = 91}, + [451] = {.lex_state = 91}, + [452] = {.lex_state = 91}, + [453] = {.lex_state = 91}, + [454] = {.lex_state = 91}, + [455] = {.lex_state = 91}, + [456] = {.lex_state = 91}, + [457] = {.lex_state = 91}, + [458] = {.lex_state = 91}, + [459] = {.lex_state = 91}, + [460] = {.lex_state = 91}, + [461] = {.lex_state = 91}, + [462] = {.lex_state = 91}, + [463] = {.lex_state = 91}, + [464] = {.lex_state = 91}, + [465] = {.lex_state = 91}, + [466] = {.lex_state = 91}, + [467] = {.lex_state = 91}, + [468] = {.lex_state = 91}, + [469] = {.lex_state = 91}, + [470] = {.lex_state = 91}, + [471] = {.lex_state = 91}, + [472] = {.lex_state = 91}, + [473] = {.lex_state = 91}, + [474] = {.lex_state = 91}, + [475] = {.lex_state = 91}, + [476] = {.lex_state = 91}, + [477] = {.lex_state = 91}, + [478] = {.lex_state = 91}, + [479] = {.lex_state = 91}, + [480] = {.lex_state = 91}, + [481] = {.lex_state = 91}, + [482] = {.lex_state = 91}, + [483] = {.lex_state = 91}, + [484] = {.lex_state = 91}, [485] = {.lex_state = 90}, [486] = {.lex_state = 90}, [487] = {.lex_state = 90}, [488] = {.lex_state = 90}, - [489] = {.lex_state = 90}, - [490] = {.lex_state = 90}, + [489] = {.lex_state = 91}, + [490] = {.lex_state = 91}, [491] = {.lex_state = 90}, - [492] = {.lex_state = 90}, + [492] = {.lex_state = 91}, [493] = {.lex_state = 90}, - [494] = {.lex_state = 90}, - [495] = {.lex_state = 90}, - [496] = {.lex_state = 90}, - [497] = {.lex_state = 90}, - [498] = {.lex_state = 90}, - [499] = {.lex_state = 90}, - [500] = {.lex_state = 90}, - [501] = {.lex_state = 90}, - [502] = {.lex_state = 90}, - [503] = {.lex_state = 90}, - [504] = {.lex_state = 90}, - [505] = {.lex_state = 90}, - [506] = {.lex_state = 90}, - [507] = {.lex_state = 90}, - [508] = {.lex_state = 90}, - [509] = {.lex_state = 90}, - [510] = {.lex_state = 90}, - [511] = {.lex_state = 90}, - [512] = {.lex_state = 90}, - [513] = {.lex_state = 90}, - [514] = {.lex_state = 90}, - [515] = {.lex_state = 90}, - [516] = {.lex_state = 90}, - [517] = {.lex_state = 90}, - [518] = {.lex_state = 90}, - [519] = {.lex_state = 90}, - [520] = {.lex_state = 90}, - [521] = {.lex_state = 90}, - [522] = {.lex_state = 90}, - [523] = {.lex_state = 90}, - [524] = {.lex_state = 90}, - [525] = {.lex_state = 90}, - [526] = {.lex_state = 90}, - [527] = {.lex_state = 90}, - [528] = {.lex_state = 90}, - [529] = {.lex_state = 90}, - [530] = {.lex_state = 90}, - [531] = {.lex_state = 90}, - [532] = {.lex_state = 90}, - [533] = {.lex_state = 90}, - [534] = {.lex_state = 90}, - [535] = {.lex_state = 90}, - [536] = {.lex_state = 90}, - [537] = {.lex_state = 90}, - [538] = {.lex_state = 90}, - [539] = {.lex_state = 90}, - [540] = {.lex_state = 90}, - [541] = {.lex_state = 90}, - [542] = {.lex_state = 90}, - [543] = {.lex_state = 90}, - [544] = {.lex_state = 90}, - [545] = {.lex_state = 90}, - [546] = {.lex_state = 90}, - [547] = {.lex_state = 90}, - [548] = {.lex_state = 90}, - [549] = {.lex_state = 90}, - [550] = {.lex_state = 90}, - [551] = {.lex_state = 90}, - [552] = {.lex_state = 90}, - [553] = {.lex_state = 90}, - [554] = {.lex_state = 87}, - [555] = {.lex_state = 87}, - [556] = {.lex_state = 87}, - [557] = {.lex_state = 87}, - [558] = {.lex_state = 87}, - [559] = {.lex_state = 88}, - [560] = {.lex_state = 87}, - [561] = {.lex_state = 90}, - [562] = {.lex_state = 90}, - [563] = {.lex_state = 90}, - [564] = {.lex_state = 90}, - [565] = {.lex_state = 90}, - [566] = {.lex_state = 90}, - [567] = {.lex_state = 90}, - [568] = {.lex_state = 90}, - [569] = {.lex_state = 90}, - [570] = {.lex_state = 90}, - [571] = {.lex_state = 90}, - [572] = {.lex_state = 90}, - [573] = {.lex_state = 90}, - [574] = {.lex_state = 90}, - [575] = {.lex_state = 90}, - [576] = {.lex_state = 90}, - [577] = {.lex_state = 90}, - [578] = {.lex_state = 90}, - [579] = {.lex_state = 90}, - [580] = {.lex_state = 90}, - [581] = {.lex_state = 90}, - [582] = {.lex_state = 90}, - [583] = {.lex_state = 90}, - [584] = {.lex_state = 90}, - [585] = {.lex_state = 90}, - [586] = {.lex_state = 90}, - [587] = {.lex_state = 90}, - [588] = {.lex_state = 90}, - [589] = {.lex_state = 90}, - [590] = {.lex_state = 90}, - [591] = {.lex_state = 90}, - [592] = {.lex_state = 90}, - [593] = {.lex_state = 90}, - [594] = {.lex_state = 90}, - [595] = {.lex_state = 90}, - [596] = {.lex_state = 90}, - [597] = {.lex_state = 90}, - [598] = {.lex_state = 90}, - [599] = {.lex_state = 90}, - [600] = {.lex_state = 90}, - [601] = {.lex_state = 90}, - [602] = {.lex_state = 90}, - [603] = {.lex_state = 90}, - [604] = {.lex_state = 90}, - [605] = {.lex_state = 90}, - [606] = {.lex_state = 90}, - [607] = {.lex_state = 90}, - [608] = {.lex_state = 90}, - [609] = {.lex_state = 90}, - [610] = {.lex_state = 90}, - [611] = {.lex_state = 90}, - [612] = {.lex_state = 90}, - [613] = {.lex_state = 90}, - [614] = {.lex_state = 90}, - [615] = {.lex_state = 90}, - [616] = {.lex_state = 90}, - [617] = {.lex_state = 90}, - [618] = {.lex_state = 90}, - [619] = {.lex_state = 90}, - [620] = {.lex_state = 90}, - [621] = {.lex_state = 90}, - [622] = {.lex_state = 90}, - [623] = {.lex_state = 90}, - [624] = {.lex_state = 90}, - [625] = {.lex_state = 90}, - [626] = {.lex_state = 90}, - [627] = {.lex_state = 90}, - [628] = {.lex_state = 90}, - [629] = {.lex_state = 90}, - [630] = {.lex_state = 90}, - [631] = {.lex_state = 90}, - [632] = {.lex_state = 90}, - [633] = {.lex_state = 90}, - [634] = {.lex_state = 90}, - [635] = {.lex_state = 90}, - [636] = {.lex_state = 90}, - [637] = {.lex_state = 90}, - [638] = {.lex_state = 90}, - [639] = {.lex_state = 90}, - [640] = {.lex_state = 90}, - [641] = {.lex_state = 90}, - [642] = {.lex_state = 90}, - [643] = {.lex_state = 90}, - [644] = {.lex_state = 90}, - [645] = {.lex_state = 90}, - [646] = {.lex_state = 90}, - [647] = {.lex_state = 90}, - [648] = {.lex_state = 90}, - [649] = {.lex_state = 90}, - [650] = {.lex_state = 90}, - [651] = {.lex_state = 90}, - [652] = {.lex_state = 90}, - [653] = {.lex_state = 90}, - [654] = {.lex_state = 90}, - [655] = {.lex_state = 90}, - [656] = {.lex_state = 90}, - [657] = {.lex_state = 90}, - [658] = {.lex_state = 90}, - [659] = {.lex_state = 90}, - [660] = {.lex_state = 90}, - [661] = {.lex_state = 90}, - [662] = {.lex_state = 90}, - [663] = {.lex_state = 90}, - [664] = {.lex_state = 90}, - [665] = {.lex_state = 90}, - [666] = {.lex_state = 90}, - [667] = {.lex_state = 90}, - [668] = {.lex_state = 90}, - [669] = {.lex_state = 90}, - [670] = {.lex_state = 90}, - [671] = {.lex_state = 90}, - [672] = {.lex_state = 90}, - [673] = {.lex_state = 90}, - [674] = {.lex_state = 90}, - [675] = {.lex_state = 90}, - [676] = {.lex_state = 90}, - [677] = {.lex_state = 90}, - [678] = {.lex_state = 90}, - [679] = {.lex_state = 90}, - [680] = {.lex_state = 90}, - [681] = {.lex_state = 90}, - [682] = {.lex_state = 90}, - [683] = {.lex_state = 90}, - [684] = {.lex_state = 90}, - [685] = {.lex_state = 90}, - [686] = {.lex_state = 90}, - [687] = {.lex_state = 90}, - [688] = {.lex_state = 90}, - [689] = {.lex_state = 90}, - [690] = {.lex_state = 90}, - [691] = {.lex_state = 90}, - [692] = {.lex_state = 90}, - [693] = {.lex_state = 90}, - [694] = {.lex_state = 90}, - [695] = {.lex_state = 90}, - [696] = {.lex_state = 90}, - [697] = {.lex_state = 90}, - [698] = {.lex_state = 90}, - [699] = {.lex_state = 90}, - [700] = {.lex_state = 90}, - [701] = {.lex_state = 90}, - [702] = {.lex_state = 90}, - [703] = {.lex_state = 90}, - [704] = {.lex_state = 90}, - [705] = {.lex_state = 90}, - [706] = {.lex_state = 90}, - [707] = {.lex_state = 90}, - [708] = {.lex_state = 90}, - [709] = {.lex_state = 90}, - [710] = {.lex_state = 90}, - [711] = {.lex_state = 90}, - [712] = {.lex_state = 90}, - [713] = {.lex_state = 90}, - [714] = {.lex_state = 90}, - [715] = {.lex_state = 90}, - [716] = {.lex_state = 90}, - [717] = {.lex_state = 90}, - [718] = {.lex_state = 89}, + [494] = {.lex_state = 91}, + [495] = {.lex_state = 91}, + [496] = {.lex_state = 91}, + [497] = {.lex_state = 91}, + [498] = {.lex_state = 91}, + [499] = {.lex_state = 91}, + [500] = {.lex_state = 91}, + [501] = {.lex_state = 91}, + [502] = {.lex_state = 91}, + [503] = {.lex_state = 87}, + [504] = {.lex_state = 91}, + [505] = {.lex_state = 91}, + [506] = {.lex_state = 91}, + [507] = {.lex_state = 91}, + [508] = {.lex_state = 91}, + [509] = {.lex_state = 91}, + [510] = {.lex_state = 91}, + [511] = {.lex_state = 91}, + [512] = {.lex_state = 91}, + [513] = {.lex_state = 91}, + [514] = {.lex_state = 91}, + [515] = {.lex_state = 91}, + [516] = {.lex_state = 91}, + [517] = {.lex_state = 91}, + [518] = {.lex_state = 91}, + [519] = {.lex_state = 91}, + [520] = {.lex_state = 91}, + [521] = {.lex_state = 91}, + [522] = {.lex_state = 91}, + [523] = {.lex_state = 91}, + [524] = {.lex_state = 91}, + [525] = {.lex_state = 91}, + [526] = {.lex_state = 91}, + [527] = {.lex_state = 91}, + [528] = {.lex_state = 91}, + [529] = {.lex_state = 91}, + [530] = {.lex_state = 91}, + [531] = {.lex_state = 91}, + [532] = {.lex_state = 91}, + [533] = {.lex_state = 91}, + [534] = {.lex_state = 91}, + [535] = {.lex_state = 91}, + [536] = {.lex_state = 91}, + [537] = {.lex_state = 91}, + [538] = {.lex_state = 91}, + [539] = {.lex_state = 91}, + [540] = {.lex_state = 91}, + [541] = {.lex_state = 91}, + [542] = {.lex_state = 91}, + [543] = {.lex_state = 91}, + [544] = {.lex_state = 91}, + [545] = {.lex_state = 91}, + [546] = {.lex_state = 91}, + [547] = {.lex_state = 91}, + [548] = {.lex_state = 91}, + [549] = {.lex_state = 91}, + [550] = {.lex_state = 91}, + [551] = {.lex_state = 91}, + [552] = {.lex_state = 87}, + [553] = {.lex_state = 91}, + [554] = {.lex_state = 91}, + [555] = {.lex_state = 91}, + [556] = {.lex_state = 91}, + [557] = {.lex_state = 91}, + [558] = {.lex_state = 91}, + [559] = {.lex_state = 91}, + [560] = {.lex_state = 91}, + [561] = {.lex_state = 91}, + [562] = {.lex_state = 91}, + [563] = {.lex_state = 91}, + [564] = {.lex_state = 91}, + [565] = {.lex_state = 91}, + [566] = {.lex_state = 91}, + [567] = {.lex_state = 91}, + [568] = {.lex_state = 91}, + [569] = {.lex_state = 91}, + [570] = {.lex_state = 91}, + [571] = {.lex_state = 91}, + [572] = {.lex_state = 91}, + [573] = {.lex_state = 91}, + [574] = {.lex_state = 91}, + [575] = {.lex_state = 91}, + [576] = {.lex_state = 91}, + [577] = {.lex_state = 91}, + [578] = {.lex_state = 89}, + [579] = {.lex_state = 89}, + [580] = {.lex_state = 89}, + [581] = {.lex_state = 89}, + [582] = {.lex_state = 89}, + [583] = {.lex_state = 89}, + [584] = {.lex_state = 89}, + [585] = {.lex_state = 89}, + [586] = {.lex_state = 89}, + [587] = {.lex_state = 89}, + [588] = {.lex_state = 88}, + [589] = {.lex_state = 91}, + [590] = {.lex_state = 91}, + [591] = {.lex_state = 91}, + [592] = {.lex_state = 91}, + [593] = {.lex_state = 91}, + [594] = {.lex_state = 91}, + [595] = {.lex_state = 91}, + [596] = {.lex_state = 91}, + [597] = {.lex_state = 91}, + [598] = {.lex_state = 91}, + [599] = {.lex_state = 91}, + [600] = {.lex_state = 91}, + [601] = {.lex_state = 91}, + [602] = {.lex_state = 91}, + [603] = {.lex_state = 91}, + [604] = {.lex_state = 91}, + [605] = {.lex_state = 91}, + [606] = {.lex_state = 91}, + [607] = {.lex_state = 91}, + [608] = {.lex_state = 91}, + [609] = {.lex_state = 91}, + [610] = {.lex_state = 91}, + [611] = {.lex_state = 91}, + [612] = {.lex_state = 91}, + [613] = {.lex_state = 91}, + [614] = {.lex_state = 91}, + [615] = {.lex_state = 91}, + [616] = {.lex_state = 91}, + [617] = {.lex_state = 91}, + [618] = {.lex_state = 91}, + [619] = {.lex_state = 91}, + [620] = {.lex_state = 91}, + [621] = {.lex_state = 91}, + [622] = {.lex_state = 91}, + [623] = {.lex_state = 91}, + [624] = {.lex_state = 91}, + [625] = {.lex_state = 91}, + [626] = {.lex_state = 91}, + [627] = {.lex_state = 91}, + [628] = {.lex_state = 91}, + [629] = {.lex_state = 91}, + [630] = {.lex_state = 91}, + [631] = {.lex_state = 91}, + [632] = {.lex_state = 91}, + [633] = {.lex_state = 91}, + [634] = {.lex_state = 91}, + [635] = {.lex_state = 91}, + [636] = {.lex_state = 91}, + [637] = {.lex_state = 91}, + [638] = {.lex_state = 91}, + [639] = {.lex_state = 91}, + [640] = {.lex_state = 91}, + [641] = {.lex_state = 91}, + [642] = {.lex_state = 91}, + [643] = {.lex_state = 91}, + [644] = {.lex_state = 91}, + [645] = {.lex_state = 91}, + [646] = {.lex_state = 91}, + [647] = {.lex_state = 91}, + [648] = {.lex_state = 91}, + [649] = {.lex_state = 91}, + [650] = {.lex_state = 91}, + [651] = {.lex_state = 91}, + [652] = {.lex_state = 91}, + [653] = {.lex_state = 91}, + [654] = {.lex_state = 91}, + [655] = {.lex_state = 91}, + [656] = {.lex_state = 91}, + [657] = {.lex_state = 91}, + [658] = {.lex_state = 91}, + [659] = {.lex_state = 91}, + [660] = {.lex_state = 91}, + [661] = {.lex_state = 91}, + [662] = {.lex_state = 91}, + [663] = {.lex_state = 91}, + [664] = {.lex_state = 91}, + [665] = {.lex_state = 91}, + [666] = {.lex_state = 91}, + [667] = {.lex_state = 91}, + [668] = {.lex_state = 91}, + [669] = {.lex_state = 91}, + [670] = {.lex_state = 91}, + [671] = {.lex_state = 91}, + [672] = {.lex_state = 91}, + [673] = {.lex_state = 91}, + [674] = {.lex_state = 91}, + [675] = {.lex_state = 91}, + [676] = {.lex_state = 91}, + [677] = {.lex_state = 91}, + [678] = {.lex_state = 91}, + [679] = {.lex_state = 91}, + [680] = {.lex_state = 91}, + [681] = {.lex_state = 91}, + [682] = {.lex_state = 91}, + [683] = {.lex_state = 91}, + [684] = {.lex_state = 91}, + [685] = {.lex_state = 91}, + [686] = {.lex_state = 91}, + [687] = {.lex_state = 91}, + [688] = {.lex_state = 91}, + [689] = {.lex_state = 91}, + [690] = {.lex_state = 91}, + [691] = {.lex_state = 91}, + [692] = {.lex_state = 91}, + [693] = {.lex_state = 91}, + [694] = {.lex_state = 91}, + [695] = {.lex_state = 91}, + [696] = {.lex_state = 91}, + [697] = {.lex_state = 91}, + [698] = {.lex_state = 91}, + [699] = {.lex_state = 91}, + [700] = {.lex_state = 91}, + [701] = {.lex_state = 91}, + [702] = {.lex_state = 91}, + [703] = {.lex_state = 91}, + [704] = {.lex_state = 91}, + [705] = {.lex_state = 91}, + [706] = {.lex_state = 91}, + [707] = {.lex_state = 91}, + [708] = {.lex_state = 91}, + [709] = {.lex_state = 91}, + [710] = {.lex_state = 91}, + [711] = {.lex_state = 91}, + [712] = {.lex_state = 91}, + [713] = {.lex_state = 91}, + [714] = {.lex_state = 91}, + [715] = {.lex_state = 91}, + [716] = {.lex_state = 91}, + [717] = {.lex_state = 91}, + [718] = {.lex_state = 91}, [719] = {.lex_state = 91}, [720] = {.lex_state = 91}, [721] = {.lex_state = 91}, - [722] = {.lex_state = 88}, - [723] = {.lex_state = 88}, - [724] = {.lex_state = 88}, - [725] = {.lex_state = 89}, - [726] = {.lex_state = 88}, - [727] = {.lex_state = 88}, - [728] = {.lex_state = 88}, - [729] = {.lex_state = 88}, - [730] = {.lex_state = 88}, - [731] = {.lex_state = 88}, - [732] = {.lex_state = 88}, - [733] = {.lex_state = 88}, - [734] = {.lex_state = 88}, - [735] = {.lex_state = 88}, - [736] = {.lex_state = 88}, - [737] = {.lex_state = 88}, - [738] = {.lex_state = 88}, - [739] = {.lex_state = 89}, - [740] = {.lex_state = 88}, - [741] = {.lex_state = 89}, - [742] = {.lex_state = 88}, - [743] = {.lex_state = 88}, - [744] = {.lex_state = 88}, + [722] = {.lex_state = 91}, + [723] = {.lex_state = 91}, + [724] = {.lex_state = 91}, + [725] = {.lex_state = 91}, + [726] = {.lex_state = 91}, + [727] = {.lex_state = 91}, + [728] = {.lex_state = 91}, + [729] = {.lex_state = 91}, + [730] = {.lex_state = 91}, + [731] = {.lex_state = 91}, + [732] = {.lex_state = 91}, + [733] = {.lex_state = 91}, + [734] = {.lex_state = 91}, + [735] = {.lex_state = 91}, + [736] = {.lex_state = 91}, + [737] = {.lex_state = 91}, + [738] = {.lex_state = 91}, + [739] = {.lex_state = 91}, + [740] = {.lex_state = 91}, + [741] = {.lex_state = 91}, + [742] = {.lex_state = 91}, + [743] = {.lex_state = 91}, + [744] = {.lex_state = 91}, [745] = {.lex_state = 88}, [746] = {.lex_state = 89}, [747] = {.lex_state = 88}, [748] = {.lex_state = 88}, [749] = {.lex_state = 88}, [750] = {.lex_state = 88}, - [751] = {.lex_state = 88}, - [752] = {.lex_state = 88}, - [753] = {.lex_state = 88}, - [754] = {.lex_state = 88}, - [755] = {.lex_state = 88}, - [756] = {.lex_state = 88}, - [757] = {.lex_state = 88}, - [758] = {.lex_state = 88}, - [759] = {.lex_state = 88}, - [760] = {.lex_state = 88}, - [761] = {.lex_state = 88}, - [762] = {.lex_state = 88}, - [763] = {.lex_state = 88}, - [764] = {.lex_state = 88}, - [765] = {.lex_state = 88}, - [766] = {.lex_state = 88}, - [767] = {.lex_state = 88}, - [768] = {.lex_state = 88}, + [751] = {.lex_state = 91}, + [752] = {.lex_state = 90}, + [753] = {.lex_state = 89}, + [754] = {.lex_state = 92}, + [755] = {.lex_state = 90}, + [756] = {.lex_state = 92}, + [757] = {.lex_state = 89}, + [758] = {.lex_state = 89}, + [759] = {.lex_state = 92}, + [760] = {.lex_state = 89}, + [761] = {.lex_state = 89}, + [762] = {.lex_state = 89}, + [763] = {.lex_state = 89}, + [764] = {.lex_state = 89}, + [765] = {.lex_state = 89}, + [766] = {.lex_state = 89}, + [767] = {.lex_state = 89}, + [768] = {.lex_state = 89}, [769] = {.lex_state = 89}, - [770] = {.lex_state = 88}, - [771] = {.lex_state = 88}, - [772] = {.lex_state = 88}, - [773] = {.lex_state = 88}, - [774] = {.lex_state = 88}, - [775] = {.lex_state = 88}, - [776] = {.lex_state = 88}, - [777] = {.lex_state = 88}, - [778] = {.lex_state = 88}, - [779] = {.lex_state = 88}, - [780] = {.lex_state = 88}, - [781] = {.lex_state = 88}, - [782] = {.lex_state = 88}, - [783] = {.lex_state = 88}, - [784] = {.lex_state = 88}, - [785] = {.lex_state = 88}, - [786] = {.lex_state = 88}, - [787] = {.lex_state = 88}, - [788] = {.lex_state = 88}, - [789] = {.lex_state = 88}, - [790] = {.lex_state = 88}, - [791] = {.lex_state = 88}, - [792] = {.lex_state = 88}, - [793] = {.lex_state = 88}, - [794] = {.lex_state = 88}, - [795] = {.lex_state = 88}, - [796] = {.lex_state = 88}, - [797] = {.lex_state = 88}, - [798] = {.lex_state = 88}, - [799] = {.lex_state = 88}, - [800] = {.lex_state = 88}, - [801] = {.lex_state = 88}, - [802] = {.lex_state = 88}, - [803] = {.lex_state = 88}, - [804] = {.lex_state = 88}, - [805] = {.lex_state = 88}, - [806] = {.lex_state = 88}, - [807] = {.lex_state = 88}, - [808] = {.lex_state = 88}, - [809] = {.lex_state = 88}, - [810] = {.lex_state = 88}, - [811] = {.lex_state = 88}, - [812] = {.lex_state = 88}, - [813] = {.lex_state = 88}, - [814] = {.lex_state = 88}, - [815] = {.lex_state = 88}, - [816] = {.lex_state = 88}, - [817] = {.lex_state = 88}, - [818] = {.lex_state = 88}, - [819] = {.lex_state = 88}, + [770] = {.lex_state = 89}, + [771] = {.lex_state = 89}, + [772] = {.lex_state = 89}, + [773] = {.lex_state = 89}, + [774] = {.lex_state = 90}, + [775] = {.lex_state = 89}, + [776] = {.lex_state = 90}, + [777] = {.lex_state = 89}, + [778] = {.lex_state = 89}, + [779] = {.lex_state = 89}, + [780] = {.lex_state = 89}, + [781] = {.lex_state = 89}, + [782] = {.lex_state = 89}, + [783] = {.lex_state = 89}, + [784] = {.lex_state = 89}, + [785] = {.lex_state = 89}, + [786] = {.lex_state = 90}, + [787] = {.lex_state = 89}, + [788] = {.lex_state = 89}, + [789] = {.lex_state = 89}, + [790] = {.lex_state = 90}, + [791] = {.lex_state = 89}, + [792] = {.lex_state = 90}, + [793] = {.lex_state = 89}, + [794] = {.lex_state = 89}, + [795] = {.lex_state = 89}, + [796] = {.lex_state = 89}, + [797] = {.lex_state = 89}, + [798] = {.lex_state = 89}, + [799] = {.lex_state = 89}, + [800] = {.lex_state = 90}, + [801] = {.lex_state = 90}, + [802] = {.lex_state = 89}, + [803] = {.lex_state = 89}, + [804] = {.lex_state = 90}, + [805] = {.lex_state = 89}, + [806] = {.lex_state = 89}, + [807] = {.lex_state = 89}, + [808] = {.lex_state = 89}, + [809] = {.lex_state = 89}, + [810] = {.lex_state = 89}, + [811] = {.lex_state = 89}, + [812] = {.lex_state = 89}, + [813] = {.lex_state = 89}, + [814] = {.lex_state = 89}, + [815] = {.lex_state = 89}, + [816] = {.lex_state = 89}, + [817] = {.lex_state = 89}, + [818] = {.lex_state = 89}, + [819] = {.lex_state = 89}, [820] = {.lex_state = 89}, [821] = {.lex_state = 89}, [822] = {.lex_state = 89}, - [823] = {.lex_state = 88}, - [824] = {.lex_state = 88}, - [825] = {.lex_state = 88}, - [826] = {.lex_state = 88}, - [827] = {.lex_state = 88}, - [828] = {.lex_state = 88}, - [829] = {.lex_state = 88}, - [830] = {.lex_state = 88}, - [831] = {.lex_state = 88}, - [832] = {.lex_state = 88}, - [833] = {.lex_state = 88}, - [834] = {.lex_state = 88}, - [835] = {.lex_state = 88}, + [823] = {.lex_state = 89}, + [824] = {.lex_state = 89}, + [825] = {.lex_state = 89}, + [826] = {.lex_state = 89}, + [827] = {.lex_state = 89}, + [828] = {.lex_state = 89}, + [829] = {.lex_state = 89}, + [830] = {.lex_state = 89}, + [831] = {.lex_state = 89}, + [832] = {.lex_state = 89}, + [833] = {.lex_state = 89}, + [834] = {.lex_state = 89}, + [835] = {.lex_state = 89}, [836] = {.lex_state = 89}, - [837] = {.lex_state = 88}, + [837] = {.lex_state = 89}, [838] = {.lex_state = 89}, [839] = {.lex_state = 89}, [840] = {.lex_state = 89}, - [841] = {.lex_state = 88}, - [842] = {.lex_state = 88}, - [843] = {.lex_state = 88}, - [844] = {.lex_state = 88}, - [845] = {.lex_state = 88}, - [846] = {.lex_state = 88}, - [847] = {.lex_state = 88}, + [841] = {.lex_state = 89}, + [842] = {.lex_state = 89}, + [843] = {.lex_state = 89}, + [844] = {.lex_state = 89}, + [845] = {.lex_state = 89}, + [846] = {.lex_state = 89}, + [847] = {.lex_state = 89}, [848] = {.lex_state = 89}, - [849] = {.lex_state = 88}, - [850] = {.lex_state = 88}, - [851] = {.lex_state = 88}, - [852] = {.lex_state = 88}, - [853] = {.lex_state = 88}, - [854] = {.lex_state = 88}, - [855] = {.lex_state = 88}, - [856] = {.lex_state = 88}, + [849] = {.lex_state = 89}, + [850] = {.lex_state = 89}, + [851] = {.lex_state = 89}, + [852] = {.lex_state = 89}, + [853] = {.lex_state = 89}, + [854] = {.lex_state = 89}, + [855] = {.lex_state = 90}, + [856] = {.lex_state = 89}, [857] = {.lex_state = 89}, [858] = {.lex_state = 89}, [859] = {.lex_state = 89}, - [860] = {.lex_state = 89}, - [861] = {.lex_state = 89}, + [860] = {.lex_state = 90}, + [861] = {.lex_state = 90}, [862] = {.lex_state = 89}, - [863] = {.lex_state = 89}, + [863] = {.lex_state = 90}, [864] = {.lex_state = 89}, [865] = {.lex_state = 89}, [866] = {.lex_state = 89}, @@ -7088,7 +7091,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [868] = {.lex_state = 89}, [869] = {.lex_state = 89}, [870] = {.lex_state = 89}, - [871] = {.lex_state = 91}, + [871] = {.lex_state = 89}, [872] = {.lex_state = 89}, [873] = {.lex_state = 89}, [874] = {.lex_state = 89}, @@ -7100,937 +7103,937 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [880] = {.lex_state = 89}, [881] = {.lex_state = 89}, [882] = {.lex_state = 89}, - [883] = {.lex_state = 91}, + [883] = {.lex_state = 89}, [884] = {.lex_state = 89}, [885] = {.lex_state = 89}, [886] = {.lex_state = 89}, [887] = {.lex_state = 89}, [888] = {.lex_state = 89}, [889] = {.lex_state = 89}, - [890] = {.lex_state = 91}, + [890] = {.lex_state = 89}, [891] = {.lex_state = 89}, [892] = {.lex_state = 89}, - [893] = {.lex_state = 89}, - [894] = {.lex_state = 89}, - [895] = {.lex_state = 91}, - [896] = {.lex_state = 91}, - [897] = {.lex_state = 89}, - [898] = {.lex_state = 89}, - [899] = {.lex_state = 91}, - [900] = {.lex_state = 89}, - [901] = {.lex_state = 91}, - [902] = {.lex_state = 89}, - [903] = {.lex_state = 89}, - [904] = {.lex_state = 89}, - [905] = {.lex_state = 91}, - [906] = {.lex_state = 91}, - [907] = {.lex_state = 91}, - [908] = {.lex_state = 91}, - [909] = {.lex_state = 91}, - [910] = {.lex_state = 89}, - [911] = {.lex_state = 91}, - [912] = {.lex_state = 91}, - [913] = {.lex_state = 91}, - [914] = {.lex_state = 87}, - [915] = {.lex_state = 91}, - [916] = {.lex_state = 87}, - [917] = {.lex_state = 87}, - [918] = {.lex_state = 87}, - [919] = {.lex_state = 87}, - [920] = {.lex_state = 87}, - [921] = {.lex_state = 87}, - [922] = {.lex_state = 87}, - [923] = {.lex_state = 87}, - [924] = {.lex_state = 87}, - [925] = {.lex_state = 87}, - [926] = {.lex_state = 87}, - [927] = {.lex_state = 87}, - [928] = {.lex_state = 87}, - [929] = {.lex_state = 87}, - [930] = {.lex_state = 87}, - [931] = {.lex_state = 87}, - [932] = {.lex_state = 87}, - [933] = {.lex_state = 87}, - [934] = {.lex_state = 87}, - [935] = {.lex_state = 87}, - [936] = {.lex_state = 87}, - [937] = {.lex_state = 87}, - [938] = {.lex_state = 87}, - [939] = {.lex_state = 87}, - [940] = {.lex_state = 87}, - [941] = {.lex_state = 87}, - [942] = {.lex_state = 87}, - [943] = {.lex_state = 87}, - [944] = {.lex_state = 87}, - [945] = {.lex_state = 87}, - [946] = {.lex_state = 87}, + [893] = {.lex_state = 90}, + [894] = {.lex_state = 90}, + [895] = {.lex_state = 90}, + [896] = {.lex_state = 90}, + [897] = {.lex_state = 90}, + [898] = {.lex_state = 90}, + [899] = {.lex_state = 90}, + [900] = {.lex_state = 90}, + [901] = {.lex_state = 90}, + [902] = {.lex_state = 90}, + [903] = {.lex_state = 90}, + [904] = {.lex_state = 90}, + [905] = {.lex_state = 92}, + [906] = {.lex_state = 90}, + [907] = {.lex_state = 92}, + [908] = {.lex_state = 90}, + [909] = {.lex_state = 90}, + [910] = {.lex_state = 90}, + [911] = {.lex_state = 92}, + [912] = {.lex_state = 90}, + [913] = {.lex_state = 90}, + [914] = {.lex_state = 90}, + [915] = {.lex_state = 90}, + [916] = {.lex_state = 90}, + [917] = {.lex_state = 90}, + [918] = {.lex_state = 92}, + [919] = {.lex_state = 90}, + [920] = {.lex_state = 90}, + [921] = {.lex_state = 90}, + [922] = {.lex_state = 92}, + [923] = {.lex_state = 92}, + [924] = {.lex_state = 92}, + [925] = {.lex_state = 92}, + [926] = {.lex_state = 90}, + [927] = {.lex_state = 90}, + [928] = {.lex_state = 90}, + [929] = {.lex_state = 92}, + [930] = {.lex_state = 90}, + [931] = {.lex_state = 90}, + [932] = {.lex_state = 90}, + [933] = {.lex_state = 90}, + [934] = {.lex_state = 90}, + [935] = {.lex_state = 92}, + [936] = {.lex_state = 90}, + [937] = {.lex_state = 90}, + [938] = {.lex_state = 92}, + [939] = {.lex_state = 92}, + [940] = {.lex_state = 90}, + [941] = {.lex_state = 92}, + [942] = {.lex_state = 90}, + [943] = {.lex_state = 90}, + [944] = {.lex_state = 90}, + [945] = {.lex_state = 90}, + [946] = {.lex_state = 90}, [947] = {.lex_state = 90}, - [948] = {.lex_state = 90}, - [949] = {.lex_state = 90}, - [950] = {.lex_state = 90}, - [951] = {.lex_state = 90}, - [952] = {.lex_state = 90}, - [953] = {.lex_state = 90}, - [954] = {.lex_state = 90}, - [955] = {.lex_state = 90}, - [956] = {.lex_state = 90}, - [957] = {.lex_state = 90}, - [958] = {.lex_state = 90}, - [959] = {.lex_state = 90}, - [960] = {.lex_state = 90}, - [961] = {.lex_state = 90}, - [962] = {.lex_state = 90}, - [963] = {.lex_state = 90}, - [964] = {.lex_state = 90}, - [965] = {.lex_state = 90}, - [966] = {.lex_state = 90, .external_lex_state = 2}, - [967] = {.lex_state = 90}, - [968] = {.lex_state = 2}, - [969] = {.lex_state = 86}, - [970] = {.lex_state = 2}, - [971] = {.lex_state = 86}, - [972] = {.lex_state = 2}, - [973] = {.lex_state = 86}, - [974] = {.lex_state = 2}, - [975] = {.lex_state = 86}, - [976] = {.lex_state = 2}, - [977] = {.lex_state = 86}, - [978] = {.lex_state = 86}, - [979] = {.lex_state = 86}, - [980] = {.lex_state = 2}, - [981] = {.lex_state = 2}, - [982] = {.lex_state = 86}, - [983] = {.lex_state = 86}, - [984] = {.lex_state = 86}, - [985] = {.lex_state = 86}, - [986] = {.lex_state = 2}, - [987] = {.lex_state = 86}, - [988] = {.lex_state = 2}, - [989] = {.lex_state = 2}, - [990] = {.lex_state = 2}, - [991] = {.lex_state = 2}, - [992] = {.lex_state = 86}, - [993] = {.lex_state = 90}, - [994] = {.lex_state = 90}, - [995] = {.lex_state = 90}, - [996] = {.lex_state = 86}, - [997] = {.lex_state = 86}, - [998] = {.lex_state = 86}, - [999] = {.lex_state = 90}, - [1000] = {.lex_state = 90}, - [1001] = {.lex_state = 86}, - [1002] = {.lex_state = 2}, - [1003] = {.lex_state = 86}, + [948] = {.lex_state = 92}, + [949] = {.lex_state = 92}, + [950] = {.lex_state = 92}, + [951] = {.lex_state = 88}, + [952] = {.lex_state = 88}, + [953] = {.lex_state = 88}, + [954] = {.lex_state = 88}, + [955] = {.lex_state = 88}, + [956] = {.lex_state = 88}, + [957] = {.lex_state = 88}, + [958] = {.lex_state = 88}, + [959] = {.lex_state = 88}, + [960] = {.lex_state = 88}, + [961] = {.lex_state = 88}, + [962] = {.lex_state = 88}, + [963] = {.lex_state = 91}, + [964] = {.lex_state = 91}, + [965] = {.lex_state = 88}, + [966] = {.lex_state = 88}, + [967] = {.lex_state = 91}, + [968] = {.lex_state = 91}, + [969] = {.lex_state = 88}, + [970] = {.lex_state = 88}, + [971] = {.lex_state = 88}, + [972] = {.lex_state = 88}, + [973] = {.lex_state = 88}, + [974] = {.lex_state = 88}, + [975] = {.lex_state = 88}, + [976] = {.lex_state = 88}, + [977] = {.lex_state = 88}, + [978] = {.lex_state = 88}, + [979] = {.lex_state = 88}, + [980] = {.lex_state = 88}, + [981] = {.lex_state = 88}, + [982] = {.lex_state = 88}, + [983] = {.lex_state = 88}, + [984] = {.lex_state = 91}, + [985] = {.lex_state = 91}, + [986] = {.lex_state = 88}, + [987] = {.lex_state = 88}, + [988] = {.lex_state = 88}, + [989] = {.lex_state = 91}, + [990] = {.lex_state = 91}, + [991] = {.lex_state = 91}, + [992] = {.lex_state = 91}, + [993] = {.lex_state = 91}, + [994] = {.lex_state = 91}, + [995] = {.lex_state = 91}, + [996] = {.lex_state = 91}, + [997] = {.lex_state = 91}, + [998] = {.lex_state = 91}, + [999] = {.lex_state = 91}, + [1000] = {.lex_state = 91}, + [1001] = {.lex_state = 91}, + [1002] = {.lex_state = 91, .external_lex_state = 2}, + [1003] = {.lex_state = 91}, [1004] = {.lex_state = 2}, - [1005] = {.lex_state = 2}, - [1006] = {.lex_state = 2}, - [1007] = {.lex_state = 86}, - [1008] = {.lex_state = 90}, - [1009] = {.lex_state = 2}, - [1010] = {.lex_state = 86}, - [1011] = {.lex_state = 86}, - [1012] = {.lex_state = 2}, - [1013] = {.lex_state = 2}, - [1014] = {.lex_state = 2}, - [1015] = {.lex_state = 86}, - [1016] = {.lex_state = 2}, - [1017] = {.lex_state = 2}, - [1018] = {.lex_state = 92}, - [1019] = {.lex_state = 92}, - [1020] = {.lex_state = 92}, - [1021] = {.lex_state = 92}, - [1022] = {.lex_state = 7}, - [1023] = {.lex_state = 7}, + [1005] = {.lex_state = 87}, + [1006] = {.lex_state = 87}, + [1007] = {.lex_state = 2}, + [1008] = {.lex_state = 2}, + [1009] = {.lex_state = 87}, + [1010] = {.lex_state = 2}, + [1011] = {.lex_state = 87}, + [1012] = {.lex_state = 87}, + [1013] = {.lex_state = 87}, + [1014] = {.lex_state = 87}, + [1015] = {.lex_state = 87}, + [1016] = {.lex_state = 87}, + [1017] = {.lex_state = 87}, + [1018] = {.lex_state = 2}, + [1019] = {.lex_state = 2}, + [1020] = {.lex_state = 2}, + [1021] = {.lex_state = 87}, + [1022] = {.lex_state = 87}, + [1023] = {.lex_state = 2}, [1024] = {.lex_state = 2}, [1025] = {.lex_state = 2}, - [1026] = {.lex_state = 86}, - [1027] = {.lex_state = 9}, - [1028] = {.lex_state = 86}, - [1029] = {.lex_state = 90}, + [1026] = {.lex_state = 2}, + [1027] = {.lex_state = 2}, + [1028] = {.lex_state = 2}, + [1029] = {.lex_state = 87}, [1030] = {.lex_state = 2}, - [1031] = {.lex_state = 86}, - [1032] = {.lex_state = 9}, - [1033] = {.lex_state = 92}, - [1034] = {.lex_state = 86}, - [1035] = {.lex_state = 92}, - [1036] = {.lex_state = 90}, - [1037] = {.lex_state = 86}, + [1031] = {.lex_state = 87}, + [1032] = {.lex_state = 91}, + [1033] = {.lex_state = 87}, + [1034] = {.lex_state = 91}, + [1035] = {.lex_state = 87}, + [1036] = {.lex_state = 91}, + [1037] = {.lex_state = 2}, [1038] = {.lex_state = 2}, - [1039] = {.lex_state = 2}, - [1040] = {.lex_state = 2}, - [1041] = {.lex_state = 86}, - [1042] = {.lex_state = 86}, - [1043] = {.lex_state = 86}, - [1044] = {.lex_state = 86}, - [1045] = {.lex_state = 92}, - [1046] = {.lex_state = 90}, - [1047] = {.lex_state = 90}, - [1048] = {.lex_state = 90}, - [1049] = {.lex_state = 92}, + [1039] = {.lex_state = 91}, + [1040] = {.lex_state = 87}, + [1041] = {.lex_state = 2}, + [1042] = {.lex_state = 2}, + [1043] = {.lex_state = 87}, + [1044] = {.lex_state = 2}, + [1045] = {.lex_state = 2}, + [1046] = {.lex_state = 2}, + [1047] = {.lex_state = 87}, + [1048] = {.lex_state = 91}, + [1049] = {.lex_state = 87}, [1050] = {.lex_state = 2}, - [1051] = {.lex_state = 86}, - [1052] = {.lex_state = 92}, - [1053] = {.lex_state = 90}, - [1054] = {.lex_state = 2}, - [1055] = {.lex_state = 92}, - [1056] = {.lex_state = 90}, + [1051] = {.lex_state = 87}, + [1052] = {.lex_state = 91}, + [1053] = {.lex_state = 87}, + [1054] = {.lex_state = 93}, + [1055] = {.lex_state = 93}, + [1056] = {.lex_state = 93}, [1057] = {.lex_state = 2}, - [1058] = {.lex_state = 86}, - [1059] = {.lex_state = 92}, - [1060] = {.lex_state = 90}, - [1061] = {.lex_state = 86}, - [1062] = {.lex_state = 90}, - [1063] = {.lex_state = 92}, - [1064] = {.lex_state = 90}, - [1065] = {.lex_state = 90}, - [1066] = {.lex_state = 2}, - [1067] = {.lex_state = 90}, - [1068] = {.lex_state = 90}, - [1069] = {.lex_state = 90}, - [1070] = {.lex_state = 90}, - [1071] = {.lex_state = 90}, - [1072] = {.lex_state = 90}, - [1073] = {.lex_state = 90}, - [1074] = {.lex_state = 90}, - [1075] = {.lex_state = 90}, - [1076] = {.lex_state = 90}, - [1077] = {.lex_state = 90}, - [1078] = {.lex_state = 90}, - [1079] = {.lex_state = 2}, - [1080] = {.lex_state = 86}, - [1081] = {.lex_state = 90}, - [1082] = {.lex_state = 90}, - [1083] = {.lex_state = 2}, - [1084] = {.lex_state = 90}, - [1085] = {.lex_state = 86}, - [1086] = {.lex_state = 90}, - [1087] = {.lex_state = 90}, - [1088] = {.lex_state = 2}, - [1089] = {.lex_state = 90}, - [1090] = {.lex_state = 2}, - [1091] = {.lex_state = 86}, - [1092] = {.lex_state = 90}, - [1093] = {.lex_state = 90}, - [1094] = {.lex_state = 90}, - [1095] = {.lex_state = 90}, - [1096] = {.lex_state = 90}, - [1097] = {.lex_state = 90}, - [1098] = {.lex_state = 86}, - [1099] = {.lex_state = 90}, - [1100] = {.lex_state = 90}, - [1101] = {.lex_state = 90}, - [1102] = {.lex_state = 90}, - [1103] = {.lex_state = 90}, - [1104] = {.lex_state = 2}, - [1105] = {.lex_state = 90}, - [1106] = {.lex_state = 2}, - [1107] = {.lex_state = 90}, - [1108] = {.lex_state = 86}, - [1109] = {.lex_state = 90}, - [1110] = {.lex_state = 90}, - [1111] = {.lex_state = 9}, - [1112] = {.lex_state = 86}, - [1113] = {.lex_state = 90}, - [1114] = {.lex_state = 86}, - [1115] = {.lex_state = 90}, - [1116] = {.lex_state = 90}, - [1117] = {.lex_state = 90}, - [1118] = {.lex_state = 86}, - [1119] = {.lex_state = 86}, - [1120] = {.lex_state = 90}, - [1121] = {.lex_state = 90}, - [1122] = {.lex_state = 86}, - [1123] = {.lex_state = 2}, - [1124] = {.lex_state = 86}, - [1125] = {.lex_state = 7}, - [1126] = {.lex_state = 90}, - [1127] = {.lex_state = 90}, - [1128] = {.lex_state = 86}, - [1129] = {.lex_state = 86}, - [1130] = {.lex_state = 90}, - [1131] = {.lex_state = 86}, - [1132] = {.lex_state = 90}, - [1133] = {.lex_state = 90}, - [1134] = {.lex_state = 90}, - [1135] = {.lex_state = 90}, - [1136] = {.lex_state = 90}, - [1137] = {.lex_state = 90}, - [1138] = {.lex_state = 7}, - [1139] = {.lex_state = 90}, - [1140] = {.lex_state = 90}, - [1141] = {.lex_state = 90}, - [1142] = {.lex_state = 90}, - [1143] = {.lex_state = 90}, - [1144] = {.lex_state = 90}, - [1145] = {.lex_state = 90}, - [1146] = {.lex_state = 86}, - [1147] = {.lex_state = 90}, - [1148] = {.lex_state = 90}, - [1149] = {.lex_state = 86}, - [1150] = {.lex_state = 90}, - [1151] = {.lex_state = 86}, - [1152] = {.lex_state = 90}, - [1153] = {.lex_state = 90}, - [1154] = {.lex_state = 86}, - [1155] = {.lex_state = 86}, - [1156] = {.lex_state = 90}, - [1157] = {.lex_state = 86}, - [1158] = {.lex_state = 86}, - [1159] = {.lex_state = 90}, - [1160] = {.lex_state = 86}, - [1161] = {.lex_state = 90}, - [1162] = {.lex_state = 90}, - [1163] = {.lex_state = 90}, - [1164] = {.lex_state = 86}, - [1165] = {.lex_state = 86}, - [1166] = {.lex_state = 86}, - [1167] = {.lex_state = 2}, - [1168] = {.lex_state = 86}, - [1169] = {.lex_state = 90}, - [1170] = {.lex_state = 86}, - [1171] = {.lex_state = 90}, - [1172] = {.lex_state = 90}, - [1173] = {.lex_state = 90}, - [1174] = {.lex_state = 90}, - [1175] = {.lex_state = 86}, - [1176] = {.lex_state = 86}, - [1177] = {.lex_state = 90}, - [1178] = {.lex_state = 9}, - [1179] = {.lex_state = 9}, - [1180] = {.lex_state = 86}, - [1181] = {.lex_state = 2}, - [1182] = {.lex_state = 7}, - [1183] = {.lex_state = 9}, - [1184] = {.lex_state = 2}, - [1185] = {.lex_state = 86}, - [1186] = {.lex_state = 7}, - [1187] = {.lex_state = 9}, - [1188] = {.lex_state = 7}, - [1189] = {.lex_state = 86}, - [1190] = {.lex_state = 90}, - [1191] = {.lex_state = 2}, - [1192] = {.lex_state = 90}, - [1193] = {.lex_state = 90}, - [1194] = {.lex_state = 86}, - [1195] = {.lex_state = 2}, - [1196] = {.lex_state = 86}, - [1197] = {.lex_state = 9}, - [1198] = {.lex_state = 90}, - [1199] = {.lex_state = 86}, - [1200] = {.lex_state = 90}, - [1201] = {.lex_state = 90}, - [1202] = {.lex_state = 86}, - [1203] = {.lex_state = 90}, - [1204] = {.lex_state = 90}, - [1205] = {.lex_state = 90}, - [1206] = {.lex_state = 90}, - [1207] = {.lex_state = 90}, - [1208] = {.lex_state = 90}, - [1209] = {.lex_state = 2}, - [1210] = {.lex_state = 2}, - [1211] = {.lex_state = 2}, - [1212] = {.lex_state = 86}, - [1213] = {.lex_state = 90}, - [1214] = {.lex_state = 90}, - [1215] = {.lex_state = 7}, - [1216] = {.lex_state = 90}, - [1217] = {.lex_state = 2}, - [1218] = {.lex_state = 90}, - [1219] = {.lex_state = 86}, + [1058] = {.lex_state = 9}, + [1059] = {.lex_state = 2}, + [1060] = {.lex_state = 91}, + [1061] = {.lex_state = 87}, + [1062] = {.lex_state = 87}, + [1063] = {.lex_state = 87}, + [1064] = {.lex_state = 7}, + [1065] = {.lex_state = 9}, + [1066] = {.lex_state = 7}, + [1067] = {.lex_state = 93}, + [1068] = {.lex_state = 2}, + [1069] = {.lex_state = 87}, + [1070] = {.lex_state = 87}, + [1071] = {.lex_state = 2}, + [1072] = {.lex_state = 91}, + [1073] = {.lex_state = 87}, + [1074] = {.lex_state = 93}, + [1075] = {.lex_state = 2}, + [1076] = {.lex_state = 93}, + [1077] = {.lex_state = 87}, + [1078] = {.lex_state = 2}, + [1079] = {.lex_state = 91}, + [1080] = {.lex_state = 91}, + [1081] = {.lex_state = 91}, + [1082] = {.lex_state = 91}, + [1083] = {.lex_state = 91}, + [1084] = {.lex_state = 91}, + [1085] = {.lex_state = 91}, + [1086] = {.lex_state = 87}, + [1087] = {.lex_state = 91}, + [1088] = {.lex_state = 91}, + [1089] = {.lex_state = 91}, + [1090] = {.lex_state = 91}, + [1091] = {.lex_state = 91}, + [1092] = {.lex_state = 91}, + [1093] = {.lex_state = 87}, + [1094] = {.lex_state = 91}, + [1095] = {.lex_state = 91}, + [1096] = {.lex_state = 91}, + [1097] = {.lex_state = 91}, + [1098] = {.lex_state = 91}, + [1099] = {.lex_state = 91}, + [1100] = {.lex_state = 91}, + [1101] = {.lex_state = 2}, + [1102] = {.lex_state = 91}, + [1103] = {.lex_state = 91}, + [1104] = {.lex_state = 87}, + [1105] = {.lex_state = 91}, + [1106] = {.lex_state = 91}, + [1107] = {.lex_state = 87}, + [1108] = {.lex_state = 93}, + [1109] = {.lex_state = 91}, + [1110] = {.lex_state = 93}, + [1111] = {.lex_state = 91}, + [1112] = {.lex_state = 2}, + [1113] = {.lex_state = 93}, + [1114] = {.lex_state = 93}, + [1115] = {.lex_state = 2}, + [1116] = {.lex_state = 2}, + [1117] = {.lex_state = 91}, + [1118] = {.lex_state = 91}, + [1119] = {.lex_state = 87}, + [1120] = {.lex_state = 91}, + [1121] = {.lex_state = 93}, + [1122] = {.lex_state = 91}, + [1123] = {.lex_state = 93}, + [1124] = {.lex_state = 91}, + [1125] = {.lex_state = 87}, + [1126] = {.lex_state = 91}, + [1127] = {.lex_state = 91}, + [1128] = {.lex_state = 87}, + [1129] = {.lex_state = 2}, + [1130] = {.lex_state = 2}, + [1131] = {.lex_state = 2}, + [1132] = {.lex_state = 87}, + [1133] = {.lex_state = 91}, + [1134] = {.lex_state = 91}, + [1135] = {.lex_state = 87}, + [1136] = {.lex_state = 2}, + [1137] = {.lex_state = 91}, + [1138] = {.lex_state = 91}, + [1139] = {.lex_state = 91}, + [1140] = {.lex_state = 87}, + [1141] = {.lex_state = 91}, + [1142] = {.lex_state = 9}, + [1143] = {.lex_state = 91}, + [1144] = {.lex_state = 91}, + [1145] = {.lex_state = 91}, + [1146] = {.lex_state = 2}, + [1147] = {.lex_state = 91}, + [1148] = {.lex_state = 91}, + [1149] = {.lex_state = 87}, + [1150] = {.lex_state = 91}, + [1151] = {.lex_state = 9}, + [1152] = {.lex_state = 91}, + [1153] = {.lex_state = 91}, + [1154] = {.lex_state = 2}, + [1155] = {.lex_state = 87}, + [1156] = {.lex_state = 2}, + [1157] = {.lex_state = 87}, + [1158] = {.lex_state = 91}, + [1159] = {.lex_state = 91}, + [1160] = {.lex_state = 7}, + [1161] = {.lex_state = 91}, + [1162] = {.lex_state = 91}, + [1163] = {.lex_state = 91}, + [1164] = {.lex_state = 87}, + [1165] = {.lex_state = 91}, + [1166] = {.lex_state = 87}, + [1167] = {.lex_state = 87}, + [1168] = {.lex_state = 91}, + [1169] = {.lex_state = 2}, + [1170] = {.lex_state = 91}, + [1171] = {.lex_state = 91}, + [1172] = {.lex_state = 87}, + [1173] = {.lex_state = 87}, + [1174] = {.lex_state = 91}, + [1175] = {.lex_state = 91}, + [1176] = {.lex_state = 91}, + [1177] = {.lex_state = 87}, + [1178] = {.lex_state = 91}, + [1179] = {.lex_state = 87}, + [1180] = {.lex_state = 91}, + [1181] = {.lex_state = 87}, + [1182] = {.lex_state = 91}, + [1183] = {.lex_state = 87}, + [1184] = {.lex_state = 91}, + [1185] = {.lex_state = 91}, + [1186] = {.lex_state = 87}, + [1187] = {.lex_state = 87}, + [1188] = {.lex_state = 87}, + [1189] = {.lex_state = 87}, + [1190] = {.lex_state = 87}, + [1191] = {.lex_state = 7}, + [1192] = {.lex_state = 91}, + [1193] = {.lex_state = 91}, + [1194] = {.lex_state = 87}, + [1195] = {.lex_state = 91}, + [1196] = {.lex_state = 91}, + [1197] = {.lex_state = 91}, + [1198] = {.lex_state = 87}, + [1199] = {.lex_state = 91}, + [1200] = {.lex_state = 87}, + [1201] = {.lex_state = 91}, + [1202] = {.lex_state = 87}, + [1203] = {.lex_state = 91}, + [1204] = {.lex_state = 91}, + [1205] = {.lex_state = 91}, + [1206] = {.lex_state = 87}, + [1207] = {.lex_state = 87}, + [1208] = {.lex_state = 91}, + [1209] = {.lex_state = 91}, + [1210] = {.lex_state = 91}, + [1211] = {.lex_state = 91}, + [1212] = {.lex_state = 87}, + [1213] = {.lex_state = 91}, + [1214] = {.lex_state = 91}, + [1215] = {.lex_state = 87}, + [1216] = {.lex_state = 87}, + [1217] = {.lex_state = 87}, + [1218] = {.lex_state = 91}, + [1219] = {.lex_state = 9}, [1220] = {.lex_state = 2}, [1221] = {.lex_state = 2}, - [1222] = {.lex_state = 2}, - [1223] = {.lex_state = 90}, - [1224] = {.lex_state = 90}, - [1225] = {.lex_state = 86}, - [1226] = {.lex_state = 90}, - [1227] = {.lex_state = 90}, - [1228] = {.lex_state = 90}, - [1229] = {.lex_state = 90}, - [1230] = {.lex_state = 86}, - [1231] = {.lex_state = 90}, - [1232] = {.lex_state = 86}, - [1233] = {.lex_state = 86}, - [1234] = {.lex_state = 2}, - [1235] = {.lex_state = 2}, - [1236] = {.lex_state = 2}, - [1237] = {.lex_state = 2}, - [1238] = {.lex_state = 2}, + [1222] = {.lex_state = 9}, + [1223] = {.lex_state = 7}, + [1224] = {.lex_state = 7}, + [1225] = {.lex_state = 9}, + [1226] = {.lex_state = 7}, + [1227] = {.lex_state = 91}, + [1228] = {.lex_state = 91}, + [1229] = {.lex_state = 91}, + [1230] = {.lex_state = 87}, + [1231] = {.lex_state = 91}, + [1232] = {.lex_state = 91}, + [1233] = {.lex_state = 91}, + [1234] = {.lex_state = 91}, + [1235] = {.lex_state = 91}, + [1236] = {.lex_state = 91}, + [1237] = {.lex_state = 87}, + [1238] = {.lex_state = 87}, [1239] = {.lex_state = 2}, - [1240] = {.lex_state = 2}, - [1241] = {.lex_state = 86}, - [1242] = {.lex_state = 86}, - [1243] = {.lex_state = 86}, - [1244] = {.lex_state = 2}, - [1245] = {.lex_state = 86}, - [1246] = {.lex_state = 2}, - [1247] = {.lex_state = 86}, - [1248] = {.lex_state = 86}, - [1249] = {.lex_state = 86}, - [1250] = {.lex_state = 2}, - [1251] = {.lex_state = 2}, - [1252] = {.lex_state = 2}, - [1253] = {.lex_state = 2}, - [1254] = {.lex_state = 86}, - [1255] = {.lex_state = 86}, - [1256] = {.lex_state = 2}, - [1257] = {.lex_state = 2}, + [1240] = {.lex_state = 87}, + [1241] = {.lex_state = 91}, + [1242] = {.lex_state = 91}, + [1243] = {.lex_state = 91}, + [1244] = {.lex_state = 91}, + [1245] = {.lex_state = 91}, + [1246] = {.lex_state = 91}, + [1247] = {.lex_state = 87}, + [1248] = {.lex_state = 91}, + [1249] = {.lex_state = 91}, + [1250] = {.lex_state = 91}, + [1251] = {.lex_state = 91}, + [1252] = {.lex_state = 91}, + [1253] = {.lex_state = 9}, + [1254] = {.lex_state = 87}, + [1255] = {.lex_state = 2}, + [1256] = {.lex_state = 87}, + [1257] = {.lex_state = 87}, [1258] = {.lex_state = 2}, - [1259] = {.lex_state = 86}, - [1260] = {.lex_state = 86}, + [1259] = {.lex_state = 2}, + [1260] = {.lex_state = 87}, [1261] = {.lex_state = 2}, - [1262] = {.lex_state = 86}, - [1263] = {.lex_state = 5}, - [1264] = {.lex_state = 86}, - [1265] = {.lex_state = 86}, - [1266] = {.lex_state = 86}, + [1262] = {.lex_state = 2}, + [1263] = {.lex_state = 91}, + [1264] = {.lex_state = 91}, + [1265] = {.lex_state = 7}, + [1266] = {.lex_state = 2}, [1267] = {.lex_state = 2}, [1268] = {.lex_state = 2}, [1269] = {.lex_state = 2}, [1270] = {.lex_state = 2}, - [1271] = {.lex_state = 86}, - [1272] = {.lex_state = 2}, - [1273] = {.lex_state = 90}, - [1274] = {.lex_state = 86}, + [1271] = {.lex_state = 87}, + [1272] = {.lex_state = 87}, + [1273] = {.lex_state = 2}, + [1274] = {.lex_state = 2}, [1275] = {.lex_state = 2}, - [1276] = {.lex_state = 2}, + [1276] = {.lex_state = 87}, [1277] = {.lex_state = 2}, - [1278] = {.lex_state = 88}, + [1278] = {.lex_state = 2}, [1279] = {.lex_state = 2}, - [1280] = {.lex_state = 86}, - [1281] = {.lex_state = 86}, - [1282] = {.lex_state = 2}, - [1283] = {.lex_state = 86}, - [1284] = {.lex_state = 2}, - [1285] = {.lex_state = 86}, - [1286] = {.lex_state = 86}, - [1287] = {.lex_state = 2}, - [1288] = {.lex_state = 2}, - [1289] = {.lex_state = 2}, - [1290] = {.lex_state = 86}, - [1291] = {.lex_state = 86}, - [1292] = {.lex_state = 2}, - [1293] = {.lex_state = 86}, - [1294] = {.lex_state = 86}, - [1295] = {.lex_state = 86}, - [1296] = {.lex_state = 86}, - [1297] = {.lex_state = 86}, - [1298] = {.lex_state = 86}, - [1299] = {.lex_state = 86}, - [1300] = {.lex_state = 86}, - [1301] = {.lex_state = 86}, - [1302] = {.lex_state = 86}, + [1280] = {.lex_state = 2}, + [1281] = {.lex_state = 2}, + [1282] = {.lex_state = 87}, + [1283] = {.lex_state = 87}, + [1284] = {.lex_state = 87}, + [1285] = {.lex_state = 87}, + [1286] = {.lex_state = 87}, + [1287] = {.lex_state = 87}, + [1288] = {.lex_state = 87}, + [1289] = {.lex_state = 87}, + [1290] = {.lex_state = 87}, + [1291] = {.lex_state = 2}, + [1292] = {.lex_state = 87}, + [1293] = {.lex_state = 2}, + [1294] = {.lex_state = 2}, + [1295] = {.lex_state = 2}, + [1296] = {.lex_state = 2}, + [1297] = {.lex_state = 2}, + [1298] = {.lex_state = 2}, + [1299] = {.lex_state = 2}, + [1300] = {.lex_state = 2}, + [1301] = {.lex_state = 87}, + [1302] = {.lex_state = 87}, [1303] = {.lex_state = 2}, - [1304] = {.lex_state = 86}, - [1305] = {.lex_state = 2}, + [1304] = {.lex_state = 87}, + [1305] = {.lex_state = 87}, [1306] = {.lex_state = 2}, [1307] = {.lex_state = 2}, - [1308] = {.lex_state = 86}, - [1309] = {.lex_state = 2}, - [1310] = {.lex_state = 2}, - [1311] = {.lex_state = 2}, - [1312] = {.lex_state = 86}, - [1313] = {.lex_state = 86}, + [1308] = {.lex_state = 2}, + [1309] = {.lex_state = 5}, + [1310] = {.lex_state = 87}, + [1311] = {.lex_state = 87}, + [1312] = {.lex_state = 91}, + [1313] = {.lex_state = 89}, [1314] = {.lex_state = 2}, - [1315] = {.lex_state = 2}, - [1316] = {.lex_state = 2}, - [1317] = {.lex_state = 2}, + [1315] = {.lex_state = 87}, + [1316] = {.lex_state = 87}, + [1317] = {.lex_state = 87}, [1318] = {.lex_state = 2}, - [1319] = {.lex_state = 86}, + [1319] = {.lex_state = 87}, [1320] = {.lex_state = 2}, - [1321] = {.lex_state = 86}, + [1321] = {.lex_state = 87}, [1322] = {.lex_state = 2}, - [1323] = {.lex_state = 2}, - [1324] = {.lex_state = 86}, - [1325] = {.lex_state = 2}, - [1326] = {.lex_state = 2}, + [1323] = {.lex_state = 87}, + [1324] = {.lex_state = 87}, + [1325] = {.lex_state = 87}, + [1326] = {.lex_state = 87}, [1327] = {.lex_state = 2}, - [1328] = {.lex_state = 2}, + [1328] = {.lex_state = 87}, [1329] = {.lex_state = 2}, - [1330] = {.lex_state = 86}, - [1331] = {.lex_state = 2}, - [1332] = {.lex_state = 2}, - [1333] = {.lex_state = 86}, - [1334] = {.lex_state = 86}, - [1335] = {.lex_state = 2}, - [1336] = {.lex_state = 86}, + [1330] = {.lex_state = 2}, + [1331] = {.lex_state = 87}, + [1332] = {.lex_state = 87}, + [1333] = {.lex_state = 2}, + [1334] = {.lex_state = 2}, + [1335] = {.lex_state = 87}, + [1336] = {.lex_state = 2}, [1337] = {.lex_state = 2}, [1338] = {.lex_state = 2}, - [1339] = {.lex_state = 86}, - [1340] = {.lex_state = 86}, - [1341] = {.lex_state = 86}, - [1342] = {.lex_state = 90}, - [1343] = {.lex_state = 86}, + [1339] = {.lex_state = 2}, + [1340] = {.lex_state = 2}, + [1341] = {.lex_state = 87}, + [1342] = {.lex_state = 2}, + [1343] = {.lex_state = 2}, [1344] = {.lex_state = 2}, [1345] = {.lex_state = 2}, [1346] = {.lex_state = 2}, [1347] = {.lex_state = 2}, - [1348] = {.lex_state = 86}, + [1348] = {.lex_state = 2}, [1349] = {.lex_state = 2}, - [1350] = {.lex_state = 2}, - [1351] = {.lex_state = 2}, + [1350] = {.lex_state = 87}, + [1351] = {.lex_state = 87}, [1352] = {.lex_state = 2}, [1353] = {.lex_state = 2}, [1354] = {.lex_state = 2}, [1355] = {.lex_state = 2}, - [1356] = {.lex_state = 90}, - [1357] = {.lex_state = 2}, + [1356] = {.lex_state = 87}, + [1357] = {.lex_state = 87}, [1358] = {.lex_state = 2}, - [1359] = {.lex_state = 2}, + [1359] = {.lex_state = 87}, [1360] = {.lex_state = 2}, [1361] = {.lex_state = 2}, - [1362] = {.lex_state = 2}, - [1363] = {.lex_state = 86}, - [1364] = {.lex_state = 2}, + [1362] = {.lex_state = 87}, + [1363] = {.lex_state = 2}, + [1364] = {.lex_state = 87}, [1365] = {.lex_state = 2}, [1366] = {.lex_state = 2}, - [1367] = {.lex_state = 86}, + [1367] = {.lex_state = 87}, [1368] = {.lex_state = 2}, [1369] = {.lex_state = 2}, - [1370] = {.lex_state = 86}, + [1370] = {.lex_state = 2}, [1371] = {.lex_state = 2}, - [1372] = {.lex_state = 86}, - [1373] = {.lex_state = 86}, + [1372] = {.lex_state = 87}, + [1373] = {.lex_state = 87}, [1374] = {.lex_state = 2}, - [1375] = {.lex_state = 86}, - [1376] = {.lex_state = 86}, - [1377] = {.lex_state = 86}, - [1378] = {.lex_state = 2}, - [1379] = {.lex_state = 86}, - [1380] = {.lex_state = 86}, + [1375] = {.lex_state = 87}, + [1376] = {.lex_state = 87}, + [1377] = {.lex_state = 87}, + [1378] = {.lex_state = 87}, + [1379] = {.lex_state = 87}, + [1380] = {.lex_state = 87}, [1381] = {.lex_state = 2}, [1382] = {.lex_state = 2}, - [1383] = {.lex_state = 86}, - [1384] = {.lex_state = 86}, - [1385] = {.lex_state = 86}, + [1383] = {.lex_state = 87}, + [1384] = {.lex_state = 87}, + [1385] = {.lex_state = 2}, [1386] = {.lex_state = 2}, - [1387] = {.lex_state = 86}, + [1387] = {.lex_state = 87}, [1388] = {.lex_state = 2}, - [1389] = {.lex_state = 90}, - [1390] = {.lex_state = 2}, + [1389] = {.lex_state = 2}, + [1390] = {.lex_state = 87}, [1391] = {.lex_state = 2}, [1392] = {.lex_state = 2}, - [1393] = {.lex_state = 2}, - [1394] = {.lex_state = 86}, - [1395] = {.lex_state = 86}, - [1396] = {.lex_state = 86}, - [1397] = {.lex_state = 2}, - [1398] = {.lex_state = 86}, - [1399] = {.lex_state = 86}, - [1400] = {.lex_state = 86}, - [1401] = {.lex_state = 86}, + [1393] = {.lex_state = 87}, + [1394] = {.lex_state = 87}, + [1395] = {.lex_state = 2}, + [1396] = {.lex_state = 2}, + [1397] = {.lex_state = 87}, + [1398] = {.lex_state = 87}, + [1399] = {.lex_state = 2}, + [1400] = {.lex_state = 2}, + [1401] = {.lex_state = 2}, [1402] = {.lex_state = 2}, - [1403] = {.lex_state = 2}, - [1404] = {.lex_state = 2}, - [1405] = {.lex_state = 86}, - [1406] = {.lex_state = 86}, - [1407] = {.lex_state = 86}, + [1403] = {.lex_state = 91}, + [1404] = {.lex_state = 87}, + [1405] = {.lex_state = 2}, + [1406] = {.lex_state = 87}, + [1407] = {.lex_state = 87}, [1408] = {.lex_state = 2}, - [1409] = {.lex_state = 86}, + [1409] = {.lex_state = 2}, [1410] = {.lex_state = 2}, [1411] = {.lex_state = 2}, - [1412] = {.lex_state = 2}, + [1412] = {.lex_state = 91}, [1413] = {.lex_state = 2}, - [1414] = {.lex_state = 86}, - [1415] = {.lex_state = 2}, - [1416] = {.lex_state = 2}, - [1417] = {.lex_state = 2}, + [1414] = {.lex_state = 87}, + [1415] = {.lex_state = 87}, + [1416] = {.lex_state = 87}, + [1417] = {.lex_state = 87}, [1418] = {.lex_state = 2}, - [1419] = {.lex_state = 86}, - [1420] = {.lex_state = 2}, - [1421] = {.lex_state = 86}, - [1422] = {.lex_state = 90}, + [1419] = {.lex_state = 2}, + [1420] = {.lex_state = 87}, + [1421] = {.lex_state = 2}, + [1422] = {.lex_state = 87}, [1423] = {.lex_state = 2}, - [1424] = {.lex_state = 86}, - [1425] = {.lex_state = 86}, - [1426] = {.lex_state = 86}, - [1427] = {.lex_state = 90}, - [1428] = {.lex_state = 86}, + [1424] = {.lex_state = 2}, + [1425] = {.lex_state = 2}, + [1426] = {.lex_state = 87}, + [1427] = {.lex_state = 2}, + [1428] = {.lex_state = 87}, [1429] = {.lex_state = 2}, [1430] = {.lex_state = 2}, [1431] = {.lex_state = 2}, - [1432] = {.lex_state = 2}, - [1433] = {.lex_state = 86}, - [1434] = {.lex_state = 86}, - [1435] = {.lex_state = 86}, + [1432] = {.lex_state = 87}, + [1433] = {.lex_state = 87}, + [1434] = {.lex_state = 2}, + [1435] = {.lex_state = 87}, [1436] = {.lex_state = 2}, [1437] = {.lex_state = 2}, [1438] = {.lex_state = 2}, [1439] = {.lex_state = 2}, [1440] = {.lex_state = 2}, - [1441] = {.lex_state = 86}, - [1442] = {.lex_state = 86}, - [1443] = {.lex_state = 86}, - [1444] = {.lex_state = 86}, + [1441] = {.lex_state = 87}, + [1442] = {.lex_state = 87}, + [1443] = {.lex_state = 87}, + [1444] = {.lex_state = 2}, [1445] = {.lex_state = 2}, - [1446] = {.lex_state = 2}, - [1447] = {.lex_state = 86}, - [1448] = {.lex_state = 86}, - [1449] = {.lex_state = 86}, - [1450] = {.lex_state = 86}, - [1451] = {.lex_state = 86}, - [1452] = {.lex_state = 86}, - [1453] = {.lex_state = 86}, + [1446] = {.lex_state = 87}, + [1447] = {.lex_state = 87}, + [1448] = {.lex_state = 87}, + [1449] = {.lex_state = 87}, + [1450] = {.lex_state = 2}, + [1451] = {.lex_state = 2}, + [1452] = {.lex_state = 87}, + [1453] = {.lex_state = 87}, [1454] = {.lex_state = 2}, - [1455] = {.lex_state = 86}, - [1456] = {.lex_state = 86}, - [1457] = {.lex_state = 5}, - [1458] = {.lex_state = 88}, - [1459] = {.lex_state = 90}, - [1460] = {.lex_state = 88}, - [1461] = {.lex_state = 88}, - [1462] = {.lex_state = 88}, - [1463] = {.lex_state = 88}, - [1464] = {.lex_state = 88}, - [1465] = {.lex_state = 6}, - [1466] = {.lex_state = 90}, - [1467] = {.lex_state = 5}, - [1468] = {.lex_state = 88}, - [1469] = {.lex_state = 88}, - [1470] = {.lex_state = 88}, - [1471] = {.lex_state = 5}, - [1472] = {.lex_state = 5}, - [1473] = {.lex_state = 5}, - [1474] = {.lex_state = 5}, - [1475] = {.lex_state = 5}, - [1476] = {.lex_state = 5}, - [1477] = {.lex_state = 5}, - [1478] = {.lex_state = 88}, - [1479] = {.lex_state = 5}, - [1480] = {.lex_state = 88}, - [1481] = {.lex_state = 5}, - [1482] = {.lex_state = 4}, - [1483] = {.lex_state = 7}, - [1484] = {.lex_state = 7}, - [1485] = {.lex_state = 9}, - [1486] = {.lex_state = 9}, - [1487] = {.lex_state = 7}, - [1488] = {.lex_state = 9}, - [1489] = {.lex_state = 7}, - [1490] = {.lex_state = 9}, - [1491] = {.lex_state = 5}, - [1492] = {.lex_state = 88}, - [1493] = {.lex_state = 7}, - [1494] = {.lex_state = 7}, - [1495] = {.lex_state = 7}, - [1496] = {.lex_state = 5}, - [1497] = {.lex_state = 88}, - [1498] = {.lex_state = 5}, - [1499] = {.lex_state = 7}, - [1500] = {.lex_state = 88}, - [1501] = {.lex_state = 90}, - [1502] = {.lex_state = 7}, - [1503] = {.lex_state = 9}, - [1504] = {.lex_state = 9}, - [1505] = {.lex_state = 9}, - [1506] = {.lex_state = 9}, - [1507] = {.lex_state = 9}, - [1508] = {.lex_state = 88}, - [1509] = {.lex_state = 7}, - [1510] = {.lex_state = 7}, - [1511] = {.lex_state = 86}, + [1455] = {.lex_state = 2}, + [1456] = {.lex_state = 87}, + [1457] = {.lex_state = 2}, + [1458] = {.lex_state = 87}, + [1459] = {.lex_state = 2}, + [1460] = {.lex_state = 87}, + [1461] = {.lex_state = 91}, + [1462] = {.lex_state = 87}, + [1463] = {.lex_state = 2}, + [1464] = {.lex_state = 87}, + [1465] = {.lex_state = 87}, + [1466] = {.lex_state = 2}, + [1467] = {.lex_state = 87}, + [1468] = {.lex_state = 2}, + [1469] = {.lex_state = 2}, + [1470] = {.lex_state = 2}, + [1471] = {.lex_state = 2}, + [1472] = {.lex_state = 2}, + [1473] = {.lex_state = 2}, + [1474] = {.lex_state = 2}, + [1475] = {.lex_state = 2}, + [1476] = {.lex_state = 91}, + [1477] = {.lex_state = 91}, + [1478] = {.lex_state = 2}, + [1479] = {.lex_state = 2}, + [1480] = {.lex_state = 87}, + [1481] = {.lex_state = 87}, + [1482] = {.lex_state = 2}, + [1483] = {.lex_state = 87}, + [1484] = {.lex_state = 2}, + [1485] = {.lex_state = 87}, + [1486] = {.lex_state = 87}, + [1487] = {.lex_state = 87}, + [1488] = {.lex_state = 87}, + [1489] = {.lex_state = 87}, + [1490] = {.lex_state = 87}, + [1491] = {.lex_state = 87}, + [1492] = {.lex_state = 87}, + [1493] = {.lex_state = 87}, + [1494] = {.lex_state = 87}, + [1495] = {.lex_state = 2}, + [1496] = {.lex_state = 89}, + [1497] = {.lex_state = 5}, + [1498] = {.lex_state = 89}, + [1499] = {.lex_state = 4}, + [1500] = {.lex_state = 91}, + [1501] = {.lex_state = 5}, + [1502] = {.lex_state = 5}, + [1503] = {.lex_state = 5}, + [1504] = {.lex_state = 5}, + [1505] = {.lex_state = 5}, + [1506] = {.lex_state = 87}, + [1507] = {.lex_state = 6}, + [1508] = {.lex_state = 5}, + [1509] = {.lex_state = 5}, + [1510] = {.lex_state = 5}, + [1511] = {.lex_state = 5}, [1512] = {.lex_state = 5}, - [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 9}, - [1515] = {.lex_state = 6}, - [1516] = {.lex_state = 4}, - [1517] = {.lex_state = 4}, - [1518] = {.lex_state = 6}, - [1519] = {.lex_state = 4}, - [1520] = {.lex_state = 6}, - [1521] = {.lex_state = 6}, - [1522] = {.lex_state = 4}, - [1523] = {.lex_state = 4}, - [1524] = {.lex_state = 6}, - [1525] = {.lex_state = 4}, - [1526] = {.lex_state = 4}, - [1527] = {.lex_state = 6}, - [1528] = {.lex_state = 6}, - [1529] = {.lex_state = 6}, - [1530] = {.lex_state = 4}, - [1531] = {.lex_state = 6}, - [1532] = {.lex_state = 4}, - [1533] = {.lex_state = 6}, - [1534] = {.lex_state = 6}, - [1535] = {.lex_state = 4}, - [1536] = {.lex_state = 4}, - [1537] = {.lex_state = 6}, - [1538] = {.lex_state = 6}, - [1539] = {.lex_state = 4}, - [1540] = {.lex_state = 4}, - [1541] = {.lex_state = 86}, - [1542] = {.lex_state = 5}, - [1543] = {.lex_state = 88}, - [1544] = {.lex_state = 88}, - [1545] = {.lex_state = 5}, - [1546] = {.lex_state = 88}, - [1547] = {.lex_state = 86}, - [1548] = {.lex_state = 5}, - [1549] = {.lex_state = 86}, - [1550] = {.lex_state = 88}, - [1551] = {.lex_state = 88}, - [1552] = {.lex_state = 5}, - [1553] = {.lex_state = 5}, - [1554] = {.lex_state = 5}, - [1555] = {.lex_state = 88}, - [1556] = {.lex_state = 88}, - [1557] = {.lex_state = 4}, - [1558] = {.lex_state = 4}, + [1513] = {.lex_state = 89}, + [1514] = {.lex_state = 89}, + [1515] = {.lex_state = 89}, + [1516] = {.lex_state = 89}, + [1517] = {.lex_state = 89}, + [1518] = {.lex_state = 91}, + [1519] = {.lex_state = 89}, + [1520] = {.lex_state = 89}, + [1521] = {.lex_state = 89}, + [1522] = {.lex_state = 89}, + [1523] = {.lex_state = 7}, + [1524] = {.lex_state = 5}, + [1525] = {.lex_state = 5}, + [1526] = {.lex_state = 9}, + [1527] = {.lex_state = 89}, + [1528] = {.lex_state = 91}, + [1529] = {.lex_state = 5}, + [1530] = {.lex_state = 9}, + [1531] = {.lex_state = 7}, + [1532] = {.lex_state = 7}, + [1533] = {.lex_state = 7}, + [1534] = {.lex_state = 9}, + [1535] = {.lex_state = 7}, + [1536] = {.lex_state = 9}, + [1537] = {.lex_state = 9}, + [1538] = {.lex_state = 89}, + [1539] = {.lex_state = 7}, + [1540] = {.lex_state = 7}, + [1541] = {.lex_state = 87}, + [1542] = {.lex_state = 7}, + [1543] = {.lex_state = 5}, + [1544] = {.lex_state = 9}, + [1545] = {.lex_state = 7}, + [1546] = {.lex_state = 9}, + [1547] = {.lex_state = 9}, + [1548] = {.lex_state = 7}, + [1549] = {.lex_state = 7}, + [1550] = {.lex_state = 89}, + [1551] = {.lex_state = 9}, + [1552] = {.lex_state = 9}, + [1553] = {.lex_state = 9}, + [1554] = {.lex_state = 89}, + [1555] = {.lex_state = 6}, + [1556] = {.lex_state = 4}, + [1557] = {.lex_state = 6}, + [1558] = {.lex_state = 6}, [1559] = {.lex_state = 4}, [1560] = {.lex_state = 6}, [1561] = {.lex_state = 6}, [1562] = {.lex_state = 4}, - [1563] = {.lex_state = 6}, - [1564] = {.lex_state = 4}, - [1565] = {.lex_state = 6}, - [1566] = {.lex_state = 4}, + [1563] = {.lex_state = 87}, + [1564] = {.lex_state = 6}, + [1565] = {.lex_state = 4}, + [1566] = {.lex_state = 6}, [1567] = {.lex_state = 4}, - [1568] = {.lex_state = 6}, + [1568] = {.lex_state = 4}, [1569] = {.lex_state = 4}, [1570] = {.lex_state = 4}, [1571] = {.lex_state = 6}, [1572] = {.lex_state = 6}, - [1573] = {.lex_state = 6}, + [1573] = {.lex_state = 4}, [1574] = {.lex_state = 4}, [1575] = {.lex_state = 6}, - [1576] = {.lex_state = 6}, - [1577] = {.lex_state = 13}, - [1578] = {.lex_state = 12}, - [1579] = {.lex_state = 13}, - [1580] = {.lex_state = 13}, - [1581] = {.lex_state = 12}, - [1582] = {.lex_state = 13}, - [1583] = {.lex_state = 13}, - [1584] = {.lex_state = 12}, - [1585] = {.lex_state = 12}, - [1586] = {.lex_state = 13}, - [1587] = {.lex_state = 12}, - [1588] = {.lex_state = 13}, - [1589] = {.lex_state = 13}, - [1590] = {.lex_state = 12}, - [1591] = {.lex_state = 12}, - [1592] = {.lex_state = 12}, - [1593] = {.lex_state = 12}, - [1594] = {.lex_state = 12}, - [1595] = {.lex_state = 13}, - [1596] = {.lex_state = 13}, - [1597] = {.lex_state = 4}, - [1598] = {.lex_state = 13}, - [1599] = {.lex_state = 12}, - [1600] = {.lex_state = 5}, - [1601] = {.lex_state = 88}, - [1602] = {.lex_state = 88}, - [1603] = {.lex_state = 88}, - [1604] = {.lex_state = 5}, - [1605] = {.lex_state = 88}, - [1606] = {.lex_state = 5}, - [1607] = {.lex_state = 5}, + [1576] = {.lex_state = 4}, + [1577] = {.lex_state = 4}, + [1578] = {.lex_state = 6}, + [1579] = {.lex_state = 6}, + [1580] = {.lex_state = 4}, + [1581] = {.lex_state = 6}, + [1582] = {.lex_state = 5}, + [1583] = {.lex_state = 5}, + [1584] = {.lex_state = 89}, + [1585] = {.lex_state = 87}, + [1586] = {.lex_state = 89}, + [1587] = {.lex_state = 5}, + [1588] = {.lex_state = 89}, + [1589] = {.lex_state = 87}, + [1590] = {.lex_state = 5}, + [1591] = {.lex_state = 89}, + [1592] = {.lex_state = 89}, + [1593] = {.lex_state = 5}, + [1594] = {.lex_state = 89}, + [1595] = {.lex_state = 89}, + [1596] = {.lex_state = 5}, + [1597] = {.lex_state = 6}, + [1598] = {.lex_state = 6}, + [1599] = {.lex_state = 6}, + [1600] = {.lex_state = 4}, + [1601] = {.lex_state = 4}, + [1602] = {.lex_state = 4}, + [1603] = {.lex_state = 6}, + [1604] = {.lex_state = 6}, + [1605] = {.lex_state = 6}, + [1606] = {.lex_state = 6}, + [1607] = {.lex_state = 4}, [1608] = {.lex_state = 6}, - [1609] = {.lex_state = 90}, - [1610] = {.lex_state = 5}, - [1611] = {.lex_state = 5}, + [1609] = {.lex_state = 4}, + [1610] = {.lex_state = 4}, + [1611] = {.lex_state = 4}, [1612] = {.lex_state = 4}, - [1613] = {.lex_state = 11}, - [1614] = {.lex_state = 88}, - [1615] = {.lex_state = 88}, - [1616] = {.lex_state = 88}, - [1617] = {.lex_state = 11}, - [1618] = {.lex_state = 4}, - [1619] = {.lex_state = 88}, - [1620] = {.lex_state = 4}, - [1621] = {.lex_state = 88}, - [1622] = {.lex_state = 88}, - [1623] = {.lex_state = 5}, - [1624] = {.lex_state = 4}, - [1625] = {.lex_state = 5}, - [1626] = {.lex_state = 88}, - [1627] = {.lex_state = 6}, - [1628] = {.lex_state = 88}, - [1629] = {.lex_state = 6}, - [1630] = {.lex_state = 6}, - [1631] = {.lex_state = 88}, - [1632] = {.lex_state = 5}, - [1633] = {.lex_state = 5}, - [1634] = {.lex_state = 5}, - [1635] = {.lex_state = 88}, - [1636] = {.lex_state = 4}, - [1637] = {.lex_state = 88}, + [1613] = {.lex_state = 6}, + [1614] = {.lex_state = 6}, + [1615] = {.lex_state = 4}, + [1616] = {.lex_state = 4}, + [1617] = {.lex_state = 13}, + [1618] = {.lex_state = 13}, + [1619] = {.lex_state = 12}, + [1620] = {.lex_state = 12}, + [1621] = {.lex_state = 12}, + [1622] = {.lex_state = 12}, + [1623] = {.lex_state = 12}, + [1624] = {.lex_state = 12}, + [1625] = {.lex_state = 13}, + [1626] = {.lex_state = 13}, + [1627] = {.lex_state = 12}, + [1628] = {.lex_state = 13}, + [1629] = {.lex_state = 13}, + [1630] = {.lex_state = 12}, + [1631] = {.lex_state = 12}, + [1632] = {.lex_state = 13}, + [1633] = {.lex_state = 13}, + [1634] = {.lex_state = 4}, + [1635] = {.lex_state = 12}, + [1636] = {.lex_state = 13}, + [1637] = {.lex_state = 12}, [1638] = {.lex_state = 13}, [1639] = {.lex_state = 13}, [1640] = {.lex_state = 5}, - [1641] = {.lex_state = 4}, - [1642] = {.lex_state = 4}, + [1641] = {.lex_state = 89}, + [1642] = {.lex_state = 5}, [1643] = {.lex_state = 5}, [1644] = {.lex_state = 5}, - [1645] = {.lex_state = 5}, - [1646] = {.lex_state = 5}, - [1647] = {.lex_state = 5}, - [1648] = {.lex_state = 88}, - [1649] = {.lex_state = 88}, - [1650] = {.lex_state = 88}, - [1651] = {.lex_state = 4}, - [1652] = {.lex_state = 88}, - [1653] = {.lex_state = 88}, - [1654] = {.lex_state = 88}, - [1655] = {.lex_state = 88}, - [1656] = {.lex_state = 88}, - [1657] = {.lex_state = 88}, - [1658] = {.lex_state = 88}, - [1659] = {.lex_state = 4}, - [1660] = {.lex_state = 88}, - [1661] = {.lex_state = 88}, - [1662] = {.lex_state = 88}, - [1663] = {.lex_state = 88}, - [1664] = {.lex_state = 88}, - [1665] = {.lex_state = 5}, - [1666] = {.lex_state = 5}, + [1645] = {.lex_state = 89}, + [1646] = {.lex_state = 89}, + [1647] = {.lex_state = 89}, + [1648] = {.lex_state = 4}, + [1649] = {.lex_state = 89}, + [1650] = {.lex_state = 89}, + [1651] = {.lex_state = 5}, + [1652] = {.lex_state = 5}, + [1653] = {.lex_state = 91}, + [1654] = {.lex_state = 6}, + [1655] = {.lex_state = 89}, + [1656] = {.lex_state = 5}, + [1657] = {.lex_state = 11}, + [1658] = {.lex_state = 4}, + [1659] = {.lex_state = 5}, + [1660] = {.lex_state = 5}, + [1661] = {.lex_state = 89}, + [1662] = {.lex_state = 5}, + [1663] = {.lex_state = 4}, + [1664] = {.lex_state = 89}, + [1665] = {.lex_state = 4}, + [1666] = {.lex_state = 13}, [1667] = {.lex_state = 5}, - [1668] = {.lex_state = 5}, + [1668] = {.lex_state = 89}, [1669] = {.lex_state = 5}, - [1670] = {.lex_state = 5}, - [1671] = {.lex_state = 5}, - [1672] = {.lex_state = 88}, - [1673] = {.lex_state = 5}, + [1670] = {.lex_state = 6}, + [1671] = {.lex_state = 4}, + [1672] = {.lex_state = 13}, + [1673] = {.lex_state = 4}, [1674] = {.lex_state = 5}, - [1675] = {.lex_state = 88}, - [1676] = {.lex_state = 5}, - [1677] = {.lex_state = 88}, - [1678] = {.lex_state = 88}, - [1679] = {.lex_state = 88}, - [1680] = {.lex_state = 88}, - [1681] = {.lex_state = 88}, - [1682] = {.lex_state = 6}, + [1675] = {.lex_state = 89}, + [1676] = {.lex_state = 89}, + [1677] = {.lex_state = 89}, + [1678] = {.lex_state = 89}, + [1679] = {.lex_state = 89}, + [1680] = {.lex_state = 5}, + [1681] = {.lex_state = 5}, + [1682] = {.lex_state = 4}, [1683] = {.lex_state = 6}, - [1684] = {.lex_state = 5}, + [1684] = {.lex_state = 6}, [1685] = {.lex_state = 5}, [1686] = {.lex_state = 5}, - [1687] = {.lex_state = 5}, - [1688] = {.lex_state = 5}, - [1689] = {.lex_state = 88}, - [1690] = {.lex_state = 88}, - [1691] = {.lex_state = 5}, + [1687] = {.lex_state = 4}, + [1688] = {.lex_state = 4}, + [1689] = {.lex_state = 89}, + [1690] = {.lex_state = 89}, + [1691] = {.lex_state = 89}, [1692] = {.lex_state = 5}, - [1693] = {.lex_state = 5}, + [1693] = {.lex_state = 89}, [1694] = {.lex_state = 5}, - [1695] = {.lex_state = 5}, - [1696] = {.lex_state = 88}, - [1697] = {.lex_state = 5}, - [1698] = {.lex_state = 88}, - [1699] = {.lex_state = 5}, - [1700] = {.lex_state = 5}, - [1701] = {.lex_state = 5}, - [1702] = {.lex_state = 5}, - [1703] = {.lex_state = 5}, - [1704] = {.lex_state = 88}, + [1695] = {.lex_state = 89}, + [1696] = {.lex_state = 89}, + [1697] = {.lex_state = 89}, + [1698] = {.lex_state = 89}, + [1699] = {.lex_state = 89}, + [1700] = {.lex_state = 89}, + [1701] = {.lex_state = 89}, + [1702] = {.lex_state = 89}, + [1703] = {.lex_state = 89}, + [1704] = {.lex_state = 5}, [1705] = {.lex_state = 5}, - [1706] = {.lex_state = 88}, - [1707] = {.lex_state = 88}, - [1708] = {.lex_state = 5}, - [1709] = {.lex_state = 88}, - [1710] = {.lex_state = 88}, - [1711] = {.lex_state = 88}, - [1712] = {.lex_state = 5}, - [1713] = {.lex_state = 5}, - [1714] = {.lex_state = 88}, - [1715] = {.lex_state = 5}, - [1716] = {.lex_state = 88}, - [1717] = {.lex_state = 11}, + [1706] = {.lex_state = 5}, + [1707] = {.lex_state = 5}, + [1708] = {.lex_state = 89}, + [1709] = {.lex_state = 89}, + [1710] = {.lex_state = 89}, + [1711] = {.lex_state = 89}, + [1712] = {.lex_state = 89}, + [1713] = {.lex_state = 89}, + [1714] = {.lex_state = 6}, + [1715] = {.lex_state = 89}, + [1716] = {.lex_state = 6}, + [1717] = {.lex_state = 89}, [1718] = {.lex_state = 5}, [1719] = {.lex_state = 5}, - [1720] = {.lex_state = 11}, - [1721] = {.lex_state = 11}, + [1720] = {.lex_state = 5}, + [1721] = {.lex_state = 89}, [1722] = {.lex_state = 5}, - [1723] = {.lex_state = 88}, - [1724] = {.lex_state = 91}, - [1725] = {.lex_state = 6}, + [1723] = {.lex_state = 89}, + [1724] = {.lex_state = 5}, + [1725] = {.lex_state = 5}, [1726] = {.lex_state = 5}, [1727] = {.lex_state = 5}, - [1728] = {.lex_state = 4}, - [1729] = {.lex_state = 88}, + [1728] = {.lex_state = 5}, + [1729] = {.lex_state = 5}, [1730] = {.lex_state = 5}, [1731] = {.lex_state = 5}, - [1732] = {.lex_state = 88}, - [1733] = {.lex_state = 88}, + [1732] = {.lex_state = 5}, + [1733] = {.lex_state = 5}, [1734] = {.lex_state = 5}, - [1735] = {.lex_state = 4}, - [1736] = {.lex_state = 11}, - [1737] = {.lex_state = 5}, - [1738] = {.lex_state = 6}, - [1739] = {.lex_state = 6}, - [1740] = {.lex_state = 6}, - [1741] = {.lex_state = 6}, - [1742] = {.lex_state = 88}, - [1743] = {.lex_state = 88}, - [1744] = {.lex_state = 88}, - [1745] = {.lex_state = 6}, - [1746] = {.lex_state = 5}, - [1747] = {.lex_state = 6}, - [1748] = {.lex_state = 5}, + [1735] = {.lex_state = 5}, + [1736] = {.lex_state = 89}, + [1737] = {.lex_state = 89}, + [1738] = {.lex_state = 5}, + [1739] = {.lex_state = 89}, + [1740] = {.lex_state = 5}, + [1741] = {.lex_state = 89}, + [1742] = {.lex_state = 5}, + [1743] = {.lex_state = 5}, + [1744] = {.lex_state = 89}, + [1745] = {.lex_state = 89}, + [1746] = {.lex_state = 89}, + [1747] = {.lex_state = 5}, + [1748] = {.lex_state = 89}, [1749] = {.lex_state = 5}, [1750] = {.lex_state = 5}, [1751] = {.lex_state = 5}, - [1752] = {.lex_state = 5}, - [1753] = {.lex_state = 5}, - [1754] = {.lex_state = 5}, - [1755] = {.lex_state = 5}, - [1756] = {.lex_state = 11}, - [1757] = {.lex_state = 5}, + [1752] = {.lex_state = 89}, + [1753] = {.lex_state = 89}, + [1754] = {.lex_state = 89}, + [1755] = {.lex_state = 89}, + [1756] = {.lex_state = 5}, + [1757] = {.lex_state = 89}, [1758] = {.lex_state = 5}, - [1759] = {.lex_state = 88}, - [1760] = {.lex_state = 88}, - [1761] = {.lex_state = 88}, - [1762] = {.lex_state = 88}, - [1763] = {.lex_state = 5}, - [1764] = {.lex_state = 88}, - [1765] = {.lex_state = 5}, - [1766] = {.lex_state = 5}, - [1767] = {.lex_state = 5}, + [1759] = {.lex_state = 5}, + [1760] = {.lex_state = 89}, + [1761] = {.lex_state = 89}, + [1762] = {.lex_state = 6}, + [1763] = {.lex_state = 6}, + [1764] = {.lex_state = 6}, + [1765] = {.lex_state = 89}, + [1766] = {.lex_state = 89}, + [1767] = {.lex_state = 89}, [1768] = {.lex_state = 5}, - [1769] = {.lex_state = 88}, - [1770] = {.lex_state = 11}, + [1769] = {.lex_state = 89}, + [1770] = {.lex_state = 6}, [1771] = {.lex_state = 5}, - [1772] = {.lex_state = 4}, - [1773] = {.lex_state = 5}, - [1774] = {.lex_state = 88}, - [1775] = {.lex_state = 88}, - [1776] = {.lex_state = 4}, - [1777] = {.lex_state = 88}, - [1778] = {.lex_state = 6}, + [1772] = {.lex_state = 89}, + [1773] = {.lex_state = 89}, + [1774] = {.lex_state = 5}, + [1775] = {.lex_state = 89}, + [1776] = {.lex_state = 5}, + [1777] = {.lex_state = 89}, + [1778] = {.lex_state = 89}, [1779] = {.lex_state = 5}, - [1780] = {.lex_state = 4}, + [1780] = {.lex_state = 5}, [1781] = {.lex_state = 5}, - [1782] = {.lex_state = 11}, + [1782] = {.lex_state = 5}, [1783] = {.lex_state = 5}, - [1784] = {.lex_state = 6}, + [1784] = {.lex_state = 5}, [1785] = {.lex_state = 5}, - [1786] = {.lex_state = 6}, - [1787] = {.lex_state = 6}, - [1788] = {.lex_state = 4}, + [1786] = {.lex_state = 5}, + [1787] = {.lex_state = 89}, + [1788] = {.lex_state = 89}, [1789] = {.lex_state = 5}, [1790] = {.lex_state = 5}, [1791] = {.lex_state = 5}, - [1792] = {.lex_state = 88}, - [1793] = {.lex_state = 88}, - [1794] = {.lex_state = 88}, + [1792] = {.lex_state = 5}, + [1793] = {.lex_state = 89}, + [1794] = {.lex_state = 89}, [1795] = {.lex_state = 5}, - [1796] = {.lex_state = 88}, - [1797] = {.lex_state = 88}, + [1796] = {.lex_state = 89}, + [1797] = {.lex_state = 5}, [1798] = {.lex_state = 5}, - [1799] = {.lex_state = 88}, - [1800] = {.lex_state = 4}, - [1801] = {.lex_state = 5}, - [1802] = {.lex_state = 88}, - [1803] = {.lex_state = 20}, - [1804] = {.lex_state = 4}, - [1805] = {.lex_state = 5}, - [1806] = {.lex_state = 5}, - [1807] = {.lex_state = 88}, - [1808] = {.lex_state = 88}, - [1809] = {.lex_state = 11}, - [1810] = {.lex_state = 88}, - [1811] = {.lex_state = 5}, - [1812] = {.lex_state = 88}, - [1813] = {.lex_state = 88}, + [1799] = {.lex_state = 5}, + [1800] = {.lex_state = 5}, + [1801] = {.lex_state = 89}, + [1802] = {.lex_state = 5}, + [1803] = {.lex_state = 6}, + [1804] = {.lex_state = 5}, + [1805] = {.lex_state = 89}, + [1806] = {.lex_state = 6}, + [1807] = {.lex_state = 89}, + [1808] = {.lex_state = 5}, + [1809] = {.lex_state = 5}, + [1810] = {.lex_state = 5}, + [1811] = {.lex_state = 89}, + [1812] = {.lex_state = 89}, + [1813] = {.lex_state = 89}, [1814] = {.lex_state = 5}, [1815] = {.lex_state = 5}, [1816] = {.lex_state = 5}, @@ -8038,1598 +8041,1598 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1818] = {.lex_state = 5}, [1819] = {.lex_state = 5}, [1820] = {.lex_state = 5}, - [1821] = {.lex_state = 88}, + [1821] = {.lex_state = 5}, [1822] = {.lex_state = 5}, - [1823] = {.lex_state = 5}, + [1823] = {.lex_state = 89}, [1824] = {.lex_state = 5}, [1825] = {.lex_state = 5}, - [1826] = {.lex_state = 20}, - [1827] = {.lex_state = 88}, - [1828] = {.lex_state = 88}, - [1829] = {.lex_state = 88}, - [1830] = {.lex_state = 4}, - [1831] = {.lex_state = 88}, - [1832] = {.lex_state = 88}, - [1833] = {.lex_state = 88}, - [1834] = {.lex_state = 88}, - [1835] = {.lex_state = 88}, - [1836] = {.lex_state = 88}, - [1837] = {.lex_state = 88}, - [1838] = {.lex_state = 88}, - [1839] = {.lex_state = 88}, - [1840] = {.lex_state = 88}, + [1826] = {.lex_state = 5}, + [1827] = {.lex_state = 5}, + [1828] = {.lex_state = 89}, + [1829] = {.lex_state = 5}, + [1830] = {.lex_state = 5}, + [1831] = {.lex_state = 5}, + [1832] = {.lex_state = 5}, + [1833] = {.lex_state = 11}, + [1834] = {.lex_state = 5}, + [1835] = {.lex_state = 89}, + [1836] = {.lex_state = 5}, + [1837] = {.lex_state = 5}, + [1838] = {.lex_state = 5}, + [1839] = {.lex_state = 89}, + [1840] = {.lex_state = 5}, [1841] = {.lex_state = 5}, [1842] = {.lex_state = 5}, - [1843] = {.lex_state = 5}, - [1844] = {.lex_state = 88}, + [1843] = {.lex_state = 89}, + [1844] = {.lex_state = 89}, [1845] = {.lex_state = 5}, [1846] = {.lex_state = 5}, - [1847] = {.lex_state = 88}, - [1848] = {.lex_state = 5}, - [1849] = {.lex_state = 88}, - [1850] = {.lex_state = 5}, - [1851] = {.lex_state = 88}, - [1852] = {.lex_state = 88}, - [1853] = {.lex_state = 91}, - [1854] = {.lex_state = 4}, - [1855] = {.lex_state = 88}, - [1856] = {.lex_state = 88}, - [1857] = {.lex_state = 88}, - [1858] = {.lex_state = 88}, - [1859] = {.lex_state = 88}, - [1860] = {.lex_state = 88}, - [1861] = {.lex_state = 88}, + [1847] = {.lex_state = 5}, + [1848] = {.lex_state = 89}, + [1849] = {.lex_state = 4}, + [1850] = {.lex_state = 89}, + [1851] = {.lex_state = 5}, + [1852] = {.lex_state = 89}, + [1853] = {.lex_state = 5}, + [1854] = {.lex_state = 89}, + [1855] = {.lex_state = 5}, + [1856] = {.lex_state = 5}, + [1857] = {.lex_state = 89}, + [1858] = {.lex_state = 89}, + [1859] = {.lex_state = 89}, + [1860] = {.lex_state = 89}, + [1861] = {.lex_state = 89}, [1862] = {.lex_state = 5}, - [1863] = {.lex_state = 88}, - [1864] = {.lex_state = 88}, + [1863] = {.lex_state = 89}, + [1864] = {.lex_state = 89}, [1865] = {.lex_state = 5}, - [1866] = {.lex_state = 88}, - [1867] = {.lex_state = 88}, - [1868] = {.lex_state = 88}, - [1869] = {.lex_state = 11}, - [1870] = {.lex_state = 88}, - [1871] = {.lex_state = 6}, - [1872] = {.lex_state = 88}, - [1873] = {.lex_state = 5}, + [1866] = {.lex_state = 89}, + [1867] = {.lex_state = 5}, + [1868] = {.lex_state = 4}, + [1869] = {.lex_state = 4}, + [1870] = {.lex_state = 89}, + [1871] = {.lex_state = 5}, + [1872] = {.lex_state = 5}, + [1873] = {.lex_state = 20}, [1874] = {.lex_state = 5}, - [1875] = {.lex_state = 5}, - [1876] = {.lex_state = 88}, - [1877] = {.lex_state = 88}, - [1878] = {.lex_state = 11}, - [1879] = {.lex_state = 5}, - [1880] = {.lex_state = 5}, - [1881] = {.lex_state = 11}, - [1882] = {.lex_state = 5}, - [1883] = {.lex_state = 88}, - [1884] = {.lex_state = 88}, - [1885] = {.lex_state = 88}, - [1886] = {.lex_state = 11}, - [1887] = {.lex_state = 11}, - [1888] = {.lex_state = 88}, - [1889] = {.lex_state = 88}, - [1890] = {.lex_state = 88}, - [1891] = {.lex_state = 5}, - [1892] = {.lex_state = 88}, + [1875] = {.lex_state = 6}, + [1876] = {.lex_state = 5}, + [1877] = {.lex_state = 89}, + [1878] = {.lex_state = 89}, + [1879] = {.lex_state = 92}, + [1880] = {.lex_state = 92}, + [1881] = {.lex_state = 89}, + [1882] = {.lex_state = 89}, + [1883] = {.lex_state = 6}, + [1884] = {.lex_state = 89}, + [1885] = {.lex_state = 4}, + [1886] = {.lex_state = 4}, + [1887] = {.lex_state = 5}, + [1888] = {.lex_state = 89}, + [1889] = {.lex_state = 4}, + [1890] = {.lex_state = 6}, + [1891] = {.lex_state = 6}, + [1892] = {.lex_state = 89}, [1893] = {.lex_state = 6}, - [1894] = {.lex_state = 5}, - [1895] = {.lex_state = 4}, - [1896] = {.lex_state = 5}, - [1897] = {.lex_state = 13}, - [1898] = {.lex_state = 13}, - [1899] = {.lex_state = 13}, - [1900] = {.lex_state = 13}, - [1901] = {.lex_state = 13}, + [1894] = {.lex_state = 89}, + [1895] = {.lex_state = 11}, + [1896] = {.lex_state = 89}, + [1897] = {.lex_state = 89}, + [1898] = {.lex_state = 89}, + [1899] = {.lex_state = 5}, + [1900] = {.lex_state = 6}, + [1901] = {.lex_state = 5}, [1902] = {.lex_state = 4}, - [1903] = {.lex_state = 11}, + [1903] = {.lex_state = 4}, [1904] = {.lex_state = 4}, - [1905] = {.lex_state = 5}, - [1906] = {.lex_state = 5}, - [1907] = {.lex_state = 88}, - [1908] = {.lex_state = 88}, + [1905] = {.lex_state = 4}, + [1906] = {.lex_state = 4}, + [1907] = {.lex_state = 11}, + [1908] = {.lex_state = 5}, [1909] = {.lex_state = 5}, - [1910] = {.lex_state = 11}, - [1911] = {.lex_state = 11}, - [1912] = {.lex_state = 6}, - [1913] = {.lex_state = 88}, - [1914] = {.lex_state = 5}, - [1915] = {.lex_state = 88}, - [1916] = {.lex_state = 88}, - [1917] = {.lex_state = 88}, - [1918] = {.lex_state = 88}, - [1919] = {.lex_state = 88}, - [1920] = {.lex_state = 5}, - [1921] = {.lex_state = 5}, - [1922] = {.lex_state = 5}, - [1923] = {.lex_state = 5}, - [1924] = {.lex_state = 5}, - [1925] = {.lex_state = 5}, - [1926] = {.lex_state = 4}, - [1927] = {.lex_state = 6}, - [1928] = {.lex_state = 4}, - [1929] = {.lex_state = 4}, - [1930] = {.lex_state = 4}, - [1931] = {.lex_state = 12}, - [1932] = {.lex_state = 4}, - [1933] = {.lex_state = 4}, - [1934] = {.lex_state = 6}, - [1935] = {.lex_state = 4}, - [1936] = {.lex_state = 12}, - [1937] = {.lex_state = 6}, + [1910] = {.lex_state = 89}, + [1911] = {.lex_state = 20}, + [1912] = {.lex_state = 5}, + [1913] = {.lex_state = 6}, + [1914] = {.lex_state = 89}, + [1915] = {.lex_state = 89}, + [1916] = {.lex_state = 89}, + [1917] = {.lex_state = 89}, + [1918] = {.lex_state = 89}, + [1919] = {.lex_state = 4}, + [1920] = {.lex_state = 89}, + [1921] = {.lex_state = 89}, + [1922] = {.lex_state = 13}, + [1923] = {.lex_state = 13}, + [1924] = {.lex_state = 13}, + [1925] = {.lex_state = 13}, + [1926] = {.lex_state = 13}, + [1927] = {.lex_state = 4}, + [1928] = {.lex_state = 89}, + [1929] = {.lex_state = 89}, + [1930] = {.lex_state = 89}, + [1931] = {.lex_state = 11}, + [1932] = {.lex_state = 5}, + [1933] = {.lex_state = 5}, + [1934] = {.lex_state = 89}, + [1935] = {.lex_state = 5}, + [1936] = {.lex_state = 5}, + [1937] = {.lex_state = 89}, [1938] = {.lex_state = 6}, - [1939] = {.lex_state = 12}, - [1940] = {.lex_state = 12}, - [1941] = {.lex_state = 4}, - [1942] = {.lex_state = 6}, - [1943] = {.lex_state = 4}, - [1944] = {.lex_state = 12}, - [1945] = {.lex_state = 6}, + [1939] = {.lex_state = 89}, + [1940] = {.lex_state = 5}, + [1941] = {.lex_state = 5}, + [1942] = {.lex_state = 5}, + [1943] = {.lex_state = 5}, + [1944] = {.lex_state = 5}, + [1945] = {.lex_state = 89}, [1946] = {.lex_state = 4}, - [1947] = {.lex_state = 4}, - [1948] = {.lex_state = 4}, - [1949] = {.lex_state = 4}, - [1950] = {.lex_state = 4}, - [1951] = {.lex_state = 12}, - [1952] = {.lex_state = 4}, - [1953] = {.lex_state = 4}, - [1954] = {.lex_state = 12}, - [1955] = {.lex_state = 4}, - [1956] = {.lex_state = 6}, - [1957] = {.lex_state = 6}, - [1958] = {.lex_state = 12}, - [1959] = {.lex_state = 12}, + [1947] = {.lex_state = 89}, + [1948] = {.lex_state = 89}, + [1949] = {.lex_state = 89}, + [1950] = {.lex_state = 89}, + [1951] = {.lex_state = 89}, + [1952] = {.lex_state = 89}, + [1953] = {.lex_state = 89}, + [1954] = {.lex_state = 89}, + [1955] = {.lex_state = 89}, + [1956] = {.lex_state = 89}, + [1957] = {.lex_state = 11}, + [1958] = {.lex_state = 89}, + [1959] = {.lex_state = 6}, [1960] = {.lex_state = 4}, - [1961] = {.lex_state = 4}, + [1961] = {.lex_state = 6}, [1962] = {.lex_state = 12}, - [1963] = {.lex_state = 6}, - [1964] = {.lex_state = 6}, + [1963] = {.lex_state = 12}, + [1964] = {.lex_state = 12}, [1965] = {.lex_state = 6}, [1966] = {.lex_state = 6}, [1967] = {.lex_state = 4}, - [1968] = {.lex_state = 4}, - [1969] = {.lex_state = 6}, - [1970] = {.lex_state = 4}, - [1971] = {.lex_state = 4}, + [1968] = {.lex_state = 6}, + [1969] = {.lex_state = 12}, + [1970] = {.lex_state = 12}, + [1971] = {.lex_state = 6}, [1972] = {.lex_state = 12}, - [1973] = {.lex_state = 4}, - [1974] = {.lex_state = 6}, - [1975] = {.lex_state = 6}, - [1976] = {.lex_state = 6}, - [1977] = {.lex_state = 13}, - [1978] = {.lex_state = 6}, + [1973] = {.lex_state = 6}, + [1974] = {.lex_state = 12}, + [1975] = {.lex_state = 12}, + [1976] = {.lex_state = 12}, + [1977] = {.lex_state = 12}, + [1978] = {.lex_state = 12}, [1979] = {.lex_state = 6}, [1980] = {.lex_state = 6}, - [1981] = {.lex_state = 4}, - [1982] = {.lex_state = 6}, - [1983] = {.lex_state = 4}, + [1981] = {.lex_state = 6}, + [1982] = {.lex_state = 4}, + [1983] = {.lex_state = 6}, [1984] = {.lex_state = 6}, [1985] = {.lex_state = 6}, [1986] = {.lex_state = 6}, [1987] = {.lex_state = 6}, - [1988] = {.lex_state = 4}, - [1989] = {.lex_state = 6}, + [1988] = {.lex_state = 6}, + [1989] = {.lex_state = 12}, [1990] = {.lex_state = 6}, [1991] = {.lex_state = 6}, - [1992] = {.lex_state = 12}, - [1993] = {.lex_state = 12}, + [1992] = {.lex_state = 4}, + [1993] = {.lex_state = 13}, [1994] = {.lex_state = 4}, [1995] = {.lex_state = 6}, - [1996] = {.lex_state = 6}, - [1997] = {.lex_state = 4}, + [1996] = {.lex_state = 4}, + [1997] = {.lex_state = 6}, [1998] = {.lex_state = 6}, - [1999] = {.lex_state = 4}, + [1999] = {.lex_state = 6}, [2000] = {.lex_state = 6}, [2001] = {.lex_state = 6}, - [2002] = {.lex_state = 4}, + [2002] = {.lex_state = 6}, [2003] = {.lex_state = 6}, - [2004] = {.lex_state = 6}, + [2004] = {.lex_state = 4}, [2005] = {.lex_state = 4}, [2006] = {.lex_state = 4}, - [2007] = {.lex_state = 6}, - [2008] = {.lex_state = 13}, + [2007] = {.lex_state = 13}, + [2008] = {.lex_state = 4}, [2009] = {.lex_state = 4}, - [2010] = {.lex_state = 4}, - [2011] = {.lex_state = 6}, + [2010] = {.lex_state = 6}, + [2011] = {.lex_state = 4}, [2012] = {.lex_state = 6}, - [2013] = {.lex_state = 4}, - [2014] = {.lex_state = 4}, - [2015] = {.lex_state = 6}, + [2013] = {.lex_state = 6}, + [2014] = {.lex_state = 6}, + [2015] = {.lex_state = 4}, [2016] = {.lex_state = 6}, - [2017] = {.lex_state = 13}, - [2018] = {.lex_state = 12}, + [2017] = {.lex_state = 6}, + [2018] = {.lex_state = 6}, [2019] = {.lex_state = 4}, [2020] = {.lex_state = 4}, [2021] = {.lex_state = 4}, [2022] = {.lex_state = 4}, [2023] = {.lex_state = 6}, - [2024] = {.lex_state = 12}, - [2025] = {.lex_state = 90}, + [2024] = {.lex_state = 4}, + [2025] = {.lex_state = 4}, [2026] = {.lex_state = 4}, [2027] = {.lex_state = 4}, - [2028] = {.lex_state = 6}, - [2029] = {.lex_state = 4}, - [2030] = {.lex_state = 6}, - [2031] = {.lex_state = 6}, + [2028] = {.lex_state = 4}, + [2029] = {.lex_state = 6}, + [2030] = {.lex_state = 4}, + [2031] = {.lex_state = 4}, [2032] = {.lex_state = 4}, - [2033] = {.lex_state = 6}, + [2033] = {.lex_state = 4}, [2034] = {.lex_state = 4}, - [2035] = {.lex_state = 6}, - [2036] = {.lex_state = 90}, - [2037] = {.lex_state = 13}, - [2038] = {.lex_state = 4}, - [2039] = {.lex_state = 4}, + [2035] = {.lex_state = 4}, + [2036] = {.lex_state = 4}, + [2037] = {.lex_state = 6}, + [2038] = {.lex_state = 6}, + [2039] = {.lex_state = 6}, [2040] = {.lex_state = 4}, - [2041] = {.lex_state = 6}, - [2042] = {.lex_state = 6}, + [2041] = {.lex_state = 12}, + [2042] = {.lex_state = 4}, [2043] = {.lex_state = 6}, [2044] = {.lex_state = 4}, [2045] = {.lex_state = 4}, - [2046] = {.lex_state = 6}, + [2046] = {.lex_state = 4}, [2047] = {.lex_state = 4}, [2048] = {.lex_state = 4}, - [2049] = {.lex_state = 4}, - [2050] = {.lex_state = 4}, + [2049] = {.lex_state = 6}, + [2050] = {.lex_state = 6}, [2051] = {.lex_state = 6}, [2052] = {.lex_state = 6}, - [2053] = {.lex_state = 4}, + [2053] = {.lex_state = 6}, [2054] = {.lex_state = 6}, - [2055] = {.lex_state = 4}, - [2056] = {.lex_state = 6}, + [2055] = {.lex_state = 6}, + [2056] = {.lex_state = 4}, [2057] = {.lex_state = 13}, [2058] = {.lex_state = 4}, [2059] = {.lex_state = 6}, - [2060] = {.lex_state = 13}, - [2061] = {.lex_state = 4}, - [2062] = {.lex_state = 4}, - [2063] = {.lex_state = 4}, + [2060] = {.lex_state = 6}, + [2061] = {.lex_state = 6}, + [2062] = {.lex_state = 6}, + [2063] = {.lex_state = 6}, [2064] = {.lex_state = 4}, - [2065] = {.lex_state = 4}, - [2066] = {.lex_state = 6}, - [2067] = {.lex_state = 6}, - [2068] = {.lex_state = 4}, - [2069] = {.lex_state = 4}, - [2070] = {.lex_state = 4}, - [2071] = {.lex_state = 6}, - [2072] = {.lex_state = 4}, + [2065] = {.lex_state = 6}, + [2066] = {.lex_state = 4}, + [2067] = {.lex_state = 4}, + [2068] = {.lex_state = 6}, + [2069] = {.lex_state = 13}, + [2070] = {.lex_state = 6}, + [2071] = {.lex_state = 4}, + [2072] = {.lex_state = 6}, [2073] = {.lex_state = 6}, [2074] = {.lex_state = 4}, - [2075] = {.lex_state = 4}, + [2075] = {.lex_state = 6}, [2076] = {.lex_state = 4}, - [2077] = {.lex_state = 4}, - [2078] = {.lex_state = 4}, - [2079] = {.lex_state = 6}, + [2077] = {.lex_state = 6}, + [2078] = {.lex_state = 13}, + [2079] = {.lex_state = 4}, [2080] = {.lex_state = 4}, - [2081] = {.lex_state = 6}, - [2082] = {.lex_state = 11}, - [2083] = {.lex_state = 6}, + [2081] = {.lex_state = 4}, + [2082] = {.lex_state = 12}, + [2083] = {.lex_state = 91}, [2084] = {.lex_state = 4}, [2085] = {.lex_state = 6}, - [2086] = {.lex_state = 6}, + [2086] = {.lex_state = 4}, [2087] = {.lex_state = 4}, - [2088] = {.lex_state = 6}, - [2089] = {.lex_state = 6}, - [2090] = {.lex_state = 6}, - [2091] = {.lex_state = 6}, + [2088] = {.lex_state = 4}, + [2089] = {.lex_state = 4}, + [2090] = {.lex_state = 4}, + [2091] = {.lex_state = 4}, [2092] = {.lex_state = 6}, - [2093] = {.lex_state = 6}, + [2093] = {.lex_state = 4}, [2094] = {.lex_state = 4}, - [2095] = {.lex_state = 6}, + [2095] = {.lex_state = 4}, [2096] = {.lex_state = 4}, [2097] = {.lex_state = 4}, - [2098] = {.lex_state = 4}, + [2098] = {.lex_state = 6}, [2099] = {.lex_state = 6}, [2100] = {.lex_state = 6}, - [2101] = {.lex_state = 6}, - [2102] = {.lex_state = 6}, - [2103] = {.lex_state = 6}, - [2104] = {.lex_state = 11}, - [2105] = {.lex_state = 6}, - [2106] = {.lex_state = 6}, + [2101] = {.lex_state = 4}, + [2102] = {.lex_state = 4}, + [2103] = {.lex_state = 4}, + [2104] = {.lex_state = 6}, + [2105] = {.lex_state = 4}, + [2106] = {.lex_state = 4}, [2107] = {.lex_state = 4}, - [2108] = {.lex_state = 6}, + [2108] = {.lex_state = 4}, [2109] = {.lex_state = 4}, - [2110] = {.lex_state = 6}, - [2111] = {.lex_state = 6}, + [2110] = {.lex_state = 4}, + [2111] = {.lex_state = 4}, [2112] = {.lex_state = 6}, [2113] = {.lex_state = 6}, [2114] = {.lex_state = 6}, - [2115] = {.lex_state = 6}, - [2116] = {.lex_state = 6}, + [2115] = {.lex_state = 4}, + [2116] = {.lex_state = 4}, [2117] = {.lex_state = 6}, [2118] = {.lex_state = 6}, [2119] = {.lex_state = 6}, [2120] = {.lex_state = 6}, - [2121] = {.lex_state = 6}, - [2122] = {.lex_state = 4}, + [2121] = {.lex_state = 12}, + [2122] = {.lex_state = 6}, [2123] = {.lex_state = 6}, [2124] = {.lex_state = 6}, - [2125] = {.lex_state = 4}, + [2125] = {.lex_state = 6}, [2126] = {.lex_state = 6}, [2127] = {.lex_state = 6}, - [2128] = {.lex_state = 12}, + [2128] = {.lex_state = 6}, [2129] = {.lex_state = 6}, - [2130] = {.lex_state = 6}, - [2131] = {.lex_state = 6}, + [2130] = {.lex_state = 4}, + [2131] = {.lex_state = 4}, [2132] = {.lex_state = 6}, [2133] = {.lex_state = 6}, - [2134] = {.lex_state = 6}, + [2134] = {.lex_state = 4}, [2135] = {.lex_state = 6}, - [2136] = {.lex_state = 6}, - [2137] = {.lex_state = 12}, - [2138] = {.lex_state = 4}, - [2139] = {.lex_state = 6}, - [2140] = {.lex_state = 4}, + [2136] = {.lex_state = 4}, + [2137] = {.lex_state = 6}, + [2138] = {.lex_state = 6}, + [2139] = {.lex_state = 13}, + [2140] = {.lex_state = 6}, [2141] = {.lex_state = 4}, - [2142] = {.lex_state = 4}, + [2142] = {.lex_state = 6}, [2143] = {.lex_state = 6}, [2144] = {.lex_state = 4}, [2145] = {.lex_state = 4}, - [2146] = {.lex_state = 4}, + [2146] = {.lex_state = 6}, [2147] = {.lex_state = 4}, [2148] = {.lex_state = 4}, - [2149] = {.lex_state = 4}, + [2149] = {.lex_state = 6}, [2150] = {.lex_state = 4}, [2151] = {.lex_state = 4}, - [2152] = {.lex_state = 4}, + [2152] = {.lex_state = 6}, [2153] = {.lex_state = 6}, [2154] = {.lex_state = 4}, - [2155] = {.lex_state = 4}, - [2156] = {.lex_state = 4}, + [2155] = {.lex_state = 6}, + [2156] = {.lex_state = 6}, [2157] = {.lex_state = 4}, - [2158] = {.lex_state = 4}, - [2159] = {.lex_state = 4}, + [2158] = {.lex_state = 12}, + [2159] = {.lex_state = 6}, [2160] = {.lex_state = 4}, - [2161] = {.lex_state = 90}, - [2162] = {.lex_state = 11}, - [2163] = {.lex_state = 90}, - [2164] = {.lex_state = 90}, - [2165] = {.lex_state = 12}, - [2166] = {.lex_state = 13}, - [2167] = {.lex_state = 13}, - [2168] = {.lex_state = 13}, - [2169] = {.lex_state = 13}, - [2170] = {.lex_state = 12}, - [2171] = {.lex_state = 12}, - [2172] = {.lex_state = 12}, - [2173] = {.lex_state = 88}, - [2174] = {.lex_state = 12}, - [2175] = {.lex_state = 13}, - [2176] = {.lex_state = 90}, - [2177] = {.lex_state = 13}, - [2178] = {.lex_state = 13}, - [2179] = {.lex_state = 13}, - [2180] = {.lex_state = 12}, - [2181] = {.lex_state = 12}, - [2182] = {.lex_state = 90}, - [2183] = {.lex_state = 13}, - [2184] = {.lex_state = 13}, - [2185] = {.lex_state = 12}, - [2186] = {.lex_state = 90}, - [2187] = {.lex_state = 12}, - [2188] = {.lex_state = 13}, - [2189] = {.lex_state = 13}, - [2190] = {.lex_state = 12}, - [2191] = {.lex_state = 12}, - [2192] = {.lex_state = 12}, + [2161] = {.lex_state = 6}, + [2162] = {.lex_state = 4}, + [2163] = {.lex_state = 6}, + [2164] = {.lex_state = 4}, + [2165] = {.lex_state = 4}, + [2166] = {.lex_state = 4}, + [2167] = {.lex_state = 4}, + [2168] = {.lex_state = 4}, + [2169] = {.lex_state = 4}, + [2170] = {.lex_state = 4}, + [2171] = {.lex_state = 4}, + [2172] = {.lex_state = 4}, + [2173] = {.lex_state = 4}, + [2174] = {.lex_state = 91}, + [2175] = {.lex_state = 6}, + [2176] = {.lex_state = 4}, + [2177] = {.lex_state = 4}, + [2178] = {.lex_state = 6}, + [2179] = {.lex_state = 4}, + [2180] = {.lex_state = 6}, + [2181] = {.lex_state = 6}, + [2182] = {.lex_state = 6}, + [2183] = {.lex_state = 4}, + [2184] = {.lex_state = 6}, + [2185] = {.lex_state = 6}, + [2186] = {.lex_state = 6}, + [2187] = {.lex_state = 6}, + [2188] = {.lex_state = 6}, + [2189] = {.lex_state = 4}, + [2190] = {.lex_state = 4}, + [2191] = {.lex_state = 4}, + [2192] = {.lex_state = 4}, [2193] = {.lex_state = 12}, - [2194] = {.lex_state = 12}, - [2195] = {.lex_state = 13}, - [2196] = {.lex_state = 12}, - [2197] = {.lex_state = 12}, - [2198] = {.lex_state = 12}, - [2199] = {.lex_state = 12}, - [2200] = {.lex_state = 12}, + [2194] = {.lex_state = 6}, + [2195] = {.lex_state = 11}, + [2196] = {.lex_state = 91}, + [2197] = {.lex_state = 13}, + [2198] = {.lex_state = 91}, + [2199] = {.lex_state = 13}, + [2200] = {.lex_state = 13}, [2201] = {.lex_state = 12}, - [2202] = {.lex_state = 13}, - [2203] = {.lex_state = 13}, - [2204] = {.lex_state = 12}, - [2205] = {.lex_state = 13}, - [2206] = {.lex_state = 13}, - [2207] = {.lex_state = 13}, - [2208] = {.lex_state = 13}, + [2202] = {.lex_state = 91}, + [2203] = {.lex_state = 12}, + [2204] = {.lex_state = 13}, + [2205] = {.lex_state = 12}, + [2206] = {.lex_state = 12}, + [2207] = {.lex_state = 91}, + [2208] = {.lex_state = 12}, [2209] = {.lex_state = 13}, - [2210] = {.lex_state = 13}, + [2210] = {.lex_state = 89}, [2211] = {.lex_state = 12}, [2212] = {.lex_state = 13}, - [2213] = {.lex_state = 13}, - [2214] = {.lex_state = 13}, + [2213] = {.lex_state = 12}, + [2214] = {.lex_state = 12}, [2215] = {.lex_state = 13}, - [2216] = {.lex_state = 12}, - [2217] = {.lex_state = 12}, - [2218] = {.lex_state = 13}, - [2219] = {.lex_state = 12}, - [2220] = {.lex_state = 13}, - [2221] = {.lex_state = 13}, + [2216] = {.lex_state = 13}, + [2217] = {.lex_state = 13}, + [2218] = {.lex_state = 91}, + [2219] = {.lex_state = 13}, + [2220] = {.lex_state = 91}, + [2221] = {.lex_state = 12}, [2222] = {.lex_state = 12}, - [2223] = {.lex_state = 13}, - [2224] = {.lex_state = 12}, - [2225] = {.lex_state = 12}, + [2223] = {.lex_state = 12}, + [2224] = {.lex_state = 13}, + [2225] = {.lex_state = 13}, [2226] = {.lex_state = 12}, - [2227] = {.lex_state = 12}, - [2228] = {.lex_state = 12}, - [2229] = {.lex_state = 12}, - [2230] = {.lex_state = 12}, - [2231] = {.lex_state = 12}, + [2227] = {.lex_state = 13}, + [2228] = {.lex_state = 13}, + [2229] = {.lex_state = 13}, + [2230] = {.lex_state = 13}, + [2231] = {.lex_state = 13}, [2232] = {.lex_state = 13}, - [2233] = {.lex_state = 13}, + [2233] = {.lex_state = 12}, [2234] = {.lex_state = 13}, [2235] = {.lex_state = 13}, - [2236] = {.lex_state = 13}, + [2236] = {.lex_state = 12}, [2237] = {.lex_state = 12}, [2238] = {.lex_state = 13}, [2239] = {.lex_state = 13}, - [2240] = {.lex_state = 12}, - [2241] = {.lex_state = 13}, - [2242] = {.lex_state = 13}, - [2243] = {.lex_state = 13}, - [2244] = {.lex_state = 13}, - [2245] = {.lex_state = 13}, + [2240] = {.lex_state = 13}, + [2241] = {.lex_state = 12}, + [2242] = {.lex_state = 12}, + [2243] = {.lex_state = 12}, + [2244] = {.lex_state = 12}, + [2245] = {.lex_state = 12}, [2246] = {.lex_state = 13}, [2247] = {.lex_state = 12}, [2248] = {.lex_state = 12}, [2249] = {.lex_state = 12}, - [2250] = {.lex_state = 12}, - [2251] = {.lex_state = 12}, - [2252] = {.lex_state = 12}, + [2250] = {.lex_state = 13}, + [2251] = {.lex_state = 13}, + [2252] = {.lex_state = 13}, [2253] = {.lex_state = 13}, [2254] = {.lex_state = 13}, - [2255] = {.lex_state = 91}, - [2256] = {.lex_state = 12}, - [2257] = {.lex_state = 13}, + [2255] = {.lex_state = 13}, + [2256] = {.lex_state = 13}, + [2257] = {.lex_state = 12}, [2258] = {.lex_state = 13}, - [2259] = {.lex_state = 13}, + [2259] = {.lex_state = 12}, [2260] = {.lex_state = 12}, - [2261] = {.lex_state = 20}, + [2261] = {.lex_state = 13}, [2262] = {.lex_state = 12}, [2263] = {.lex_state = 12}, - [2264] = {.lex_state = 91}, - [2265] = {.lex_state = 13}, + [2264] = {.lex_state = 12}, + [2265] = {.lex_state = 12}, [2266] = {.lex_state = 12}, - [2267] = {.lex_state = 12}, - [2268] = {.lex_state = 20}, - [2269] = {.lex_state = 20}, - [2270] = {.lex_state = 90}, - [2271] = {.lex_state = 12}, - [2272] = {.lex_state = 13}, - [2273] = {.lex_state = 12}, - [2274] = {.lex_state = 4}, + [2267] = {.lex_state = 13}, + [2268] = {.lex_state = 12}, + [2269] = {.lex_state = 12}, + [2270] = {.lex_state = 12}, + [2271] = {.lex_state = 13}, + [2272] = {.lex_state = 12}, + [2273] = {.lex_state = 13}, + [2274] = {.lex_state = 13}, [2275] = {.lex_state = 13}, [2276] = {.lex_state = 13}, - [2277] = {.lex_state = 13}, - [2278] = {.lex_state = 91}, - [2279] = {.lex_state = 6}, - [2280] = {.lex_state = 6}, - [2281] = {.lex_state = 6}, - [2282] = {.lex_state = 90}, - [2283] = {.lex_state = 91}, - [2284] = {.lex_state = 6}, - [2285] = {.lex_state = 6}, - [2286] = {.lex_state = 6}, - [2287] = {.lex_state = 6}, - [2288] = {.lex_state = 6}, - [2289] = {.lex_state = 6}, - [2290] = {.lex_state = 6}, - [2291] = {.lex_state = 6}, + [2277] = {.lex_state = 12}, + [2278] = {.lex_state = 12}, + [2279] = {.lex_state = 12}, + [2280] = {.lex_state = 12}, + [2281] = {.lex_state = 20}, + [2282] = {.lex_state = 12}, + [2283] = {.lex_state = 13}, + [2284] = {.lex_state = 12}, + [2285] = {.lex_state = 12}, + [2286] = {.lex_state = 12}, + [2287] = {.lex_state = 92}, + [2288] = {.lex_state = 12}, + [2289] = {.lex_state = 13}, + [2290] = {.lex_state = 12}, + [2291] = {.lex_state = 20}, [2292] = {.lex_state = 13}, - [2293] = {.lex_state = 2}, - [2294] = {.lex_state = 6}, - [2295] = {.lex_state = 6}, - [2296] = {.lex_state = 6}, - [2297] = {.lex_state = 2}, - [2298] = {.lex_state = 6}, - [2299] = {.lex_state = 6}, - [2300] = {.lex_state = 6}, - [2301] = {.lex_state = 6}, - [2302] = {.lex_state = 6}, - [2303] = {.lex_state = 6}, + [2293] = {.lex_state = 92}, + [2294] = {.lex_state = 12}, + [2295] = {.lex_state = 12}, + [2296] = {.lex_state = 13}, + [2297] = {.lex_state = 12}, + [2298] = {.lex_state = 4}, + [2299] = {.lex_state = 13}, + [2300] = {.lex_state = 13}, + [2301] = {.lex_state = 12}, + [2302] = {.lex_state = 13}, + [2303] = {.lex_state = 13}, [2304] = {.lex_state = 13}, - [2305] = {.lex_state = 6}, - [2306] = {.lex_state = 6}, - [2307] = {.lex_state = 6}, - [2308] = {.lex_state = 6}, - [2309] = {.lex_state = 6}, - [2310] = {.lex_state = 6}, - [2311] = {.lex_state = 6}, - [2312] = {.lex_state = 6}, - [2313] = {.lex_state = 6}, - [2314] = {.lex_state = 6}, - [2315] = {.lex_state = 6}, - [2316] = {.lex_state = 6}, - [2317] = {.lex_state = 6}, - [2318] = {.lex_state = 6}, - [2319] = {.lex_state = 6}, - [2320] = {.lex_state = 6}, - [2321] = {.lex_state = 6}, - [2322] = {.lex_state = 6}, - [2323] = {.lex_state = 6}, - [2324] = {.lex_state = 6}, - [2325] = {.lex_state = 6}, - [2326] = {.lex_state = 6}, - [2327] = {.lex_state = 11}, - [2328] = {.lex_state = 6}, - [2329] = {.lex_state = 13}, - [2330] = {.lex_state = 13}, - [2331] = {.lex_state = 13}, - [2332] = {.lex_state = 90}, - [2333] = {.lex_state = 11}, - [2334] = {.lex_state = 13}, - [2335] = {.lex_state = 13}, - [2336] = {.lex_state = 13}, + [2305] = {.lex_state = 13}, + [2306] = {.lex_state = 91}, + [2307] = {.lex_state = 13}, + [2308] = {.lex_state = 13}, + [2309] = {.lex_state = 20}, + [2310] = {.lex_state = 12}, + [2311] = {.lex_state = 13}, + [2312] = {.lex_state = 92}, + [2313] = {.lex_state = 4}, + [2314] = {.lex_state = 4}, + [2315] = {.lex_state = 2}, + [2316] = {.lex_state = 4}, + [2317] = {.lex_state = 4}, + [2318] = {.lex_state = 91}, + [2319] = {.lex_state = 4}, + [2320] = {.lex_state = 4}, + [2321] = {.lex_state = 4}, + [2322] = {.lex_state = 4}, + [2323] = {.lex_state = 4}, + [2324] = {.lex_state = 92}, + [2325] = {.lex_state = 4}, + [2326] = {.lex_state = 4}, + [2327] = {.lex_state = 4}, + [2328] = {.lex_state = 4}, + [2329] = {.lex_state = 4}, + [2330] = {.lex_state = 4}, + [2331] = {.lex_state = 4}, + [2332] = {.lex_state = 4}, + [2333] = {.lex_state = 4}, + [2334] = {.lex_state = 4}, + [2335] = {.lex_state = 4}, + [2336] = {.lex_state = 4}, [2337] = {.lex_state = 13}, - [2338] = {.lex_state = 13}, + [2338] = {.lex_state = 4}, [2339] = {.lex_state = 13}, - [2340] = {.lex_state = 90}, - [2341] = {.lex_state = 13}, - [2342] = {.lex_state = 13}, - [2343] = {.lex_state = 13}, - [2344] = {.lex_state = 13}, - [2345] = {.lex_state = 90}, - [2346] = {.lex_state = 13}, + [2340] = {.lex_state = 4}, + [2341] = {.lex_state = 4}, + [2342] = {.lex_state = 4}, + [2343] = {.lex_state = 2}, + [2344] = {.lex_state = 4}, + [2345] = {.lex_state = 4}, + [2346] = {.lex_state = 4}, [2347] = {.lex_state = 13}, - [2348] = {.lex_state = 90}, - [2349] = {.lex_state = 91}, - [2350] = {.lex_state = 2}, - [2351] = {.lex_state = 91}, - [2352] = {.lex_state = 90}, - [2353] = {.lex_state = 91}, - [2354] = {.lex_state = 20}, - [2355] = {.lex_state = 12}, - [2356] = {.lex_state = 92}, - [2357] = {.lex_state = 20}, - [2358] = {.lex_state = 20}, - [2359] = {.lex_state = 20}, - [2360] = {.lex_state = 20}, - [2361] = {.lex_state = 12}, - [2362] = {.lex_state = 11}, - [2363] = {.lex_state = 13}, - [2364] = {.lex_state = 20}, + [2348] = {.lex_state = 4}, + [2349] = {.lex_state = 4}, + [2350] = {.lex_state = 4}, + [2351] = {.lex_state = 4}, + [2352] = {.lex_state = 4}, + [2353] = {.lex_state = 4}, + [2354] = {.lex_state = 4}, + [2355] = {.lex_state = 4}, + [2356] = {.lex_state = 4}, + [2357] = {.lex_state = 13}, + [2358] = {.lex_state = 13}, + [2359] = {.lex_state = 4}, + [2360] = {.lex_state = 4}, + [2361] = {.lex_state = 4}, + [2362] = {.lex_state = 4}, + [2363] = {.lex_state = 4}, + [2364] = {.lex_state = 4}, [2365] = {.lex_state = 13}, [2366] = {.lex_state = 13}, - [2367] = {.lex_state = 11}, - [2368] = {.lex_state = 90}, - [2369] = {.lex_state = 19}, - [2370] = {.lex_state = 11}, - [2371] = {.lex_state = 11}, - [2372] = {.lex_state = 20}, - [2373] = {.lex_state = 20}, - [2374] = {.lex_state = 92}, - [2375] = {.lex_state = 12}, - [2376] = {.lex_state = 12}, - [2377] = {.lex_state = 12}, - [2378] = {.lex_state = 20}, - [2379] = {.lex_state = 12}, - [2380] = {.lex_state = 20}, - [2381] = {.lex_state = 19}, - [2382] = {.lex_state = 13}, - [2383] = {.lex_state = 13}, - [2384] = {.lex_state = 13}, - [2385] = {.lex_state = 20}, - [2386] = {.lex_state = 11}, - [2387] = {.lex_state = 92}, - [2388] = {.lex_state = 11}, - [2389] = {.lex_state = 12}, - [2390] = {.lex_state = 12}, - [2391] = {.lex_state = 12}, - [2392] = {.lex_state = 12}, - [2393] = {.lex_state = 90}, - [2394] = {.lex_state = 12}, - [2395] = {.lex_state = 90}, - [2396] = {.lex_state = 12}, - [2397] = {.lex_state = 12}, - [2398] = {.lex_state = 12}, - [2399] = {.lex_state = 12}, + [2367] = {.lex_state = 13}, + [2368] = {.lex_state = 13}, + [2369] = {.lex_state = 13}, + [2370] = {.lex_state = 13}, + [2371] = {.lex_state = 13}, + [2372] = {.lex_state = 13}, + [2373] = {.lex_state = 91}, + [2374] = {.lex_state = 91}, + [2375] = {.lex_state = 13}, + [2376] = {.lex_state = 13}, + [2377] = {.lex_state = 91}, + [2378] = {.lex_state = 13}, + [2379] = {.lex_state = 91}, + [2380] = {.lex_state = 13}, + [2381] = {.lex_state = 92}, + [2382] = {.lex_state = 92}, + [2383] = {.lex_state = 2}, + [2384] = {.lex_state = 91}, + [2385] = {.lex_state = 92}, + [2386] = {.lex_state = 12}, + [2387] = {.lex_state = 13}, + [2388] = {.lex_state = 93}, + [2389] = {.lex_state = 20}, + [2390] = {.lex_state = 91}, + [2391] = {.lex_state = 20}, + [2392] = {.lex_state = 11}, + [2393] = {.lex_state = 20}, + [2394] = {.lex_state = 19}, + [2395] = {.lex_state = 13}, + [2396] = {.lex_state = 19}, + [2397] = {.lex_state = 13}, + [2398] = {.lex_state = 13}, + [2399] = {.lex_state = 20}, [2400] = {.lex_state = 12}, - [2401] = {.lex_state = 12}, - [2402] = {.lex_state = 12}, - [2403] = {.lex_state = 90}, - [2404] = {.lex_state = 87}, - [2405] = {.lex_state = 87}, - [2406] = {.lex_state = 90}, - [2407] = {.lex_state = 90}, - [2408] = {.lex_state = 13}, - [2409] = {.lex_state = 91}, - [2410] = {.lex_state = 13}, - [2411] = {.lex_state = 91}, - [2412] = {.lex_state = 13}, - [2413] = {.lex_state = 13}, - [2414] = {.lex_state = 92}, - [2415] = {.lex_state = 92}, - [2416] = {.lex_state = 13}, - [2417] = {.lex_state = 13}, - [2418] = {.lex_state = 90}, - [2419] = {.lex_state = 90}, - [2420] = {.lex_state = 90}, - [2421] = {.lex_state = 90}, - [2422] = {.lex_state = 90}, - [2423] = {.lex_state = 90}, - [2424] = {.lex_state = 90}, - [2425] = {.lex_state = 90}, - [2426] = {.lex_state = 90}, - [2427] = {.lex_state = 90}, - [2428] = {.lex_state = 90}, - [2429] = {.lex_state = 90}, - [2430] = {.lex_state = 90}, - [2431] = {.lex_state = 90}, - [2432] = {.lex_state = 90}, - [2433] = {.lex_state = 90}, - [2434] = {.lex_state = 90}, - [2435] = {.lex_state = 90}, - [2436] = {.lex_state = 90}, - [2437] = {.lex_state = 90}, - [2438] = {.lex_state = 90}, - [2439] = {.lex_state = 90}, - [2440] = {.lex_state = 90}, - [2441] = {.lex_state = 90}, - [2442] = {.lex_state = 90}, - [2443] = {.lex_state = 90}, - [2444] = {.lex_state = 90}, - [2445] = {.lex_state = 90}, - [2446] = {.lex_state = 90}, - [2447] = {.lex_state = 90}, - [2448] = {.lex_state = 90}, - [2449] = {.lex_state = 90}, - [2450] = {.lex_state = 90}, - [2451] = {.lex_state = 90}, - [2452] = {.lex_state = 90}, - [2453] = {.lex_state = 92}, - [2454] = {.lex_state = 90}, - [2455] = {.lex_state = 90}, - [2456] = {.lex_state = 90}, - [2457] = {.lex_state = 90}, - [2458] = {.lex_state = 90}, - [2459] = {.lex_state = 90}, - [2460] = {.lex_state = 90}, - [2461] = {.lex_state = 90}, - [2462] = {.lex_state = 90}, - [2463] = {.lex_state = 90}, - [2464] = {.lex_state = 90}, - [2465] = {.lex_state = 90}, - [2466] = {.lex_state = 90}, - [2467] = {.lex_state = 92}, - [2468] = {.lex_state = 23}, - [2469] = {.lex_state = 86}, - [2470] = {.lex_state = 86}, - [2471] = {.lex_state = 86}, - [2472] = {.lex_state = 86}, - [2473] = {.lex_state = 86}, - [2474] = {.lex_state = 86}, - [2475] = {.lex_state = 86}, - [2476] = {.lex_state = 86}, - [2477] = {.lex_state = 86}, - [2478] = {.lex_state = 86}, - [2479] = {.lex_state = 86}, - [2480] = {.lex_state = 86}, - [2481] = {.lex_state = 92}, - [2482] = {.lex_state = 90}, - [2483] = {.lex_state = 86}, - [2484] = {.lex_state = 86}, - [2485] = {.lex_state = 86}, - [2486] = {.lex_state = 86}, - [2487] = {.lex_state = 86}, - [2488] = {.lex_state = 86}, - [2489] = {.lex_state = 86}, - [2490] = {.lex_state = 86}, - [2491] = {.lex_state = 90}, - [2492] = {.lex_state = 23}, - [2493] = {.lex_state = 86}, - [2494] = {.lex_state = 86}, - [2495] = {.lex_state = 86}, - [2496] = {.lex_state = 86}, - [2497] = {.lex_state = 86}, - [2498] = {.lex_state = 86}, - [2499] = {.lex_state = 86}, - [2500] = {.lex_state = 86}, - [2501] = {.lex_state = 90}, - [2502] = {.lex_state = 86}, - [2503] = {.lex_state = 86}, - [2504] = {.lex_state = 86}, - [2505] = {.lex_state = 92}, - [2506] = {.lex_state = 92}, - [2507] = {.lex_state = 92}, - [2508] = {.lex_state = 90}, - [2509] = {.lex_state = 92}, - [2510] = {.lex_state = 90}, - [2511] = {.lex_state = 92}, - [2512] = {.lex_state = 92}, - [2513] = {.lex_state = 92}, - [2514] = {.lex_state = 92}, - [2515] = {.lex_state = 92}, - [2516] = {.lex_state = 92}, - [2517] = {.lex_state = 92}, - [2518] = {.lex_state = 92}, - [2519] = {.lex_state = 92}, - [2520] = {.lex_state = 90}, - [2521] = {.lex_state = 90}, - [2522] = {.lex_state = 92}, - [2523] = {.lex_state = 92}, - [2524] = {.lex_state = 92}, - [2525] = {.lex_state = 92}, - [2526] = {.lex_state = 92}, - [2527] = {.lex_state = 92}, - [2528] = {.lex_state = 92}, - [2529] = {.lex_state = 92}, - [2530] = {.lex_state = 92}, - [2531] = {.lex_state = 90}, - [2532] = {.lex_state = 92}, - [2533] = {.lex_state = 92}, - [2534] = {.lex_state = 90}, - [2535] = {.lex_state = 90}, - [2536] = {.lex_state = 90}, - [2537] = {.lex_state = 90}, - [2538] = {.lex_state = 90}, - [2539] = {.lex_state = 90}, - [2540] = {.lex_state = 90}, - [2541] = {.lex_state = 90}, - [2542] = {.lex_state = 92}, - [2543] = {.lex_state = 90}, - [2544] = {.lex_state = 90}, - [2545] = {.lex_state = 90}, - [2546] = {.lex_state = 90}, - [2547] = {.lex_state = 90}, - [2548] = {.lex_state = 90}, - [2549] = {.lex_state = 2}, - [2550] = {.lex_state = 90}, - [2551] = {.lex_state = 90}, - [2552] = {.lex_state = 92}, - [2553] = {.lex_state = 2}, - [2554] = {.lex_state = 90}, - [2555] = {.lex_state = 90}, - [2556] = {.lex_state = 90}, - [2557] = {.lex_state = 90}, - [2558] = {.lex_state = 92}, - [2559] = {.lex_state = 90}, - [2560] = {.lex_state = 90}, - [2561] = {.lex_state = 90}, - [2562] = {.lex_state = 90}, - [2563] = {.lex_state = 90}, - [2564] = {.lex_state = 90}, - [2565] = {.lex_state = 90}, - [2566] = {.lex_state = 90}, - [2567] = {.lex_state = 90}, - [2568] = {.lex_state = 92}, - [2569] = {.lex_state = 90}, - [2570] = {.lex_state = 90}, - [2571] = {.lex_state = 90}, - [2572] = {.lex_state = 90}, - [2573] = {.lex_state = 90}, - [2574] = {.lex_state = 90}, - [2575] = {.lex_state = 90}, - [2576] = {.lex_state = 90}, - [2577] = {.lex_state = 90}, - [2578] = {.lex_state = 90}, - [2579] = {.lex_state = 90}, - [2580] = {.lex_state = 92}, - [2581] = {.lex_state = 90}, - [2582] = {.lex_state = 90}, - [2583] = {.lex_state = 2}, - [2584] = {.lex_state = 92}, - [2585] = {.lex_state = 90}, - [2586] = {.lex_state = 92}, - [2587] = {.lex_state = 92}, - [2588] = {.lex_state = 92}, - [2589] = {.lex_state = 90}, - [2590] = {.lex_state = 90}, - [2591] = {.lex_state = 90}, - [2592] = {.lex_state = 90}, - [2593] = {.lex_state = 90}, - [2594] = {.lex_state = 90}, - [2595] = {.lex_state = 90}, - [2596] = {.lex_state = 90}, - [2597] = {.lex_state = 2}, - [2598] = {.lex_state = 90}, - [2599] = {.lex_state = 90}, - [2600] = {.lex_state = 90}, - [2601] = {.lex_state = 90}, - [2602] = {.lex_state = 92}, - [2603] = {.lex_state = 90}, - [2604] = {.lex_state = 90}, - [2605] = {.lex_state = 90}, - [2606] = {.lex_state = 90}, - [2607] = {.lex_state = 90}, - [2608] = {.lex_state = 90}, - [2609] = {.lex_state = 90}, - [2610] = {.lex_state = 90}, - [2611] = {.lex_state = 90}, - [2612] = {.lex_state = 90}, - [2613] = {.lex_state = 90}, - [2614] = {.lex_state = 90}, - [2615] = {.lex_state = 90}, - [2616] = {.lex_state = 90}, - [2617] = {.lex_state = 2}, - [2618] = {.lex_state = 92}, - [2619] = {.lex_state = 90}, - [2620] = {.lex_state = 90}, - [2621] = {.lex_state = 90}, - [2622] = {.lex_state = 92}, - [2623] = {.lex_state = 90}, - [2624] = {.lex_state = 90}, - [2625] = {.lex_state = 90}, - [2626] = {.lex_state = 90}, - [2627] = {.lex_state = 90}, - [2628] = {.lex_state = 90}, - [2629] = {.lex_state = 90}, - [2630] = {.lex_state = 90}, - [2631] = {.lex_state = 2}, - [2632] = {.lex_state = 90}, - [2633] = {.lex_state = 37}, - [2634] = {.lex_state = 37}, - [2635] = {.lex_state = 90}, - [2636] = {.lex_state = 90}, - [2637] = {.lex_state = 37}, - [2638] = {.lex_state = 37}, - [2639] = {.lex_state = 37}, - [2640] = {.lex_state = 90}, - [2641] = {.lex_state = 37}, - [2642] = {.lex_state = 90}, - [2643] = {.lex_state = 90}, - [2644] = {.lex_state = 37}, - [2645] = {.lex_state = 90}, - [2646] = {.lex_state = 37}, - [2647] = {.lex_state = 37}, - [2648] = {.lex_state = 90}, - [2649] = {.lex_state = 37}, - [2650] = {.lex_state = 90}, - [2651] = {.lex_state = 90}, - [2652] = {.lex_state = 37}, - [2653] = {.lex_state = 90}, - [2654] = {.lex_state = 37}, - [2655] = {.lex_state = 90}, - [2656] = {.lex_state = 90}, - [2657] = {.lex_state = 90}, - [2658] = {.lex_state = 90}, - [2659] = {.lex_state = 37}, - [2660] = {.lex_state = 37}, - [2661] = {.lex_state = 37}, - [2662] = {.lex_state = 90}, - [2663] = {.lex_state = 37}, - [2664] = {.lex_state = 92}, - [2665] = {.lex_state = 90}, - [2666] = {.lex_state = 2}, - [2667] = {.lex_state = 2}, - [2668] = {.lex_state = 2}, - [2669] = {.lex_state = 90}, - [2670] = {.lex_state = 87}, - [2671] = {.lex_state = 90}, - [2672] = {.lex_state = 90}, - [2673] = {.lex_state = 87}, - [2674] = {.lex_state = 90}, - [2675] = {.lex_state = 2, .external_lex_state = 3}, - [2676] = {.lex_state = 7, .external_lex_state = 4}, - [2677] = {.lex_state = 2, .external_lex_state = 5}, - [2678] = {.lex_state = 2, .external_lex_state = 3}, - [2679] = {.lex_state = 2, .external_lex_state = 5}, - [2680] = {.lex_state = 9, .external_lex_state = 6}, - [2681] = {.lex_state = 2, .external_lex_state = 3}, - [2682] = {.lex_state = 9, .external_lex_state = 6}, - [2683] = {.lex_state = 7, .external_lex_state = 4}, - [2684] = {.lex_state = 7, .external_lex_state = 4}, - [2685] = {.lex_state = 7, .external_lex_state = 4}, - [2686] = {.lex_state = 9, .external_lex_state = 6}, - [2687] = {.lex_state = 7, .external_lex_state = 4}, - [2688] = {.lex_state = 0}, - [2689] = {.lex_state = 2, .external_lex_state = 5}, - [2690] = {.lex_state = 90}, - [2691] = {.lex_state = 86}, - [2692] = {.lex_state = 2, .external_lex_state = 5}, - [2693] = {.lex_state = 2, .external_lex_state = 3}, - [2694] = {.lex_state = 9, .external_lex_state = 6}, - [2695] = {.lex_state = 7, .external_lex_state = 4}, - [2696] = {.lex_state = 2, .external_lex_state = 5}, - [2697] = {.lex_state = 7, .external_lex_state = 4}, - [2698] = {.lex_state = 9, .external_lex_state = 6}, - [2699] = {.lex_state = 2, .external_lex_state = 3}, - [2700] = {.lex_state = 2, .external_lex_state = 5}, - [2701] = {.lex_state = 2, .external_lex_state = 3}, - [2702] = {.lex_state = 9, .external_lex_state = 6}, - [2703] = {.lex_state = 2, .external_lex_state = 5}, - [2704] = {.lex_state = 7, .external_lex_state = 4}, - [2705] = {.lex_state = 2, .external_lex_state = 5}, - [2706] = {.lex_state = 7, .external_lex_state = 4}, - [2707] = {.lex_state = 2, .external_lex_state = 5}, - [2708] = {.lex_state = 2, .external_lex_state = 3}, - [2709] = {.lex_state = 9, .external_lex_state = 6}, - [2710] = {.lex_state = 7, .external_lex_state = 4}, - [2711] = {.lex_state = 9, .external_lex_state = 6}, - [2712] = {.lex_state = 2, .external_lex_state = 3}, - [2713] = {.lex_state = 2, .external_lex_state = 5}, - [2714] = {.lex_state = 2, .external_lex_state = 3}, - [2715] = {.lex_state = 9, .external_lex_state = 6}, - [2716] = {.lex_state = 7, .external_lex_state = 4}, - [2717] = {.lex_state = 90}, + [2401] = {.lex_state = 20}, + [2402] = {.lex_state = 20}, + [2403] = {.lex_state = 11}, + [2404] = {.lex_state = 12}, + [2405] = {.lex_state = 20}, + [2406] = {.lex_state = 11}, + [2407] = {.lex_state = 93}, + [2408] = {.lex_state = 20}, + [2409] = {.lex_state = 20}, + [2410] = {.lex_state = 11}, + [2411] = {.lex_state = 12}, + [2412] = {.lex_state = 11}, + [2413] = {.lex_state = 93}, + [2414] = {.lex_state = 12}, + [2415] = {.lex_state = 11}, + [2416] = {.lex_state = 12}, + [2417] = {.lex_state = 20}, + [2418] = {.lex_state = 13}, + [2419] = {.lex_state = 20}, + [2420] = {.lex_state = 13}, + [2421] = {.lex_state = 12}, + [2422] = {.lex_state = 12}, + [2423] = {.lex_state = 12}, + [2424] = {.lex_state = 12}, + [2425] = {.lex_state = 12}, + [2426] = {.lex_state = 12}, + [2427] = {.lex_state = 12}, + [2428] = {.lex_state = 12}, + [2429] = {.lex_state = 91}, + [2430] = {.lex_state = 91}, + [2431] = {.lex_state = 12}, + [2432] = {.lex_state = 12}, + [2433] = {.lex_state = 12}, + [2434] = {.lex_state = 12}, + [2435] = {.lex_state = 91}, + [2436] = {.lex_state = 88}, + [2437] = {.lex_state = 88}, + [2438] = {.lex_state = 91}, + [2439] = {.lex_state = 91}, + [2440] = {.lex_state = 93}, + [2441] = {.lex_state = 93}, + [2442] = {.lex_state = 93}, + [2443] = {.lex_state = 13}, + [2444] = {.lex_state = 13}, + [2445] = {.lex_state = 13}, + [2446] = {.lex_state = 92}, + [2447] = {.lex_state = 13}, + [2448] = {.lex_state = 13}, + [2449] = {.lex_state = 92}, + [2450] = {.lex_state = 13}, + [2451] = {.lex_state = 91}, + [2452] = {.lex_state = 91}, + [2453] = {.lex_state = 91}, + [2454] = {.lex_state = 91}, + [2455] = {.lex_state = 91}, + [2456] = {.lex_state = 93}, + [2457] = {.lex_state = 91}, + [2458] = {.lex_state = 91}, + [2459] = {.lex_state = 91}, + [2460] = {.lex_state = 93}, + [2461] = {.lex_state = 91}, + [2462] = {.lex_state = 91}, + [2463] = {.lex_state = 91}, + [2464] = {.lex_state = 91}, + [2465] = {.lex_state = 91}, + [2466] = {.lex_state = 91}, + [2467] = {.lex_state = 91}, + [2468] = {.lex_state = 91}, + [2469] = {.lex_state = 91}, + [2470] = {.lex_state = 91}, + [2471] = {.lex_state = 91}, + [2472] = {.lex_state = 91}, + [2473] = {.lex_state = 93}, + [2474] = {.lex_state = 91}, + [2475] = {.lex_state = 91}, + [2476] = {.lex_state = 91}, + [2477] = {.lex_state = 91}, + [2478] = {.lex_state = 91}, + [2479] = {.lex_state = 91}, + [2480] = {.lex_state = 91}, + [2481] = {.lex_state = 91}, + [2482] = {.lex_state = 91}, + [2483] = {.lex_state = 91}, + [2484] = {.lex_state = 91}, + [2485] = {.lex_state = 91}, + [2486] = {.lex_state = 91}, + [2487] = {.lex_state = 91}, + [2488] = {.lex_state = 91}, + [2489] = {.lex_state = 91}, + [2490] = {.lex_state = 93}, + [2491] = {.lex_state = 91}, + [2492] = {.lex_state = 93}, + [2493] = {.lex_state = 91}, + [2494] = {.lex_state = 91}, + [2495] = {.lex_state = 91}, + [2496] = {.lex_state = 91}, + [2497] = {.lex_state = 91}, + [2498] = {.lex_state = 91}, + [2499] = {.lex_state = 91}, + [2500] = {.lex_state = 91}, + [2501] = {.lex_state = 91}, + [2502] = {.lex_state = 93}, + [2503] = {.lex_state = 93}, + [2504] = {.lex_state = 93}, + [2505] = {.lex_state = 93}, + [2506] = {.lex_state = 93}, + [2507] = {.lex_state = 23}, + [2508] = {.lex_state = 93}, + [2509] = {.lex_state = 93}, + [2510] = {.lex_state = 93}, + [2511] = {.lex_state = 87}, + [2512] = {.lex_state = 87}, + [2513] = {.lex_state = 87}, + [2514] = {.lex_state = 87}, + [2515] = {.lex_state = 23}, + [2516] = {.lex_state = 87}, + [2517] = {.lex_state = 91}, + [2518] = {.lex_state = 87}, + [2519] = {.lex_state = 87}, + [2520] = {.lex_state = 87}, + [2521] = {.lex_state = 87}, + [2522] = {.lex_state = 87}, + [2523] = {.lex_state = 91}, + [2524] = {.lex_state = 87}, + [2525] = {.lex_state = 87}, + [2526] = {.lex_state = 87}, + [2527] = {.lex_state = 87}, + [2528] = {.lex_state = 87}, + [2529] = {.lex_state = 87}, + [2530] = {.lex_state = 87}, + [2531] = {.lex_state = 93}, + [2532] = {.lex_state = 87}, + [2533] = {.lex_state = 87}, + [2534] = {.lex_state = 87}, + [2535] = {.lex_state = 87}, + [2536] = {.lex_state = 87}, + [2537] = {.lex_state = 91}, + [2538] = {.lex_state = 87}, + [2539] = {.lex_state = 87}, + [2540] = {.lex_state = 87}, + [2541] = {.lex_state = 87}, + [2542] = {.lex_state = 87}, + [2543] = {.lex_state = 87}, + [2544] = {.lex_state = 87}, + [2545] = {.lex_state = 87}, + [2546] = {.lex_state = 87}, + [2547] = {.lex_state = 93}, + [2548] = {.lex_state = 91}, + [2549] = {.lex_state = 91}, + [2550] = {.lex_state = 93}, + [2551] = {.lex_state = 93}, + [2552] = {.lex_state = 93}, + [2553] = {.lex_state = 93}, + [2554] = {.lex_state = 93}, + [2555] = {.lex_state = 93}, + [2556] = {.lex_state = 91}, + [2557] = {.lex_state = 93}, + [2558] = {.lex_state = 93}, + [2559] = {.lex_state = 93}, + [2560] = {.lex_state = 93}, + [2561] = {.lex_state = 93}, + [2562] = {.lex_state = 93}, + [2563] = {.lex_state = 93}, + [2564] = {.lex_state = 93}, + [2565] = {.lex_state = 91}, + [2566] = {.lex_state = 93}, + [2567] = {.lex_state = 93}, + [2568] = {.lex_state = 93}, + [2569] = {.lex_state = 93}, + [2570] = {.lex_state = 93}, + [2571] = {.lex_state = 93}, + [2572] = {.lex_state = 93}, + [2573] = {.lex_state = 91}, + [2574] = {.lex_state = 93}, + [2575] = {.lex_state = 93}, + [2576] = {.lex_state = 91}, + [2577] = {.lex_state = 91}, + [2578] = {.lex_state = 91}, + [2579] = {.lex_state = 91}, + [2580] = {.lex_state = 91}, + [2581] = {.lex_state = 91}, + [2582] = {.lex_state = 91}, + [2583] = {.lex_state = 93}, + [2584] = {.lex_state = 91}, + [2585] = {.lex_state = 91}, + [2586] = {.lex_state = 91}, + [2587] = {.lex_state = 91}, + [2588] = {.lex_state = 91}, + [2589] = {.lex_state = 91}, + [2590] = {.lex_state = 91}, + [2591] = {.lex_state = 2}, + [2592] = {.lex_state = 91}, + [2593] = {.lex_state = 91}, + [2594] = {.lex_state = 91}, + [2595] = {.lex_state = 91}, + [2596] = {.lex_state = 2}, + [2597] = {.lex_state = 91}, + [2598] = {.lex_state = 93}, + [2599] = {.lex_state = 91}, + [2600] = {.lex_state = 91}, + [2601] = {.lex_state = 93}, + [2602] = {.lex_state = 93}, + [2603] = {.lex_state = 91}, + [2604] = {.lex_state = 91}, + [2605] = {.lex_state = 91}, + [2606] = {.lex_state = 91}, + [2607] = {.lex_state = 93}, + [2608] = {.lex_state = 2}, + [2609] = {.lex_state = 91}, + [2610] = {.lex_state = 91}, + [2611] = {.lex_state = 91}, + [2612] = {.lex_state = 91}, + [2613] = {.lex_state = 91}, + [2614] = {.lex_state = 2}, + [2615] = {.lex_state = 93}, + [2616] = {.lex_state = 91}, + [2617] = {.lex_state = 91}, + [2618] = {.lex_state = 91}, + [2619] = {.lex_state = 93}, + [2620] = {.lex_state = 91}, + [2621] = {.lex_state = 91}, + [2622] = {.lex_state = 91}, + [2623] = {.lex_state = 91}, + [2624] = {.lex_state = 91}, + [2625] = {.lex_state = 2}, + [2626] = {.lex_state = 91}, + [2627] = {.lex_state = 93}, + [2628] = {.lex_state = 91}, + [2629] = {.lex_state = 91}, + [2630] = {.lex_state = 91}, + [2631] = {.lex_state = 91}, + [2632] = {.lex_state = 91}, + [2633] = {.lex_state = 91}, + [2634] = {.lex_state = 91}, + [2635] = {.lex_state = 91}, + [2636] = {.lex_state = 91}, + [2637] = {.lex_state = 91}, + [2638] = {.lex_state = 93}, + [2639] = {.lex_state = 91}, + [2640] = {.lex_state = 91}, + [2641] = {.lex_state = 91}, + [2642] = {.lex_state = 91}, + [2643] = {.lex_state = 91}, + [2644] = {.lex_state = 91}, + [2645] = {.lex_state = 91}, + [2646] = {.lex_state = 91}, + [2647] = {.lex_state = 91}, + [2648] = {.lex_state = 93}, + [2649] = {.lex_state = 91}, + [2650] = {.lex_state = 91}, + [2651] = {.lex_state = 91}, + [2652] = {.lex_state = 91}, + [2653] = {.lex_state = 93}, + [2654] = {.lex_state = 91}, + [2655] = {.lex_state = 91}, + [2656] = {.lex_state = 91}, + [2657] = {.lex_state = 93}, + [2658] = {.lex_state = 91}, + [2659] = {.lex_state = 91}, + [2660] = {.lex_state = 88}, + [2661] = {.lex_state = 88}, + [2662] = {.lex_state = 91}, + [2663] = {.lex_state = 91}, + [2664] = {.lex_state = 91}, + [2665] = {.lex_state = 91}, + [2666] = {.lex_state = 91}, + [2667] = {.lex_state = 91}, + [2668] = {.lex_state = 91}, + [2669] = {.lex_state = 91}, + [2670] = {.lex_state = 91}, + [2671] = {.lex_state = 2}, + [2672] = {.lex_state = 91}, + [2673] = {.lex_state = 91}, + [2674] = {.lex_state = 91}, + [2675] = {.lex_state = 91}, + [2676] = {.lex_state = 37}, + [2677] = {.lex_state = 37}, + [2678] = {.lex_state = 37}, + [2679] = {.lex_state = 91}, + [2680] = {.lex_state = 37}, + [2681] = {.lex_state = 91}, + [2682] = {.lex_state = 37}, + [2683] = {.lex_state = 37}, + [2684] = {.lex_state = 91}, + [2685] = {.lex_state = 91}, + [2686] = {.lex_state = 37}, + [2687] = {.lex_state = 37}, + [2688] = {.lex_state = 91}, + [2689] = {.lex_state = 37}, + [2690] = {.lex_state = 91}, + [2691] = {.lex_state = 91}, + [2692] = {.lex_state = 37}, + [2693] = {.lex_state = 37}, + [2694] = {.lex_state = 37}, + [2695] = {.lex_state = 37}, + [2696] = {.lex_state = 37}, + [2697] = {.lex_state = 91}, + [2698] = {.lex_state = 91}, + [2699] = {.lex_state = 91}, + [2700] = {.lex_state = 91}, + [2701] = {.lex_state = 91}, + [2702] = {.lex_state = 91}, + [2703] = {.lex_state = 37}, + [2704] = {.lex_state = 37}, + [2705] = {.lex_state = 91}, + [2706] = {.lex_state = 91}, + [2707] = {.lex_state = 2}, + [2708] = {.lex_state = 2}, + [2709] = {.lex_state = 91}, + [2710] = {.lex_state = 91}, + [2711] = {.lex_state = 91}, + [2712] = {.lex_state = 88}, + [2713] = {.lex_state = 91}, + [2714] = {.lex_state = 88}, + [2715] = {.lex_state = 91}, + [2716] = {.lex_state = 93}, + [2717] = {.lex_state = 2}, [2718] = {.lex_state = 2, .external_lex_state = 3}, - [2719] = {.lex_state = 2, .external_lex_state = 5}, - [2720] = {.lex_state = 2, .external_lex_state = 3}, - [2721] = {.lex_state = 9, .external_lex_state = 6}, + [2719] = {.lex_state = 9, .external_lex_state = 4}, + [2720] = {.lex_state = 9, .external_lex_state = 4}, + [2721] = {.lex_state = 9, .external_lex_state = 4}, [2722] = {.lex_state = 2, .external_lex_state = 3}, - [2723] = {.lex_state = 7, .external_lex_state = 4}, - [2724] = {.lex_state = 9, .external_lex_state = 6}, - [2725] = {.lex_state = 9, .external_lex_state = 6}, - [2726] = {.lex_state = 2, .external_lex_state = 3}, - [2727] = {.lex_state = 0}, - [2728] = {.lex_state = 2, .external_lex_state = 5}, - [2729] = {.lex_state = 9, .external_lex_state = 6}, - [2730] = {.lex_state = 2, .external_lex_state = 5}, + [2723] = {.lex_state = 2, .external_lex_state = 3}, + [2724] = {.lex_state = 7, .external_lex_state = 5}, + [2725] = {.lex_state = 7, .external_lex_state = 6}, + [2726] = {.lex_state = 9, .external_lex_state = 4}, + [2727] = {.lex_state = 7, .external_lex_state = 5}, + [2728] = {.lex_state = 2, .external_lex_state = 3}, + [2729] = {.lex_state = 7, .external_lex_state = 6}, + [2730] = {.lex_state = 7, .external_lex_state = 5}, [2731] = {.lex_state = 2, .external_lex_state = 3}, - [2732] = {.lex_state = 9, .external_lex_state = 6}, - [2733] = {.lex_state = 7, .external_lex_state = 4}, - [2734] = {.lex_state = 0}, - [2735] = {.lex_state = 90}, - [2736] = {.lex_state = 2, .external_lex_state = 5}, - [2737] = {.lex_state = 2, .external_lex_state = 3}, - [2738] = {.lex_state = 9, .external_lex_state = 6}, - [2739] = {.lex_state = 7, .external_lex_state = 4}, - [2740] = {.lex_state = 7, .external_lex_state = 4}, - [2741] = {.lex_state = 7, .external_lex_state = 4}, - [2742] = {.lex_state = 9, .external_lex_state = 6}, - [2743] = {.lex_state = 2, .external_lex_state = 3}, - [2744] = {.lex_state = 2, .external_lex_state = 5}, - [2745] = {.lex_state = 7, .external_lex_state = 4}, - [2746] = {.lex_state = 9, .external_lex_state = 6}, + [2732] = {.lex_state = 9, .external_lex_state = 4}, + [2733] = {.lex_state = 9, .external_lex_state = 4}, + [2734] = {.lex_state = 7, .external_lex_state = 6}, + [2735] = {.lex_state = 9, .external_lex_state = 4}, + [2736] = {.lex_state = 7, .external_lex_state = 6}, + [2737] = {.lex_state = 7, .external_lex_state = 5}, + [2738] = {.lex_state = 7, .external_lex_state = 5}, + [2739] = {.lex_state = 7, .external_lex_state = 6}, + [2740] = {.lex_state = 91}, + [2741] = {.lex_state = 7, .external_lex_state = 6}, + [2742] = {.lex_state = 7, .external_lex_state = 5}, + [2743] = {.lex_state = 9, .external_lex_state = 4}, + [2744] = {.lex_state = 91}, + [2745] = {.lex_state = 9, .external_lex_state = 4}, + [2746] = {.lex_state = 7, .external_lex_state = 5}, [2747] = {.lex_state = 2, .external_lex_state = 3}, - [2748] = {.lex_state = 2, .external_lex_state = 5}, - [2749] = {.lex_state = 90}, - [2750] = {.lex_state = 2, .external_lex_state = 5}, - [2751] = {.lex_state = 90}, - [2752] = {.lex_state = 90}, - [2753] = {.lex_state = 90}, - [2754] = {.lex_state = 90}, - [2755] = {.lex_state = 87}, - [2756] = {.lex_state = 0}, - [2757] = {.lex_state = 87}, - [2758] = {.lex_state = 90}, - [2759] = {.lex_state = 0}, - [2760] = {.lex_state = 90}, - [2761] = {.lex_state = 86}, - [2762] = {.lex_state = 90}, - [2763] = {.lex_state = 0}, - [2764] = {.lex_state = 90}, - [2765] = {.lex_state = 0}, - [2766] = {.lex_state = 92}, - [2767] = {.lex_state = 0}, - [2768] = {.lex_state = 90}, - [2769] = {.lex_state = 23}, - [2770] = {.lex_state = 9, .external_lex_state = 6}, - [2771] = {.lex_state = 90}, - [2772] = {.lex_state = 9, .external_lex_state = 6}, - [2773] = {.lex_state = 7, .external_lex_state = 4}, - [2774] = {.lex_state = 2, .external_lex_state = 5}, - [2775] = {.lex_state = 2, .external_lex_state = 3}, - [2776] = {.lex_state = 9, .external_lex_state = 6}, - [2777] = {.lex_state = 7, .external_lex_state = 4}, - [2778] = {.lex_state = 90}, - [2779] = {.lex_state = 0}, - [2780] = {.lex_state = 7, .external_lex_state = 4}, - [2781] = {.lex_state = 9, .external_lex_state = 6}, - [2782] = {.lex_state = 2, .external_lex_state = 3}, - [2783] = {.lex_state = 2, .external_lex_state = 5}, - [2784] = {.lex_state = 7, .external_lex_state = 4}, - [2785] = {.lex_state = 92}, - [2786] = {.lex_state = 7, .external_lex_state = 4}, - [2787] = {.lex_state = 9, .external_lex_state = 6}, - [2788] = {.lex_state = 2, .external_lex_state = 3}, - [2789] = {.lex_state = 2, .external_lex_state = 5}, - [2790] = {.lex_state = 90}, - [2791] = {.lex_state = 92}, - [2792] = {.lex_state = 9, .external_lex_state = 6}, - [2793] = {.lex_state = 0}, - [2794] = {.lex_state = 0}, - [2795] = {.lex_state = 0}, - [2796] = {.lex_state = 90}, - [2797] = {.lex_state = 90}, - [2798] = {.lex_state = 92}, - [2799] = {.lex_state = 90}, - [2800] = {.lex_state = 2, .external_lex_state = 3}, - [2801] = {.lex_state = 90}, - [2802] = {.lex_state = 7, .external_lex_state = 4}, - [2803] = {.lex_state = 9, .external_lex_state = 6}, - [2804] = {.lex_state = 0}, - [2805] = {.lex_state = 2, .external_lex_state = 3}, - [2806] = {.lex_state = 7, .external_lex_state = 4}, - [2807] = {.lex_state = 9, .external_lex_state = 6}, - [2808] = {.lex_state = 2, .external_lex_state = 3}, - [2809] = {.lex_state = 2, .external_lex_state = 5}, - [2810] = {.lex_state = 7, .external_lex_state = 4}, - [2811] = {.lex_state = 0}, - [2812] = {.lex_state = 90}, - [2813] = {.lex_state = 2, .external_lex_state = 5}, - [2814] = {.lex_state = 90}, - [2815] = {.lex_state = 86}, - [2816] = {.lex_state = 2, .external_lex_state = 5}, - [2817] = {.lex_state = 0}, - [2818] = {.lex_state = 0}, - [2819] = {.lex_state = 2, .external_lex_state = 3}, - [2820] = {.lex_state = 2, .external_lex_state = 5}, - [2821] = {.lex_state = 2, .external_lex_state = 3}, - [2822] = {.lex_state = 9, .external_lex_state = 6}, - [2823] = {.lex_state = 7, .external_lex_state = 4}, + [2748] = {.lex_state = 0}, + [2749] = {.lex_state = 0}, + [2750] = {.lex_state = 7, .external_lex_state = 5}, + [2751] = {.lex_state = 7, .external_lex_state = 6}, + [2752] = {.lex_state = 7, .external_lex_state = 5}, + [2753] = {.lex_state = 7, .external_lex_state = 6}, + [2754] = {.lex_state = 2, .external_lex_state = 3}, + [2755] = {.lex_state = 2, .external_lex_state = 3}, + [2756] = {.lex_state = 7, .external_lex_state = 6}, + [2757] = {.lex_state = 9, .external_lex_state = 4}, + [2758] = {.lex_state = 87}, + [2759] = {.lex_state = 2, .external_lex_state = 3}, + [2760] = {.lex_state = 7, .external_lex_state = 6}, + [2761] = {.lex_state = 7, .external_lex_state = 6}, + [2762] = {.lex_state = 7, .external_lex_state = 5}, + [2763] = {.lex_state = 9, .external_lex_state = 4}, + [2764] = {.lex_state = 2, .external_lex_state = 3}, + [2765] = {.lex_state = 7, .external_lex_state = 5}, + [2766] = {.lex_state = 7, .external_lex_state = 6}, + [2767] = {.lex_state = 7, .external_lex_state = 5}, + [2768] = {.lex_state = 2, .external_lex_state = 3}, + [2769] = {.lex_state = 0}, + [2770] = {.lex_state = 91}, + [2771] = {.lex_state = 9, .external_lex_state = 4}, + [2772] = {.lex_state = 9, .external_lex_state = 4}, + [2773] = {.lex_state = 2, .external_lex_state = 3}, + [2774] = {.lex_state = 7, .external_lex_state = 6}, + [2775] = {.lex_state = 9, .external_lex_state = 4}, + [2776] = {.lex_state = 7, .external_lex_state = 5}, + [2777] = {.lex_state = 7, .external_lex_state = 6}, + [2778] = {.lex_state = 2, .external_lex_state = 3}, + [2779] = {.lex_state = 2, .external_lex_state = 3}, + [2780] = {.lex_state = 9, .external_lex_state = 4}, + [2781] = {.lex_state = 91}, + [2782] = {.lex_state = 7, .external_lex_state = 5}, + [2783] = {.lex_state = 7, .external_lex_state = 6}, + [2784] = {.lex_state = 9, .external_lex_state = 4}, + [2785] = {.lex_state = 9, .external_lex_state = 4}, + [2786] = {.lex_state = 2, .external_lex_state = 3}, + [2787] = {.lex_state = 2, .external_lex_state = 3}, + [2788] = {.lex_state = 7, .external_lex_state = 5}, + [2789] = {.lex_state = 7, .external_lex_state = 5}, + [2790] = {.lex_state = 7, .external_lex_state = 6}, + [2791] = {.lex_state = 7, .external_lex_state = 6}, + [2792] = {.lex_state = 7, .external_lex_state = 5}, + [2793] = {.lex_state = 2, .external_lex_state = 3}, + [2794] = {.lex_state = 91}, + [2795] = {.lex_state = 93}, + [2796] = {.lex_state = 0}, + [2797] = {.lex_state = 0}, + [2798] = {.lex_state = 88}, + [2799] = {.lex_state = 91}, + [2800] = {.lex_state = 88}, + [2801] = {.lex_state = 91}, + [2802] = {.lex_state = 0}, + [2803] = {.lex_state = 91}, + [2804] = {.lex_state = 87}, + [2805] = {.lex_state = 0}, + [2806] = {.lex_state = 91}, + [2807] = {.lex_state = 91}, + [2808] = {.lex_state = 23}, + [2809] = {.lex_state = 93}, + [2810] = {.lex_state = 91}, + [2811] = {.lex_state = 91}, + [2812] = {.lex_state = 91}, + [2813] = {.lex_state = 0}, + [2814] = {.lex_state = 0}, + [2815] = {.lex_state = 2, .external_lex_state = 3}, + [2816] = {.lex_state = 7, .external_lex_state = 5}, + [2817] = {.lex_state = 7, .external_lex_state = 6}, + [2818] = {.lex_state = 91}, + [2819] = {.lex_state = 9, .external_lex_state = 4}, + [2820] = {.lex_state = 0}, + [2821] = {.lex_state = 7, .external_lex_state = 5}, + [2822] = {.lex_state = 91}, + [2823] = {.lex_state = 2, .external_lex_state = 3}, [2824] = {.lex_state = 0}, - [2825] = {.lex_state = 0}, - [2826] = {.lex_state = 92}, - [2827] = {.lex_state = 2, .external_lex_state = 3}, - [2828] = {.lex_state = 0}, - [2829] = {.lex_state = 2, .external_lex_state = 5}, + [2825] = {.lex_state = 2, .external_lex_state = 3}, + [2826] = {.lex_state = 2, .external_lex_state = 3}, + [2827] = {.lex_state = 9, .external_lex_state = 4}, + [2828] = {.lex_state = 93}, + [2829] = {.lex_state = 7, .external_lex_state = 5}, [2830] = {.lex_state = 0}, - [2831] = {.lex_state = 90}, - [2832] = {.lex_state = 2, .external_lex_state = 5}, - [2833] = {.lex_state = 0}, - [2834] = {.lex_state = 2, .external_lex_state = 3}, - [2835] = {.lex_state = 2, .external_lex_state = 5}, - [2836] = {.lex_state = 2, .external_lex_state = 3}, - [2837] = {.lex_state = 9, .external_lex_state = 6}, - [2838] = {.lex_state = 7, .external_lex_state = 4}, + [2831] = {.lex_state = 0}, + [2832] = {.lex_state = 7, .external_lex_state = 6}, + [2833] = {.lex_state = 91}, + [2834] = {.lex_state = 9, .external_lex_state = 4}, + [2835] = {.lex_state = 91}, + [2836] = {.lex_state = 93}, + [2837] = {.lex_state = 0}, + [2838] = {.lex_state = 0}, [2839] = {.lex_state = 0}, - [2840] = {.lex_state = 7, .external_lex_state = 4}, - [2841] = {.lex_state = 0}, - [2842] = {.lex_state = 9, .external_lex_state = 6}, - [2843] = {.lex_state = 2, .external_lex_state = 3}, - [2844] = {.lex_state = 2, .external_lex_state = 5}, - [2845] = {.lex_state = 9, .external_lex_state = 6}, - [2846] = {.lex_state = 7, .external_lex_state = 4}, - [2847] = {.lex_state = 0}, - [2848] = {.lex_state = 90}, - [2849] = {.lex_state = 86}, - [2850] = {.lex_state = 0}, - [2851] = {.lex_state = 0}, - [2852] = {.lex_state = 92}, - [2853] = {.lex_state = 0}, - [2854] = {.lex_state = 0}, - [2855] = {.lex_state = 92}, - [2856] = {.lex_state = 90}, - [2857] = {.lex_state = 90}, - [2858] = {.lex_state = 90}, - [2859] = {.lex_state = 90}, - [2860] = {.lex_state = 2, .external_lex_state = 5}, - [2861] = {.lex_state = 90}, - [2862] = {.lex_state = 2, .external_lex_state = 5}, - [2863] = {.lex_state = 2, .external_lex_state = 3}, - [2864] = {.lex_state = 9, .external_lex_state = 6}, - [2865] = {.lex_state = 7, .external_lex_state = 4}, - [2866] = {.lex_state = 2, .external_lex_state = 3}, - [2867] = {.lex_state = 7, .external_lex_state = 4}, - [2868] = {.lex_state = 9, .external_lex_state = 6}, - [2869] = {.lex_state = 9, .external_lex_state = 6}, + [2840] = {.lex_state = 91}, + [2841] = {.lex_state = 91}, + [2842] = {.lex_state = 93}, + [2843] = {.lex_state = 0}, + [2844] = {.lex_state = 87}, + [2845] = {.lex_state = 9, .external_lex_state = 4}, + [2846] = {.lex_state = 2, .external_lex_state = 3}, + [2847] = {.lex_state = 9, .external_lex_state = 4}, + [2848] = {.lex_state = 2, .external_lex_state = 3}, + [2849] = {.lex_state = 7, .external_lex_state = 5}, + [2850] = {.lex_state = 7, .external_lex_state = 6}, + [2851] = {.lex_state = 7, .external_lex_state = 5}, + [2852] = {.lex_state = 2, .external_lex_state = 3}, + [2853] = {.lex_state = 9, .external_lex_state = 4}, + [2854] = {.lex_state = 7, .external_lex_state = 5}, + [2855] = {.lex_state = 7, .external_lex_state = 6}, + [2856] = {.lex_state = 91}, + [2857] = {.lex_state = 7, .external_lex_state = 6}, + [2858] = {.lex_state = 7, .external_lex_state = 6}, + [2859] = {.lex_state = 91}, + [2860] = {.lex_state = 0}, + [2861] = {.lex_state = 7, .external_lex_state = 5}, + [2862] = {.lex_state = 2, .external_lex_state = 3}, + [2863] = {.lex_state = 9, .external_lex_state = 4}, + [2864] = {.lex_state = 91}, + [2865] = {.lex_state = 93}, + [2866] = {.lex_state = 0}, + [2867] = {.lex_state = 0}, + [2868] = {.lex_state = 93}, + [2869] = {.lex_state = 9, .external_lex_state = 4}, [2870] = {.lex_state = 2, .external_lex_state = 3}, - [2871] = {.lex_state = 7, .external_lex_state = 4}, - [2872] = {.lex_state = 2, .external_lex_state = 5}, - [2873] = {.lex_state = 2, .external_lex_state = 5}, - [2874] = {.lex_state = 0}, - [2875] = {.lex_state = 92}, - [2876] = {.lex_state = 2, .external_lex_state = 5}, + [2871] = {.lex_state = 7, .external_lex_state = 6}, + [2872] = {.lex_state = 7, .external_lex_state = 5}, + [2873] = {.lex_state = 7, .external_lex_state = 5}, + [2874] = {.lex_state = 7, .external_lex_state = 6}, + [2875] = {.lex_state = 87}, + [2876] = {.lex_state = 0}, [2877] = {.lex_state = 2, .external_lex_state = 3}, - [2878] = {.lex_state = 9, .external_lex_state = 6}, + [2878] = {.lex_state = 9, .external_lex_state = 4}, [2879] = {.lex_state = 0}, - [2880] = {.lex_state = 90}, - [2881] = {.lex_state = 7, .external_lex_state = 4}, - [2882] = {.lex_state = 9, .external_lex_state = 6}, - [2883] = {.lex_state = 2, .external_lex_state = 3}, - [2884] = {.lex_state = 2, .external_lex_state = 5}, - [2885] = {.lex_state = 0}, + [2880] = {.lex_state = 93}, + [2881] = {.lex_state = 9, .external_lex_state = 4}, + [2882] = {.lex_state = 9, .external_lex_state = 4}, + [2883] = {.lex_state = 0}, + [2884] = {.lex_state = 9, .external_lex_state = 4}, + [2885] = {.lex_state = 91}, [2886] = {.lex_state = 0}, - [2887] = {.lex_state = 90}, - [2888] = {.lex_state = 7, .external_lex_state = 4}, + [2887] = {.lex_state = 7, .external_lex_state = 6}, + [2888] = {.lex_state = 2, .external_lex_state = 3}, [2889] = {.lex_state = 0}, - [2890] = {.lex_state = 90}, - [2891] = {.lex_state = 90}, - [2892] = {.lex_state = 90}, - [2893] = {.lex_state = 16, .external_lex_state = 5}, - [2894] = {.lex_state = 90}, - [2895] = {.lex_state = 90}, - [2896] = {.lex_state = 90}, - [2897] = {.lex_state = 0}, - [2898] = {.lex_state = 0}, - [2899] = {.lex_state = 0}, - [2900] = {.lex_state = 90}, - [2901] = {.lex_state = 90}, - [2902] = {.lex_state = 90}, - [2903] = {.lex_state = 0}, - [2904] = {.lex_state = 0}, - [2905] = {.lex_state = 90}, - [2906] = {.lex_state = 90}, - [2907] = {.lex_state = 90}, - [2908] = {.lex_state = 90}, - [2909] = {.lex_state = 86}, - [2910] = {.lex_state = 16, .external_lex_state = 3}, - [2911] = {.lex_state = 90}, - [2912] = {.lex_state = 87}, - [2913] = {.lex_state = 90}, - [2914] = {.lex_state = 90}, - [2915] = {.lex_state = 90}, - [2916] = {.lex_state = 87}, - [2917] = {.lex_state = 90}, - [2918] = {.lex_state = 90}, - [2919] = {.lex_state = 90}, - [2920] = {.lex_state = 90}, - [2921] = {.lex_state = 90}, - [2922] = {.lex_state = 90}, - [2923] = {.lex_state = 90}, - [2924] = {.lex_state = 90}, + [2890] = {.lex_state = 91}, + [2891] = {.lex_state = 7, .external_lex_state = 5}, + [2892] = {.lex_state = 9, .external_lex_state = 4}, + [2893] = {.lex_state = 7, .external_lex_state = 6}, + [2894] = {.lex_state = 7, .external_lex_state = 6}, + [2895] = {.lex_state = 7, .external_lex_state = 5}, + [2896] = {.lex_state = 2, .external_lex_state = 3}, + [2897] = {.lex_state = 9, .external_lex_state = 4}, + [2898] = {.lex_state = 2, .external_lex_state = 3}, + [2899] = {.lex_state = 2, .external_lex_state = 3}, + [2900] = {.lex_state = 2, .external_lex_state = 3}, + [2901] = {.lex_state = 7, .external_lex_state = 5}, + [2902] = {.lex_state = 7, .external_lex_state = 6}, + [2903] = {.lex_state = 7, .external_lex_state = 5}, + [2904] = {.lex_state = 9, .external_lex_state = 4}, + [2905] = {.lex_state = 2, .external_lex_state = 3}, + [2906] = {.lex_state = 7, .external_lex_state = 5}, + [2907] = {.lex_state = 7, .external_lex_state = 6}, + [2908] = {.lex_state = 0}, + [2909] = {.lex_state = 7, .external_lex_state = 6}, + [2910] = {.lex_state = 7, .external_lex_state = 5}, + [2911] = {.lex_state = 91}, + [2912] = {.lex_state = 91}, + [2913] = {.lex_state = 91}, + [2914] = {.lex_state = 91}, + [2915] = {.lex_state = 91}, + [2916] = {.lex_state = 0}, + [2917] = {.lex_state = 0}, + [2918] = {.lex_state = 7, .external_lex_state = 6}, + [2919] = {.lex_state = 0}, + [2920] = {.lex_state = 91}, + [2921] = {.lex_state = 0}, + [2922] = {.lex_state = 7, .external_lex_state = 5}, + [2923] = {.lex_state = 9, .external_lex_state = 4}, + [2924] = {.lex_state = 7, .external_lex_state = 6}, [2925] = {.lex_state = 0}, - [2926] = {.lex_state = 90}, + [2926] = {.lex_state = 7, .external_lex_state = 5}, [2927] = {.lex_state = 0}, - [2928] = {.lex_state = 18, .external_lex_state = 6}, - [2929] = {.lex_state = 90}, - [2930] = {.lex_state = 0}, - [2931] = {.lex_state = 0}, - [2932] = {.lex_state = 90}, - [2933] = {.lex_state = 90}, - [2934] = {.lex_state = 90}, - [2935] = {.lex_state = 90}, - [2936] = {.lex_state = 90}, - [2937] = {.lex_state = 0}, - [2938] = {.lex_state = 17, .external_lex_state = 4}, - [2939] = {.lex_state = 90}, - [2940] = {.lex_state = 90}, - [2941] = {.lex_state = 90}, - [2942] = {.lex_state = 90}, - [2943] = {.lex_state = 90}, - [2944] = {.lex_state = 90}, + [2928] = {.lex_state = 7, .external_lex_state = 6}, + [2929] = {.lex_state = 0}, + [2930] = {.lex_state = 91}, + [2931] = {.lex_state = 2, .external_lex_state = 3}, + [2932] = {.lex_state = 93}, + [2933] = {.lex_state = 9, .external_lex_state = 4}, + [2934] = {.lex_state = 0}, + [2935] = {.lex_state = 0}, + [2936] = {.lex_state = 91}, + [2937] = {.lex_state = 91}, + [2938] = {.lex_state = 91}, + [2939] = {.lex_state = 91}, + [2940] = {.lex_state = 91}, + [2941] = {.lex_state = 91}, + [2942] = {.lex_state = 91}, + [2943] = {.lex_state = 0}, + [2944] = {.lex_state = 18, .external_lex_state = 3}, [2945] = {.lex_state = 0}, - [2946] = {.lex_state = 90}, - [2947] = {.lex_state = 90}, - [2948] = {.lex_state = 90}, - [2949] = {.lex_state = 90}, - [2950] = {.lex_state = 0}, - [2951] = {.lex_state = 86}, - [2952] = {.lex_state = 86}, - [2953] = {.lex_state = 2, .external_lex_state = 3}, - [2954] = {.lex_state = 90}, - [2955] = {.lex_state = 2, .external_lex_state = 3}, - [2956] = {.lex_state = 2, .external_lex_state = 3}, - [2957] = {.lex_state = 90}, - [2958] = {.lex_state = 7, .external_lex_state = 4}, - [2959] = {.lex_state = 90}, - [2960] = {.lex_state = 90}, - [2961] = {.lex_state = 2, .external_lex_state = 5}, - [2962] = {.lex_state = 90}, - [2963] = {.lex_state = 92}, - [2964] = {.lex_state = 2, .external_lex_state = 5}, - [2965] = {.lex_state = 90}, - [2966] = {.lex_state = 90}, - [2967] = {.lex_state = 92}, - [2968] = {.lex_state = 90}, - [2969] = {.lex_state = 0}, - [2970] = {.lex_state = 2, .external_lex_state = 3}, - [2971] = {.lex_state = 90}, - [2972] = {.lex_state = 92}, - [2973] = {.lex_state = 90}, - [2974] = {.lex_state = 86}, - [2975] = {.lex_state = 7, .external_lex_state = 4}, - [2976] = {.lex_state = 2, .external_lex_state = 5}, - [2977] = {.lex_state = 0}, - [2978] = {.lex_state = 0}, - [2979] = {.lex_state = 0}, - [2980] = {.lex_state = 0}, - [2981] = {.lex_state = 9, .external_lex_state = 6}, - [2982] = {.lex_state = 90}, - [2983] = {.lex_state = 90}, - [2984] = {.lex_state = 90}, - [2985] = {.lex_state = 9, .external_lex_state = 6}, - [2986] = {.lex_state = 9, .external_lex_state = 6}, - [2987] = {.lex_state = 90}, - [2988] = {.lex_state = 90}, - [2989] = {.lex_state = 90}, - [2990] = {.lex_state = 7, .external_lex_state = 4}, - [2991] = {.lex_state = 9, .external_lex_state = 6}, - [2992] = {.lex_state = 90}, - [2993] = {.lex_state = 7, .external_lex_state = 4}, - [2994] = {.lex_state = 90}, - [2995] = {.lex_state = 2, .external_lex_state = 5}, - [2996] = {.lex_state = 90}, - [2997] = {.lex_state = 90}, - [2998] = {.lex_state = 90}, - [2999] = {.lex_state = 0}, - [3000] = {.lex_state = 90}, - [3001] = {.lex_state = 90}, - [3002] = {.lex_state = 90}, - [3003] = {.lex_state = 0}, - [3004] = {.lex_state = 90}, - [3005] = {.lex_state = 90}, - [3006] = {.lex_state = 90}, - [3007] = {.lex_state = 0}, - [3008] = {.lex_state = 90}, - [3009] = {.lex_state = 90}, - [3010] = {.lex_state = 86}, - [3011] = {.lex_state = 86}, - [3012] = {.lex_state = 0}, - [3013] = {.lex_state = 0}, - [3014] = {.lex_state = 90}, - [3015] = {.lex_state = 90}, - [3016] = {.lex_state = 90}, - [3017] = {.lex_state = 90}, - [3018] = {.lex_state = 90}, + [2946] = {.lex_state = 91}, + [2947] = {.lex_state = 91}, + [2948] = {.lex_state = 91}, + [2949] = {.lex_state = 0}, + [2950] = {.lex_state = 91}, + [2951] = {.lex_state = 91}, + [2952] = {.lex_state = 91}, + [2953] = {.lex_state = 16, .external_lex_state = 5}, + [2954] = {.lex_state = 91}, + [2955] = {.lex_state = 91}, + [2956] = {.lex_state = 91}, + [2957] = {.lex_state = 91}, + [2958] = {.lex_state = 91}, + [2959] = {.lex_state = 91}, + [2960] = {.lex_state = 91}, + [2961] = {.lex_state = 91}, + [2962] = {.lex_state = 91}, + [2963] = {.lex_state = 0}, + [2964] = {.lex_state = 91}, + [2965] = {.lex_state = 0}, + [2966] = {.lex_state = 91}, + [2967] = {.lex_state = 91}, + [2968] = {.lex_state = 0}, + [2969] = {.lex_state = 16, .external_lex_state = 6}, + [2970] = {.lex_state = 0}, + [2971] = {.lex_state = 0}, + [2972] = {.lex_state = 88}, + [2973] = {.lex_state = 91}, + [2974] = {.lex_state = 91}, + [2975] = {.lex_state = 91}, + [2976] = {.lex_state = 91}, + [2977] = {.lex_state = 91}, + [2978] = {.lex_state = 91}, + [2979] = {.lex_state = 87}, + [2980] = {.lex_state = 91}, + [2981] = {.lex_state = 0}, + [2982] = {.lex_state = 91}, + [2983] = {.lex_state = 91}, + [2984] = {.lex_state = 17, .external_lex_state = 4}, + [2985] = {.lex_state = 88}, + [2986] = {.lex_state = 2, .external_lex_state = 3}, + [2987] = {.lex_state = 91}, + [2988] = {.lex_state = 7, .external_lex_state = 6}, + [2989] = {.lex_state = 93}, + [2990] = {.lex_state = 87}, + [2991] = {.lex_state = 9, .external_lex_state = 4}, + [2992] = {.lex_state = 7, .external_lex_state = 6}, + [2993] = {.lex_state = 7, .external_lex_state = 6}, + [2994] = {.lex_state = 9, .external_lex_state = 4}, + [2995] = {.lex_state = 91}, + [2996] = {.lex_state = 7, .external_lex_state = 5}, + [2997] = {.lex_state = 91}, + [2998] = {.lex_state = 93}, + [2999] = {.lex_state = 9, .external_lex_state = 4}, + [3000] = {.lex_state = 91}, + [3001] = {.lex_state = 91}, + [3002] = {.lex_state = 91}, + [3003] = {.lex_state = 91}, + [3004] = {.lex_state = 91}, + [3005] = {.lex_state = 7, .external_lex_state = 6}, + [3006] = {.lex_state = 7, .external_lex_state = 5}, + [3007] = {.lex_state = 91}, + [3008] = {.lex_state = 91}, + [3009] = {.lex_state = 87}, + [3010] = {.lex_state = 0}, + [3011] = {.lex_state = 9, .external_lex_state = 4}, + [3012] = {.lex_state = 91}, + [3013] = {.lex_state = 2, .external_lex_state = 3}, + [3014] = {.lex_state = 91}, + [3015] = {.lex_state = 91}, + [3016] = {.lex_state = 91}, + [3017] = {.lex_state = 2, .external_lex_state = 3}, + [3018] = {.lex_state = 91}, [3019] = {.lex_state = 0}, [3020] = {.lex_state = 0}, - [3021] = {.lex_state = 90}, - [3022] = {.lex_state = 90}, - [3023] = {.lex_state = 90}, - [3024] = {.lex_state = 90}, - [3025] = {.lex_state = 0}, - [3026] = {.lex_state = 86}, - [3027] = {.lex_state = 86}, - [3028] = {.lex_state = 90}, - [3029] = {.lex_state = 90}, - [3030] = {.lex_state = 90}, - [3031] = {.lex_state = 90}, - [3032] = {.lex_state = 86}, - [3033] = {.lex_state = 86}, - [3034] = {.lex_state = 90}, - [3035] = {.lex_state = 90}, - [3036] = {.lex_state = 0}, + [3021] = {.lex_state = 2, .external_lex_state = 3}, + [3022] = {.lex_state = 91}, + [3023] = {.lex_state = 7, .external_lex_state = 5}, + [3024] = {.lex_state = 93}, + [3025] = {.lex_state = 7, .external_lex_state = 5}, + [3026] = {.lex_state = 0}, + [3027] = {.lex_state = 91}, + [3028] = {.lex_state = 91}, + [3029] = {.lex_state = 0}, + [3030] = {.lex_state = 91}, + [3031] = {.lex_state = 91}, + [3032] = {.lex_state = 87}, + [3033] = {.lex_state = 0}, + [3034] = {.lex_state = 91}, + [3035] = {.lex_state = 91}, + [3036] = {.lex_state = 91}, [3037] = {.lex_state = 0}, - [3038] = {.lex_state = 90}, - [3039] = {.lex_state = 90}, - [3040] = {.lex_state = 90}, - [3041] = {.lex_state = 86}, - [3042] = {.lex_state = 0}, - [3043] = {.lex_state = 90}, - [3044] = {.lex_state = 90}, - [3045] = {.lex_state = 86}, + [3038] = {.lex_state = 91}, + [3039] = {.lex_state = 91}, + [3040] = {.lex_state = 91}, + [3041] = {.lex_state = 91}, + [3042] = {.lex_state = 91}, + [3043] = {.lex_state = 0}, + [3044] = {.lex_state = 91}, + [3045] = {.lex_state = 91}, [3046] = {.lex_state = 0}, - [3047] = {.lex_state = 90}, - [3048] = {.lex_state = 90}, - [3049] = {.lex_state = 0}, - [3050] = {.lex_state = 90}, - [3051] = {.lex_state = 90}, - [3052] = {.lex_state = 86}, - [3053] = {.lex_state = 86}, + [3047] = {.lex_state = 91}, + [3048] = {.lex_state = 91}, + [3049] = {.lex_state = 91}, + [3050] = {.lex_state = 0}, + [3051] = {.lex_state = 87}, + [3052] = {.lex_state = 87}, + [3053] = {.lex_state = 91}, [3054] = {.lex_state = 0}, - [3055] = {.lex_state = 90}, - [3056] = {.lex_state = 90}, - [3057] = {.lex_state = 90}, - [3058] = {.lex_state = 90}, - [3059] = {.lex_state = 0}, - [3060] = {.lex_state = 90}, - [3061] = {.lex_state = 0}, - [3062] = {.lex_state = 86}, - [3063] = {.lex_state = 86}, + [3055] = {.lex_state = 87}, + [3056] = {.lex_state = 87}, + [3057] = {.lex_state = 87}, + [3058] = {.lex_state = 87}, + [3059] = {.lex_state = 91}, + [3060] = {.lex_state = 91}, + [3061] = {.lex_state = 91}, + [3062] = {.lex_state = 0}, + [3063] = {.lex_state = 91}, [3064] = {.lex_state = 0}, - [3065] = {.lex_state = 90}, - [3066] = {.lex_state = 90}, - [3067] = {.lex_state = 90}, - [3068] = {.lex_state = 90}, - [3069] = {.lex_state = 86}, - [3070] = {.lex_state = 90}, - [3071] = {.lex_state = 90}, - [3072] = {.lex_state = 90}, - [3073] = {.lex_state = 86}, - [3074] = {.lex_state = 86}, + [3065] = {.lex_state = 91}, + [3066] = {.lex_state = 91}, + [3067] = {.lex_state = 0}, + [3068] = {.lex_state = 0}, + [3069] = {.lex_state = 91}, + [3070] = {.lex_state = 91}, + [3071] = {.lex_state = 91}, + [3072] = {.lex_state = 91}, + [3073] = {.lex_state = 87}, + [3074] = {.lex_state = 0}, [3075] = {.lex_state = 0}, - [3076] = {.lex_state = 90}, - [3077] = {.lex_state = 86}, - [3078] = {.lex_state = 90}, - [3079] = {.lex_state = 90}, - [3080] = {.lex_state = 90}, - [3081] = {.lex_state = 90}, - [3082] = {.lex_state = 90}, - [3083] = {.lex_state = 0}, - [3084] = {.lex_state = 86}, - [3085] = {.lex_state = 90}, - [3086] = {.lex_state = 90}, - [3087] = {.lex_state = 90}, - [3088] = {.lex_state = 0}, - [3089] = {.lex_state = 0}, - [3090] = {.lex_state = 90}, - [3091] = {.lex_state = 90}, - [3092] = {.lex_state = 0}, - [3093] = {.lex_state = 0}, - [3094] = {.lex_state = 90}, - [3095] = {.lex_state = 90}, + [3076] = {.lex_state = 91}, + [3077] = {.lex_state = 91}, + [3078] = {.lex_state = 91}, + [3079] = {.lex_state = 87}, + [3080] = {.lex_state = 87}, + [3081] = {.lex_state = 91}, + [3082] = {.lex_state = 91}, + [3083] = {.lex_state = 91}, + [3084] = {.lex_state = 91}, + [3085] = {.lex_state = 91}, + [3086] = {.lex_state = 91}, + [3087] = {.lex_state = 0}, + [3088] = {.lex_state = 91}, + [3089] = {.lex_state = 87}, + [3090] = {.lex_state = 87}, + [3091] = {.lex_state = 91}, + [3092] = {.lex_state = 91}, + [3093] = {.lex_state = 91}, + [3094] = {.lex_state = 91}, + [3095] = {.lex_state = 91}, [3096] = {.lex_state = 0}, - [3097] = {.lex_state = 0}, - [3098] = {.lex_state = 0}, - [3099] = {.lex_state = 90}, - [3100] = {.lex_state = 90}, - [3101] = {.lex_state = 90}, - [3102] = {.lex_state = 90}, - [3103] = {.lex_state = 90}, - [3104] = {.lex_state = 90}, - [3105] = {.lex_state = 0}, - [3106] = {.lex_state = 0}, + [3097] = {.lex_state = 87}, + [3098] = {.lex_state = 91}, + [3099] = {.lex_state = 91}, + [3100] = {.lex_state = 87}, + [3101] = {.lex_state = 87}, + [3102] = {.lex_state = 91}, + [3103] = {.lex_state = 91}, + [3104] = {.lex_state = 91}, + [3105] = {.lex_state = 91}, + [3106] = {.lex_state = 87}, [3107] = {.lex_state = 0}, - [3108] = {.lex_state = 86}, - [3109] = {.lex_state = 0}, - [3110] = {.lex_state = 0}, + [3108] = {.lex_state = 91}, + [3109] = {.lex_state = 91}, + [3110] = {.lex_state = 87}, [3111] = {.lex_state = 0}, [3112] = {.lex_state = 0}, [3113] = {.lex_state = 0}, - [3114] = {.lex_state = 0}, + [3114] = {.lex_state = 91}, [3115] = {.lex_state = 0}, - [3116] = {.lex_state = 0}, - [3117] = {.lex_state = 0}, - [3118] = {.lex_state = 86}, - [3119] = {.lex_state = 90}, - [3120] = {.lex_state = 86}, - [3121] = {.lex_state = 0}, - [3122] = {.lex_state = 90}, - [3123] = {.lex_state = 90}, + [3116] = {.lex_state = 91}, + [3117] = {.lex_state = 91}, + [3118] = {.lex_state = 0}, + [3119] = {.lex_state = 91}, + [3120] = {.lex_state = 0}, + [3121] = {.lex_state = 91}, + [3122] = {.lex_state = 0}, + [3123] = {.lex_state = 91}, [3124] = {.lex_state = 0}, - [3125] = {.lex_state = 90}, - [3126] = {.lex_state = 0}, - [3127] = {.lex_state = 0}, + [3125] = {.lex_state = 91}, + [3126] = {.lex_state = 87}, + [3127] = {.lex_state = 91}, [3128] = {.lex_state = 0}, - [3129] = {.lex_state = 86}, + [3129] = {.lex_state = 0}, [3130] = {.lex_state = 0}, - [3131] = {.lex_state = 0}, + [3131] = {.lex_state = 91}, [3132] = {.lex_state = 0}, - [3133] = {.lex_state = 90}, - [3134] = {.lex_state = 90}, - [3135] = {.lex_state = 90}, - [3136] = {.lex_state = 90}, + [3133] = {.lex_state = 0}, + [3134] = {.lex_state = 91}, + [3135] = {.lex_state = 0}, + [3136] = {.lex_state = 0}, [3137] = {.lex_state = 0}, - [3138] = {.lex_state = 90}, + [3138] = {.lex_state = 0}, [3139] = {.lex_state = 0}, [3140] = {.lex_state = 0}, - [3141] = {.lex_state = 90}, - [3142] = {.lex_state = 90}, - [3143] = {.lex_state = 90}, - [3144] = {.lex_state = 90}, + [3141] = {.lex_state = 91}, + [3142] = {.lex_state = 0}, + [3143] = {.lex_state = 91}, + [3144] = {.lex_state = 0}, [3145] = {.lex_state = 0}, - [3146] = {.lex_state = 38}, + [3146] = {.lex_state = 0}, [3147] = {.lex_state = 0}, - [3148] = {.lex_state = 38}, + [3148] = {.lex_state = 0}, [3149] = {.lex_state = 0}, [3150] = {.lex_state = 0}, [3151] = {.lex_state = 0}, [3152] = {.lex_state = 0}, [3153] = {.lex_state = 0}, [3154] = {.lex_state = 0}, - [3155] = {.lex_state = 90}, + [3155] = {.lex_state = 87}, [3156] = {.lex_state = 0}, [3157] = {.lex_state = 0}, - [3158] = {.lex_state = 86}, + [3158] = {.lex_state = 0}, [3159] = {.lex_state = 0}, [3160] = {.lex_state = 0}, - [3161] = {.lex_state = 90}, + [3161] = {.lex_state = 91}, [3162] = {.lex_state = 0}, - [3163] = {.lex_state = 86}, - [3164] = {.lex_state = 86}, - [3165] = {.lex_state = 90}, - [3166] = {.lex_state = 90}, - [3167] = {.lex_state = 90}, - [3168] = {.lex_state = 0}, - [3169] = {.lex_state = 0}, - [3170] = {.lex_state = 0}, - [3171] = {.lex_state = 86}, - [3172] = {.lex_state = 86}, - [3173] = {.lex_state = 90}, - [3174] = {.lex_state = 90}, + [3163] = {.lex_state = 0}, + [3164] = {.lex_state = 91}, + [3165] = {.lex_state = 0}, + [3166] = {.lex_state = 91}, + [3167] = {.lex_state = 87}, + [3168] = {.lex_state = 91}, + [3169] = {.lex_state = 87}, + [3170] = {.lex_state = 87}, + [3171] = {.lex_state = 38}, + [3172] = {.lex_state = 87}, + [3173] = {.lex_state = 0}, + [3174] = {.lex_state = 87}, [3175] = {.lex_state = 0}, - [3176] = {.lex_state = 90}, + [3176] = {.lex_state = 87}, [3177] = {.lex_state = 0}, - [3178] = {.lex_state = 90}, - [3179] = {.lex_state = 90}, - [3180] = {.lex_state = 0}, + [3178] = {.lex_state = 0}, + [3179] = {.lex_state = 91}, + [3180] = {.lex_state = 91}, [3181] = {.lex_state = 0}, [3182] = {.lex_state = 0}, [3183] = {.lex_state = 0}, [3184] = {.lex_state = 0}, - [3185] = {.lex_state = 0}, + [3185] = {.lex_state = 91}, [3186] = {.lex_state = 0}, [3187] = {.lex_state = 0}, - [3188] = {.lex_state = 90}, - [3189] = {.lex_state = 0}, + [3188] = {.lex_state = 0}, + [3189] = {.lex_state = 91}, [3190] = {.lex_state = 0}, - [3191] = {.lex_state = 90}, + [3191] = {.lex_state = 0}, [3192] = {.lex_state = 0}, [3193] = {.lex_state = 0}, - [3194] = {.lex_state = 0}, + [3194] = {.lex_state = 91}, [3195] = {.lex_state = 0}, [3196] = {.lex_state = 0}, - [3197] = {.lex_state = 90}, + [3197] = {.lex_state = 0}, [3198] = {.lex_state = 0}, - [3199] = {.lex_state = 0}, + [3199] = {.lex_state = 38}, [3200] = {.lex_state = 0}, - [3201] = {.lex_state = 90}, + [3201] = {.lex_state = 0}, [3202] = {.lex_state = 0}, - [3203] = {.lex_state = 86}, + [3203] = {.lex_state = 0}, [3204] = {.lex_state = 0}, - [3205] = {.lex_state = 86}, - [3206] = {.lex_state = 90}, + [3205] = {.lex_state = 0}, + [3206] = {.lex_state = 0}, [3207] = {.lex_state = 0}, [3208] = {.lex_state = 0}, [3209] = {.lex_state = 0}, - [3210] = {.lex_state = 0}, - [3211] = {.lex_state = 0}, + [3210] = {.lex_state = 91}, + [3211] = {.lex_state = 91}, [3212] = {.lex_state = 0}, - [3213] = {.lex_state = 90}, - [3214] = {.lex_state = 0}, + [3213] = {.lex_state = 87}, + [3214] = {.lex_state = 91}, [3215] = {.lex_state = 0}, [3216] = {.lex_state = 0}, [3217] = {.lex_state = 0}, - [3218] = {.lex_state = 90}, - [3219] = {.lex_state = 90}, + [3218] = {.lex_state = 91}, + [3219] = {.lex_state = 0}, [3220] = {.lex_state = 0}, [3221] = {.lex_state = 0}, - [3222] = {.lex_state = 0}, - [3223] = {.lex_state = 90}, + [3222] = {.lex_state = 91}, + [3223] = {.lex_state = 0}, [3224] = {.lex_state = 0}, [3225] = {.lex_state = 0}, [3226] = {.lex_state = 0}, - [3227] = {.lex_state = 0}, + [3227] = {.lex_state = 91}, [3228] = {.lex_state = 0}, - [3229] = {.lex_state = 90}, + [3229] = {.lex_state = 0}, [3230] = {.lex_state = 0}, - [3231] = {.lex_state = 90}, - [3232] = {.lex_state = 90}, - [3233] = {.lex_state = 90}, - [3234] = {.lex_state = 90}, - [3235] = {.lex_state = 0}, + [3231] = {.lex_state = 0}, + [3232] = {.lex_state = 0}, + [3233] = {.lex_state = 0}, + [3234] = {.lex_state = 0}, + [3235] = {.lex_state = 91}, [3236] = {.lex_state = 0}, [3237] = {.lex_state = 0}, [3238] = {.lex_state = 0}, [3239] = {.lex_state = 0}, - [3240] = {.lex_state = 86}, + [3240] = {.lex_state = 91}, [3241] = {.lex_state = 0}, - [3242] = {.lex_state = 90}, - [3243] = {.lex_state = 90}, - [3244] = {.lex_state = 90}, + [3242] = {.lex_state = 0}, + [3243] = {.lex_state = 91}, + [3244] = {.lex_state = 0}, [3245] = {.lex_state = 0}, - [3246] = {.lex_state = 90}, - [3247] = {.lex_state = 0}, - [3248] = {.lex_state = 0}, + [3246] = {.lex_state = 87}, + [3247] = {.lex_state = 87}, + [3248] = {.lex_state = 91}, [3249] = {.lex_state = 0}, [3250] = {.lex_state = 0}, [3251] = {.lex_state = 0}, - [3252] = {.lex_state = 0}, + [3252] = {.lex_state = 91}, [3253] = {.lex_state = 0}, - [3254] = {.lex_state = 90}, - [3255] = {.lex_state = 90}, - [3256] = {.lex_state = 0}, - [3257] = {.lex_state = 90}, - [3258] = {.lex_state = 90}, + [3254] = {.lex_state = 0}, + [3255] = {.lex_state = 91}, + [3256] = {.lex_state = 91}, + [3257] = {.lex_state = 91}, + [3258] = {.lex_state = 91}, [3259] = {.lex_state = 0}, [3260] = {.lex_state = 0}, [3261] = {.lex_state = 0}, - [3262] = {.lex_state = 90}, - [3263] = {.lex_state = 90}, - [3264] = {.lex_state = 90}, - [3265] = {.lex_state = 86}, - [3266] = {.lex_state = 0}, - [3267] = {.lex_state = 0}, - [3268] = {.lex_state = 0}, - [3269] = {.lex_state = 86}, + [3262] = {.lex_state = 0}, + [3263] = {.lex_state = 91}, + [3264] = {.lex_state = 87}, + [3265] = {.lex_state = 91}, + [3266] = {.lex_state = 87}, + [3267] = {.lex_state = 91}, + [3268] = {.lex_state = 91}, + [3269] = {.lex_state = 0}, [3270] = {.lex_state = 0}, - [3271] = {.lex_state = 86}, - [3272] = {.lex_state = 90}, - [3273] = {.lex_state = 0}, + [3271] = {.lex_state = 0}, + [3272] = {.lex_state = 0}, + [3273] = {.lex_state = 91}, [3274] = {.lex_state = 0}, [3275] = {.lex_state = 0}, - [3276] = {.lex_state = 0}, - [3277] = {.lex_state = 86}, - [3278] = {.lex_state = 90}, - [3279] = {.lex_state = 0}, + [3276] = {.lex_state = 91}, + [3277] = {.lex_state = 87}, + [3278] = {.lex_state = 0}, + [3279] = {.lex_state = 91}, [3280] = {.lex_state = 0}, - [3281] = {.lex_state = 86}, - [3282] = {.lex_state = 90}, - [3283] = {.lex_state = 90}, - [3284] = {.lex_state = 90}, - [3285] = {.lex_state = 90}, - [3286] = {.lex_state = 90}, + [3281] = {.lex_state = 0}, + [3282] = {.lex_state = 0}, + [3283] = {.lex_state = 0}, + [3284] = {.lex_state = 0}, + [3285] = {.lex_state = 91}, + [3286] = {.lex_state = 0}, [3287] = {.lex_state = 0}, [3288] = {.lex_state = 0}, - [3289] = {.lex_state = 90}, - [3290] = {.lex_state = 38}, - [3291] = {.lex_state = 90}, - [3292] = {.lex_state = 90}, - [3293] = {.lex_state = 90}, - [3294] = {.lex_state = 0}, - [3295] = {.lex_state = 0}, + [3289] = {.lex_state = 0}, + [3290] = {.lex_state = 91}, + [3291] = {.lex_state = 0}, + [3292] = {.lex_state = 0}, + [3293] = {.lex_state = 0}, + [3294] = {.lex_state = 87}, + [3295] = {.lex_state = 91}, [3296] = {.lex_state = 0}, - [3297] = {.lex_state = 0}, - [3298] = {.lex_state = 90}, + [3297] = {.lex_state = 91}, + [3298] = {.lex_state = 91}, [3299] = {.lex_state = 0}, - [3300] = {.lex_state = 90}, + [3300] = {.lex_state = 0}, [3301] = {.lex_state = 0}, - [3302] = {.lex_state = 90}, - [3303] = {.lex_state = 0}, - [3304] = {.lex_state = 90}, - [3305] = {.lex_state = 38}, - [3306] = {.lex_state = 0}, + [3302] = {.lex_state = 0}, + [3303] = {.lex_state = 38}, + [3304] = {.lex_state = 0}, + [3305] = {.lex_state = 0}, + [3306] = {.lex_state = 91}, [3307] = {.lex_state = 0}, - [3308] = {.lex_state = 0}, - [3309] = {.lex_state = 0}, - [3310] = {.lex_state = 0}, + [3308] = {.lex_state = 38}, + [3309] = {.lex_state = 91}, + [3310] = {.lex_state = 91}, [3311] = {.lex_state = 0}, [3312] = {.lex_state = 0}, [3313] = {.lex_state = 0}, [3314] = {.lex_state = 0}, - [3315] = {.lex_state = 86}, - [3316] = {.lex_state = 90}, - [3317] = {.lex_state = 90}, - [3318] = {.lex_state = 90}, - [3319] = {.lex_state = 90}, + [3315] = {.lex_state = 0}, + [3316] = {.lex_state = 0}, + [3317] = {.lex_state = 87}, + [3318] = {.lex_state = 0}, + [3319] = {.lex_state = 91}, [3320] = {.lex_state = 0}, [3321] = {.lex_state = 0}, - [3322] = {.lex_state = 0}, + [3322] = {.lex_state = 91}, [3323] = {.lex_state = 0}, [3324] = {.lex_state = 0}, [3325] = {.lex_state = 0}, [3326] = {.lex_state = 0}, [3327] = {.lex_state = 0}, [3328] = {.lex_state = 0}, - [3329] = {.lex_state = 0}, + [3329] = {.lex_state = 91}, [3330] = {.lex_state = 0}, - [3331] = {.lex_state = 0}, - [3332] = {.lex_state = 90}, - [3333] = {.lex_state = 0}, - [3334] = {.lex_state = 90}, - [3335] = {.lex_state = 90}, + [3331] = {.lex_state = 91}, + [3332] = {.lex_state = 0}, + [3333] = {.lex_state = 91}, + [3334] = {.lex_state = 0}, + [3335] = {.lex_state = 91}, [3336] = {.lex_state = 0}, [3337] = {.lex_state = 0}, [3338] = {.lex_state = 0}, - [3339] = {.lex_state = 0}, - [3340] = {.lex_state = 0}, - [3341] = {.lex_state = 0}, + [3339] = {.lex_state = 91}, + [3340] = {.lex_state = 91}, + [3341] = {.lex_state = 87}, [3342] = {.lex_state = 0}, - [3343] = {.lex_state = 90}, + [3343] = {.lex_state = 0}, [3344] = {.lex_state = 0}, [3345] = {.lex_state = 0}, [3346] = {.lex_state = 0}, - [3347] = {.lex_state = 0}, - [3348] = {.lex_state = 0}, - [3349] = {.lex_state = 0}, + [3347] = {.lex_state = 91}, + [3348] = {.lex_state = 91}, + [3349] = {.lex_state = 91}, [3350] = {.lex_state = 0}, - [3351] = {.lex_state = 0}, - [3352] = {.lex_state = 0}, + [3351] = {.lex_state = 91}, + [3352] = {.lex_state = 91}, [3353] = {.lex_state = 0}, [3354] = {.lex_state = 0}, [3355] = {.lex_state = 0}, - [3356] = {.lex_state = 0}, - [3357] = {.lex_state = 90}, - [3358] = {.lex_state = 0}, - [3359] = {.lex_state = 0}, + [3356] = {.lex_state = 91}, + [3357] = {.lex_state = 91}, + [3358] = {.lex_state = 87}, + [3359] = {.lex_state = 91}, [3360] = {.lex_state = 0}, [3361] = {.lex_state = 0}, - [3362] = {.lex_state = 90}, + [3362] = {.lex_state = 0}, [3363] = {.lex_state = 0}, - [3364] = {.lex_state = 0}, + [3364] = {.lex_state = 91}, [3365] = {.lex_state = 0}, [3366] = {.lex_state = 0}, [3367] = {.lex_state = 0}, - [3368] = {.lex_state = 90}, - [3369] = {.lex_state = 90}, + [3368] = {.lex_state = 0}, + [3369] = {.lex_state = 0}, [3370] = {.lex_state = 0}, - [3371] = {.lex_state = 0}, + [3371] = {.lex_state = 91}, [3372] = {.lex_state = 0}, - [3373] = {.lex_state = 0}, - [3374] = {.lex_state = 0}, - [3375] = {.lex_state = 0}, - [3376] = {.lex_state = 0}, + [3373] = {.lex_state = 91}, + [3374] = {.lex_state = 91}, + [3375] = {.lex_state = 91}, + [3376] = {.lex_state = 87}, [3377] = {.lex_state = 0}, - [3378] = {.lex_state = 90}, + [3378] = {.lex_state = 0}, [3379] = {.lex_state = 0}, - [3380] = {.lex_state = 90}, - [3381] = {.lex_state = 90}, + [3380] = {.lex_state = 0}, + [3381] = {.lex_state = 0}, [3382] = {.lex_state = 0}, [3383] = {.lex_state = 0}, [3384] = {.lex_state = 0}, [3385] = {.lex_state = 0}, - [3386] = {.lex_state = 0}, + [3386] = {.lex_state = 91}, [3387] = {.lex_state = 0}, [3388] = {.lex_state = 0}, - [3389] = {.lex_state = 90}, + [3389] = {.lex_state = 0}, [3390] = {.lex_state = 0}, [3391] = {.lex_state = 0}, [3392] = {.lex_state = 0}, [3393] = {.lex_state = 0}, - [3394] = {.lex_state = 90}, + [3394] = {.lex_state = 0}, [3395] = {.lex_state = 0}, [3396] = {.lex_state = 0}, [3397] = {.lex_state = 0}, - [3398] = {.lex_state = 90}, + [3398] = {.lex_state = 0}, [3399] = {.lex_state = 0}, [3400] = {.lex_state = 0}, [3401] = {.lex_state = 0}, [3402] = {.lex_state = 0}, - [3403] = {.lex_state = 19}, + [3403] = {.lex_state = 0}, [3404] = {.lex_state = 0}, [3405] = {.lex_state = 0}, - [3406] = {.lex_state = 0}, + [3406] = {.lex_state = 91}, [3407] = {.lex_state = 0}, [3408] = {.lex_state = 0}, - [3409] = {.lex_state = 90}, + [3409] = {.lex_state = 0}, [3410] = {.lex_state = 0}, - [3411] = {.lex_state = 90}, - [3412] = {.lex_state = 90}, + [3411] = {.lex_state = 91}, + [3412] = {.lex_state = 0}, [3413] = {.lex_state = 0}, [3414] = {.lex_state = 0}, [3415] = {.lex_state = 0}, @@ -9638,32 +9641,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3418] = {.lex_state = 0}, [3419] = {.lex_state = 0}, [3420] = {.lex_state = 0}, - [3421] = {.lex_state = 0}, - [3422] = {.lex_state = 0}, + [3421] = {.lex_state = 91}, + [3422] = {.lex_state = 91}, [3423] = {.lex_state = 0}, [3424] = {.lex_state = 0}, - [3425] = {.lex_state = 90}, + [3425] = {.lex_state = 0}, [3426] = {.lex_state = 0}, - [3427] = {.lex_state = 90}, + [3427] = {.lex_state = 0}, [3428] = {.lex_state = 0}, - [3429] = {.lex_state = 0}, - [3430] = {.lex_state = 0}, - [3431] = {.lex_state = 0}, - [3432] = {.lex_state = 90}, + [3429] = {.lex_state = 91}, + [3430] = {.lex_state = 91}, + [3431] = {.lex_state = 19}, + [3432] = {.lex_state = 91}, [3433] = {.lex_state = 0}, [3434] = {.lex_state = 0}, [3435] = {.lex_state = 0}, [3436] = {.lex_state = 0}, [3437] = {.lex_state = 0}, [3438] = {.lex_state = 0}, - [3439] = {.lex_state = 90}, + [3439] = {.lex_state = 0}, [3440] = {.lex_state = 0}, [3441] = {.lex_state = 0}, [3442] = {.lex_state = 0}, - [3443] = {.lex_state = 0}, + [3443] = {.lex_state = 91}, [3444] = {.lex_state = 0}, [3445] = {.lex_state = 0}, - [3446] = {.lex_state = 0}, + [3446] = {.lex_state = 91}, [3447] = {.lex_state = 0}, [3448] = {.lex_state = 0}, [3449] = {.lex_state = 0}, @@ -9678,24 +9681,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3458] = {.lex_state = 0}, [3459] = {.lex_state = 0}, [3460] = {.lex_state = 0}, - [3461] = {.lex_state = 90}, - [3462] = {.lex_state = 86}, - [3463] = {.lex_state = 90}, + [3461] = {.lex_state = 0}, + [3462] = {.lex_state = 0}, + [3463] = {.lex_state = 0}, [3464] = {.lex_state = 0}, [3465] = {.lex_state = 0}, - [3466] = {.lex_state = 0}, + [3466] = {.lex_state = 91}, [3467] = {.lex_state = 0}, [3468] = {.lex_state = 0}, [3469] = {.lex_state = 0}, - [3470] = {.lex_state = 90}, + [3470] = {.lex_state = 0}, [3471] = {.lex_state = 0}, [3472] = {.lex_state = 0}, [3473] = {.lex_state = 0}, - [3474] = {.lex_state = 92}, + [3474] = {.lex_state = 0}, [3475] = {.lex_state = 0}, [3476] = {.lex_state = 0}, [3477] = {.lex_state = 0}, - [3478] = {.lex_state = 0}, + [3478] = {.lex_state = 91}, [3479] = {.lex_state = 0}, [3480] = {.lex_state = 0}, [3481] = {.lex_state = 0}, @@ -9705,14 +9708,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3485] = {.lex_state = 0}, [3486] = {.lex_state = 0}, [3487] = {.lex_state = 0}, - [3488] = {.lex_state = 0}, + [3488] = {.lex_state = 91}, [3489] = {.lex_state = 0}, [3490] = {.lex_state = 0}, [3491] = {.lex_state = 0}, - [3492] = {.lex_state = 0}, + [3492] = {.lex_state = 91}, [3493] = {.lex_state = 0}, - [3494] = {.lex_state = 0}, - [3495] = {.lex_state = 0}, + [3494] = {.lex_state = 91}, + [3495] = {.lex_state = 91}, [3496] = {.lex_state = 0}, [3497] = {.lex_state = 0}, [3498] = {.lex_state = 0}, @@ -9724,7 +9727,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3504] = {.lex_state = 0}, [3505] = {.lex_state = 0}, [3506] = {.lex_state = 0}, - [3507] = {.lex_state = 90}, + [3507] = {.lex_state = 0}, [3508] = {.lex_state = 0}, [3509] = {.lex_state = 0}, [3510] = {.lex_state = 0}, @@ -9735,298 +9738,356 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3515] = {.lex_state = 0}, [3516] = {.lex_state = 0}, [3517] = {.lex_state = 0}, - [3518] = {.lex_state = 0}, - [3519] = {.lex_state = 90}, - [3520] = {.lex_state = 90}, - [3521] = {.lex_state = 90}, + [3518] = {.lex_state = 91}, + [3519] = {.lex_state = 0}, + [3520] = {.lex_state = 0}, + [3521] = {.lex_state = 0}, [3522] = {.lex_state = 0}, - [3523] = {.lex_state = 90}, - [3524] = {.lex_state = 90}, - [3525] = {.lex_state = 90}, + [3523] = {.lex_state = 93}, + [3524] = {.lex_state = 0}, + [3525] = {.lex_state = 0}, [3526] = {.lex_state = 0}, [3527] = {.lex_state = 0}, [3528] = {.lex_state = 0}, - [3529] = {.lex_state = 0}, + [3529] = {.lex_state = 91}, [3530] = {.lex_state = 0}, [3531] = {.lex_state = 0}, [3532] = {.lex_state = 0}, [3533] = {.lex_state = 0}, - [3534] = {.lex_state = 90}, - [3535] = {.lex_state = 90}, + [3534] = {.lex_state = 0}, + [3535] = {.lex_state = 91}, [3536] = {.lex_state = 0}, - [3537] = {.lex_state = 90}, - [3538] = {.lex_state = 90}, - [3539] = {.lex_state = 0}, + [3537] = {.lex_state = 0}, + [3538] = {.lex_state = 0}, + [3539] = {.lex_state = 91}, [3540] = {.lex_state = 0}, [3541] = {.lex_state = 0}, [3542] = {.lex_state = 0}, [3543] = {.lex_state = 0}, [3544] = {.lex_state = 0}, - [3545] = {.lex_state = 90}, - [3546] = {.lex_state = 0}, + [3545] = {.lex_state = 0}, + [3546] = {.lex_state = 91}, [3547] = {.lex_state = 0}, [3548] = {.lex_state = 0}, - [3549] = {.lex_state = 90}, - [3550] = {.lex_state = 90}, - [3551] = {.lex_state = 90}, + [3549] = {.lex_state = 0}, + [3550] = {.lex_state = 0}, + [3551] = {.lex_state = 0}, [3552] = {.lex_state = 0}, [3553] = {.lex_state = 0}, [3554] = {.lex_state = 0}, [3555] = {.lex_state = 0}, - [3556] = {.lex_state = 90}, - [3557] = {.lex_state = 0}, - [3558] = {.lex_state = 90}, - [3559] = {.lex_state = 86}, + [3556] = {.lex_state = 0}, + [3557] = {.lex_state = 87}, + [3558] = {.lex_state = 0}, + [3559] = {.lex_state = 0}, [3560] = {.lex_state = 0}, - [3561] = {.lex_state = 0}, - [3562] = {.lex_state = 90}, + [3561] = {.lex_state = 91}, + [3562] = {.lex_state = 91}, [3563] = {.lex_state = 0}, [3564] = {.lex_state = 0}, [3565] = {.lex_state = 0}, - [3566] = {.lex_state = 0}, - [3567] = {.lex_state = 90}, - [3568] = {.lex_state = 90}, + [3566] = {.lex_state = 91}, + [3567] = {.lex_state = 0}, + [3568] = {.lex_state = 0}, [3569] = {.lex_state = 0}, [3570] = {.lex_state = 0}, [3571] = {.lex_state = 0}, [3572] = {.lex_state = 0}, - [3573] = {.lex_state = 90}, - [3574] = {.lex_state = 90}, + [3573] = {.lex_state = 0}, + [3574] = {.lex_state = 0}, [3575] = {.lex_state = 0}, [3576] = {.lex_state = 0}, [3577] = {.lex_state = 0}, - [3578] = {.lex_state = 0}, - [3579] = {.lex_state = 90}, - [3580] = {.lex_state = 90}, - [3581] = {.lex_state = 90}, - [3582] = {.lex_state = 90}, + [3578] = {.lex_state = 91}, + [3579] = {.lex_state = 0}, + [3580] = {.lex_state = 91}, + [3581] = {.lex_state = 91}, + [3582] = {.lex_state = 91}, [3583] = {.lex_state = 0}, [3584] = {.lex_state = 0}, - [3585] = {.lex_state = 0}, - [3586] = {.lex_state = 90}, - [3587] = {.lex_state = 90}, - [3588] = {.lex_state = 0}, + [3585] = {.lex_state = 91}, + [3586] = {.lex_state = 0}, + [3587] = {.lex_state = 91}, + [3588] = {.lex_state = 91}, [3589] = {.lex_state = 0}, [3590] = {.lex_state = 0}, - [3591] = {.lex_state = 90}, - [3592] = {.lex_state = 0}, + [3591] = {.lex_state = 91}, + [3592] = {.lex_state = 91}, [3593] = {.lex_state = 0}, [3594] = {.lex_state = 0}, [3595] = {.lex_state = 0}, [3596] = {.lex_state = 0}, - [3597] = {.lex_state = 90}, + [3597] = {.lex_state = 0}, [3598] = {.lex_state = 0}, - [3599] = {.lex_state = 0}, - [3600] = {.lex_state = 90}, + [3599] = {.lex_state = 91}, + [3600] = {.lex_state = 91}, [3601] = {.lex_state = 0}, - [3602] = {.lex_state = 0}, - [3603] = {.lex_state = 90}, + [3602] = {.lex_state = 91}, + [3603] = {.lex_state = 91}, [3604] = {.lex_state = 0}, - [3605] = {.lex_state = 0}, + [3605] = {.lex_state = 91}, [3606] = {.lex_state = 0}, - [3607] = {.lex_state = 0}, + [3607] = {.lex_state = 91}, [3608] = {.lex_state = 0}, - [3609] = {.lex_state = 0}, - [3610] = {.lex_state = 0}, - [3611] = {.lex_state = 90}, + [3609] = {.lex_state = 91}, + [3610] = {.lex_state = 91}, + [3611] = {.lex_state = 0}, [3612] = {.lex_state = 0}, [3613] = {.lex_state = 0}, - [3614] = {.lex_state = 90}, + [3614] = {.lex_state = 0}, [3615] = {.lex_state = 0}, - [3616] = {.lex_state = 0}, - [3617] = {.lex_state = 90}, - [3618] = {.lex_state = 90}, - [3619] = {.lex_state = 0}, - [3620] = {.lex_state = 0}, + [3616] = {.lex_state = 91}, + [3617] = {.lex_state = 0}, + [3618] = {.lex_state = 0}, + [3619] = {.lex_state = 91}, + [3620] = {.lex_state = 91}, [3621] = {.lex_state = 0}, [3622] = {.lex_state = 0}, - [3623] = {.lex_state = 0}, + [3623] = {.lex_state = 91}, [3624] = {.lex_state = 0}, [3625] = {.lex_state = 0}, [3626] = {.lex_state = 0}, - [3627] = {.lex_state = 0}, - [3628] = {.lex_state = 90}, - [3629] = {.lex_state = 0}, + [3627] = {.lex_state = 91}, + [3628] = {.lex_state = 0}, + [3629] = {.lex_state = 91}, [3630] = {.lex_state = 0}, - [3631] = {.lex_state = 90}, - [3632] = {.lex_state = 90}, + [3631] = {.lex_state = 0}, + [3632] = {.lex_state = 0}, [3633] = {.lex_state = 0}, [3634] = {.lex_state = 0}, - [3635] = {.lex_state = 0}, - [3636] = {.lex_state = 90}, - [3637] = {.lex_state = 0}, + [3635] = {.lex_state = 91}, + [3636] = {.lex_state = 91}, + [3637] = {.lex_state = 91}, [3638] = {.lex_state = 0}, - [3639] = {.lex_state = 90}, - [3640] = {.lex_state = 90}, - [3641] = {.lex_state = 0}, - [3642] = {.lex_state = 0}, - [3643] = {.lex_state = 90}, - [3644] = {.lex_state = 90}, - [3645] = {.lex_state = 0}, - [3646] = {.lex_state = 0}, - [3647] = {.lex_state = 0}, - [3648] = {.lex_state = 0}, + [3639] = {.lex_state = 91}, + [3640] = {.lex_state = 91}, + [3641] = {.lex_state = 91}, + [3642] = {.lex_state = 91}, + [3643] = {.lex_state = 0}, + [3644] = {.lex_state = 0}, + [3645] = {.lex_state = 91}, + [3646] = {.lex_state = 91}, + [3647] = {.lex_state = 91}, + [3648] = {.lex_state = 91}, [3649] = {.lex_state = 0}, - [3650] = {.lex_state = 90}, - [3651] = {.lex_state = 90}, - [3652] = {.lex_state = 0}, + [3650] = {.lex_state = 0}, + [3651] = {.lex_state = 91}, + [3652] = {.lex_state = 91}, [3653] = {.lex_state = 0}, - [3654] = {.lex_state = 0}, - [3655] = {.lex_state = 0}, - [3656] = {.lex_state = 0}, + [3654] = {.lex_state = 91}, + [3655] = {.lex_state = 91}, + [3656] = {.lex_state = 91}, [3657] = {.lex_state = 0}, [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 90}, - [3660] = {.lex_state = 0}, - [3661] = {.lex_state = 90}, + [3659] = {.lex_state = 0}, + [3660] = {.lex_state = 91}, + [3661] = {.lex_state = 0}, [3662] = {.lex_state = 0}, - [3663] = {.lex_state = 90}, - [3664] = {.lex_state = 90}, + [3663] = {.lex_state = 0}, + [3664] = {.lex_state = 91}, [3665] = {.lex_state = 0}, [3666] = {.lex_state = 0}, - [3667] = {.lex_state = 90}, - [3668] = {.lex_state = 90}, - [3669] = {.lex_state = 90}, - [3670] = {.lex_state = 0}, + [3667] = {.lex_state = 0}, + [3668] = {.lex_state = 0}, + [3669] = {.lex_state = 0}, + [3670] = {.lex_state = 87}, [3671] = {.lex_state = 0}, - [3672] = {.lex_state = 90}, + [3672] = {.lex_state = 0}, [3673] = {.lex_state = 0}, - [3674] = {.lex_state = 0}, + [3674] = {.lex_state = 91}, [3675] = {.lex_state = 0}, [3676] = {.lex_state = 0}, - [3677] = {.lex_state = 90}, - [3678] = {.lex_state = 90}, + [3677] = {.lex_state = 0}, + [3678] = {.lex_state = 0}, [3679] = {.lex_state = 0}, [3680] = {.lex_state = 0}, - [3681] = {.lex_state = 90}, - [3682] = {.lex_state = 0}, - [3683] = {.lex_state = 0}, + [3681] = {.lex_state = 0}, + [3682] = {.lex_state = 91}, + [3683] = {.lex_state = 91}, [3684] = {.lex_state = 0}, - [3685] = {.lex_state = 0}, - [3686] = {.lex_state = 0}, - [3687] = {.lex_state = 90}, - [3688] = {.lex_state = 90}, + [3685] = {.lex_state = 91}, + [3686] = {.lex_state = 91}, + [3687] = {.lex_state = 0}, + [3688] = {.lex_state = 91}, [3689] = {.lex_state = 0}, - [3690] = {.lex_state = 90}, - [3691] = {.lex_state = 90}, - [3692] = {.lex_state = 90}, - [3693] = {.lex_state = 90}, - [3694] = {.lex_state = 90}, + [3690] = {.lex_state = 0}, + [3691] = {.lex_state = 0}, + [3692] = {.lex_state = 0}, + [3693] = {.lex_state = 0}, + [3694] = {.lex_state = 0}, [3695] = {.lex_state = 0}, [3696] = {.lex_state = 0}, [3697] = {.lex_state = 0}, [3698] = {.lex_state = 0}, - [3699] = {.lex_state = 0}, + [3699] = {.lex_state = 91}, [3700] = {.lex_state = 0}, - [3701] = {.lex_state = 90}, - [3702] = {.lex_state = 90}, - [3703] = {.lex_state = 90}, + [3701] = {.lex_state = 0}, + [3702] = {.lex_state = 91}, + [3703] = {.lex_state = 0}, [3704] = {.lex_state = 0}, - [3705] = {.lex_state = 90}, + [3705] = {.lex_state = 0}, [3706] = {.lex_state = 0}, - [3707] = {.lex_state = 90}, - [3708] = {.lex_state = 90}, - [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 0}, - [3711] = {.lex_state = 90}, - [3712] = {.lex_state = 0}, - [3713] = {.lex_state = 90}, + [3707] = {.lex_state = 91}, + [3708] = {.lex_state = 0}, + [3709] = {.lex_state = 91}, + [3710] = {.lex_state = 91}, + [3711] = {.lex_state = 87}, + [3712] = {.lex_state = 87}, + [3713] = {.lex_state = 0}, [3714] = {.lex_state = 0}, - [3715] = {.lex_state = 0}, - [3716] = {.lex_state = 90}, - [3717] = {.lex_state = 90}, - [3718] = {.lex_state = 0}, - [3719] = {.lex_state = 90}, - [3720] = {.lex_state = 90}, - [3721] = {.lex_state = 90}, - [3722] = {.lex_state = 90}, - [3723] = {.lex_state = 90}, - [3724] = {.lex_state = 86}, - [3725] = {.lex_state = 86}, - [3726] = {.lex_state = 86}, - [3727] = {.lex_state = 0}, + [3715] = {.lex_state = 91}, + [3716] = {.lex_state = 91}, + [3717] = {.lex_state = 91}, + [3718] = {.lex_state = 91}, + [3719] = {.lex_state = 0}, + [3720] = {.lex_state = 0}, + [3721] = {.lex_state = 91}, + [3722] = {.lex_state = 0}, + [3723] = {.lex_state = 0}, + [3724] = {.lex_state = 0}, + [3725] = {.lex_state = 91}, + [3726] = {.lex_state = 91}, + [3727] = {.lex_state = 91}, [3728] = {.lex_state = 0}, - [3729] = {.lex_state = 0}, - [3730] = {.lex_state = 0}, - [3731] = {.lex_state = 90}, - [3732] = {.lex_state = 90}, + [3729] = {.lex_state = 91}, + [3730] = {.lex_state = 91}, + [3731] = {.lex_state = 0}, + [3732] = {.lex_state = 91}, [3733] = {.lex_state = 0}, - [3734] = {.lex_state = 0}, + [3734] = {.lex_state = 91}, [3735] = {.lex_state = 0}, [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 90}, + [3737] = {.lex_state = 0}, [3738] = {.lex_state = 0}, - [3739] = {.lex_state = 0}, - [3740] = {.lex_state = 90}, - [3741] = {.lex_state = 90}, - [3742] = {.lex_state = 90}, - [3743] = {.lex_state = 90}, + [3739] = {.lex_state = 91}, + [3740] = {.lex_state = 91}, + [3741] = {.lex_state = 0}, + [3742] = {.lex_state = 0}, + [3743] = {.lex_state = 91}, [3744] = {.lex_state = 0}, - [3745] = {.lex_state = 90}, - [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 90}, - [3748] = {.lex_state = 90}, - [3749] = {.lex_state = 90}, - [3750] = {.lex_state = 90}, - [3751] = {.lex_state = 1}, - [3752] = {.lex_state = 0}, + [3745] = {.lex_state = 0}, + [3746] = {.lex_state = 91}, + [3747] = {.lex_state = 0}, + [3748] = {.lex_state = 0}, + [3749] = {.lex_state = 0}, + [3750] = {.lex_state = 0}, + [3751] = {.lex_state = 0}, + [3752] = {.lex_state = 91}, [3753] = {.lex_state = 0}, - [3754] = {.lex_state = 0}, + [3754] = {.lex_state = 91}, [3755] = {.lex_state = 0}, - [3756] = {.lex_state = 0}, + [3756] = {.lex_state = 91}, [3757] = {.lex_state = 0}, [3758] = {.lex_state = 0}, [3759] = {.lex_state = 0}, - [3760] = {.lex_state = 90}, + [3760] = {.lex_state = 91}, [3761] = {.lex_state = 0}, [3762] = {.lex_state = 0}, - [3763] = {.lex_state = 0}, + [3763] = {.lex_state = 87}, [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 0}, + [3765] = {.lex_state = 91}, [3766] = {.lex_state = 0}, - [3767] = {.lex_state = 90}, - [3768] = {.lex_state = 90}, - [3769] = {.lex_state = 86}, - [3770] = {.lex_state = 0}, - [3771] = {.lex_state = 0}, - [3772] = {.lex_state = 90}, - [3773] = {.lex_state = 90}, - [3774] = {.lex_state = 90}, - [3775] = {.lex_state = 86}, + [3767] = {.lex_state = 0}, + [3768] = {.lex_state = 91}, + [3769] = {.lex_state = 0}, + [3770] = {.lex_state = 91}, + [3771] = {.lex_state = 91}, + [3772] = {.lex_state = 91}, + [3773] = {.lex_state = 91}, + [3774] = {.lex_state = 0}, + [3775] = {.lex_state = 91}, [3776] = {.lex_state = 0}, - [3777] = {.lex_state = 0}, - [3778] = {.lex_state = 90}, - [3779] = {.lex_state = 90}, - [3780] = {.lex_state = 90}, - [3781] = {.lex_state = 86}, + [3777] = {.lex_state = 91}, + [3778] = {.lex_state = 91}, + [3779] = {.lex_state = 0}, + [3780] = {.lex_state = 0}, + [3781] = {.lex_state = 1}, [3782] = {.lex_state = 0}, - [3783] = {.lex_state = 90}, - [3784] = {.lex_state = 86}, - [3785] = {.lex_state = 90}, - [3786] = {.lex_state = 86}, - [3787] = {.lex_state = 86}, - [3788] = {.lex_state = 86}, - [3789] = {.lex_state = 86}, - [3790] = {.lex_state = 86}, + [3783] = {.lex_state = 0}, + [3784] = {.lex_state = 91}, + [3785] = {.lex_state = 0}, + [3786] = {.lex_state = 0}, + [3787] = {.lex_state = 91}, + [3788] = {.lex_state = 91}, + [3789] = {.lex_state = 91}, + [3790] = {.lex_state = 0}, [3791] = {.lex_state = 0}, [3792] = {.lex_state = 0}, - [3793] = {.lex_state = 0}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 1}, - [3796] = {.lex_state = 0}, - [3797] = {.lex_state = 90}, + [3793] = {.lex_state = 91}, + [3794] = {.lex_state = 1}, + [3795] = {.lex_state = 91}, + [3796] = {.lex_state = 91}, + [3797] = {.lex_state = 91}, [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 0}, + [3799] = {.lex_state = 91}, [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 90}, - [3802] = {.lex_state = 90}, + [3801] = {.lex_state = 0}, + [3802] = {.lex_state = 0}, [3803] = {.lex_state = 0}, - [3804] = {.lex_state = 0}, - [3805] = {.lex_state = 0}, + [3804] = {.lex_state = 91}, + [3805] = {.lex_state = 91}, [3806] = {.lex_state = 0}, [3807] = {.lex_state = 0}, [3808] = {.lex_state = 0}, [3809] = {.lex_state = 0}, + [3810] = {.lex_state = 0}, + [3811] = {.lex_state = 0}, + [3812] = {.lex_state = 0}, + [3813] = {.lex_state = 0}, + [3814] = {.lex_state = 0}, + [3815] = {.lex_state = 0}, + [3816] = {.lex_state = 0}, + [3817] = {.lex_state = 0}, + [3818] = {.lex_state = 0}, + [3819] = {.lex_state = 0}, + [3820] = {.lex_state = 91}, + [3821] = {.lex_state = 91}, + [3822] = {.lex_state = 91}, + [3823] = {.lex_state = 91}, + [3824] = {.lex_state = 0}, + [3825] = {.lex_state = 0}, + [3826] = {.lex_state = 0}, + [3827] = {.lex_state = 87}, + [3828] = {.lex_state = 0}, + [3829] = {.lex_state = 0}, + [3830] = {.lex_state = 0}, + [3831] = {.lex_state = 0}, + [3832] = {.lex_state = 91}, + [3833] = {.lex_state = 87}, + [3834] = {.lex_state = 0}, + [3835] = {.lex_state = 91}, + [3836] = {.lex_state = 91}, + [3837] = {.lex_state = 0}, + [3838] = {.lex_state = 0}, + [3839] = {.lex_state = 87}, + [3840] = {.lex_state = 0}, + [3841] = {.lex_state = 0}, + [3842] = {.lex_state = 87}, + [3843] = {.lex_state = 0}, + [3844] = {.lex_state = 87}, + [3845] = {.lex_state = 87}, + [3846] = {.lex_state = 87}, + [3847] = {.lex_state = 87}, + [3848] = {.lex_state = 87}, + [3849] = {.lex_state = 0}, + [3850] = {.lex_state = 0}, + [3851] = {.lex_state = 0}, + [3852] = {.lex_state = 0}, + [3853] = {.lex_state = 91}, + [3854] = {.lex_state = 0}, + [3855] = {.lex_state = 0}, + [3856] = {.lex_state = 0}, + [3857] = {.lex_state = 0}, + [3858] = {.lex_state = 0}, + [3859] = {.lex_state = 91}, + [3860] = {.lex_state = 91}, + [3861] = {.lex_state = 0}, + [3862] = {.lex_state = 0}, + [3863] = {.lex_state = 0}, + [3864] = {.lex_state = 91}, + [3865] = {.lex_state = 0}, + [3866] = {.lex_state = 91}, + [3867] = {.lex_state = 91}, }; enum { @@ -10057,16 +10118,16 @@ static bool ts_external_scanner_states[7][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__automatic_semicolon] = true, }, [3] = { - [ts_external_token__template_chars_single_single] = true, + [ts_external_token__template_chars_double] = true, }, [4] = { [ts_external_token__template_chars_single] = true, }, [5] = { - [ts_external_token__template_chars_double_single] = true, + [ts_external_token__template_chars_single_single] = true, }, [6] = { - [ts_external_token__template_chars_double] = true, + [ts_external_token__template_chars_double_single] = true, }, }; @@ -10217,121 +10278,123 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_chars_single_single] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(3793), - [sym__top_level_definition] = STATE(10), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(39), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(39), - [sym_block] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_assert_statement] = STATE(39), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_yield_statement] = STATE(39), - [sym_yield_each_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym__annotation] = STATE(2161), - [sym_marker_annotation] = STATE(2161), - [sym_annotation] = STATE(2161), - [sym_import_or_export] = STATE(4), - [sym_library_import] = STATE(1053), - [sym_library_export] = STATE(1053), - [sym_import_specification] = STATE(1065), - [sym_enum_declaration] = STATE(10), - [sym_class_definition] = STATE(10), - [aux_sym__metadata] = STATE(2161), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(39), + [sym_program] = STATE(3774), + [sym__top_level_definition] = STATE(11), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(50), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(50), + [sym_block] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_assert_statement] = STATE(50), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_yield_statement] = STATE(50), + [sym_yield_each_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym__annotation] = STATE(2198), + [sym_marker_annotation] = STATE(2198), + [sym_annotation] = STATE(2198), + [sym_import_or_export] = STATE(5), + [sym_library_import] = STATE(1097), + [sym_library_export] = STATE(1097), + [sym_import_specification] = STATE(1096), + [sym_enum_declaration] = STATE(11), + [sym_class_definition] = STATE(11), + [aux_sym__metadata] = STATE(2198), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(50), [sym_script_tag] = STATE(2), - [sym_library_name] = STATE(7), - [sym__covariant] = STATE(2423), - [sym__export] = STATE(2482), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__import] = STATE(2501), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_program_repeat2] = STATE(10), - [aux_sym_program_repeat3] = STATE(39), + [sym_library_name] = STATE(4), + [sym__covariant] = STATE(2469), + [sym__export] = STATE(2523), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__import] = STATE(2517), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat1] = STATE(5), + [aux_sym_program_repeat2] = STATE(11), + [aux_sym_program_repeat3] = STATE(50), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), @@ -10392,119 +10455,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym__top_level_definition] = STATE(11), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(45), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(45), - [sym_block] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_assert_statement] = STATE(45), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_yield_statement] = STATE(45), - [sym_yield_each_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_try_statement] = STATE(45), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym__annotation] = STATE(2161), - [sym_marker_annotation] = STATE(2161), - [sym_annotation] = STATE(2161), - [sym_import_or_export] = STATE(6), - [sym_library_import] = STATE(1053), - [sym_library_export] = STATE(1053), - [sym_import_specification] = STATE(1065), - [sym_enum_declaration] = STATE(11), - [sym_class_definition] = STATE(11), - [aux_sym__metadata] = STATE(2161), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(45), - [sym_library_name] = STATE(5), - [sym__covariant] = STATE(2423), - [sym__export] = STATE(2482), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__import] = STATE(2501), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_program_repeat2] = STATE(11), - [aux_sym_program_repeat3] = STATE(45), + [sym__top_level_definition] = STATE(8), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(49), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(49), + [sym_block] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_assert_statement] = STATE(49), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_yield_statement] = STATE(49), + [sym_yield_each_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym__annotation] = STATE(2198), + [sym_marker_annotation] = STATE(2198), + [sym_annotation] = STATE(2198), + [sym_import_or_export] = STATE(7), + [sym_library_import] = STATE(1097), + [sym_library_export] = STATE(1097), + [sym_import_specification] = STATE(1096), + [sym_enum_declaration] = STATE(8), + [sym_class_definition] = STATE(8), + [aux_sym__metadata] = STATE(2198), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(49), + [sym_library_name] = STATE(6), + [sym__covariant] = STATE(2469), + [sym__export] = STATE(2523), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__import] = STATE(2517), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_program_repeat2] = STATE(8), + [aux_sym_program_repeat3] = STATE(49), [ts_builtin_sym_end] = ACTIONS(111), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), @@ -10565,117 +10630,119 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [3] = { [sym__top_level_definition] = STATE(9), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(29), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(29), - [sym_block] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_assert_statement] = STATE(29), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_yield_statement] = STATE(29), - [sym_yield_each_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym__annotation] = STATE(2176), - [sym_marker_annotation] = STATE(2176), - [sym_annotation] = STATE(2176), - [sym_import_or_export] = STATE(965), - [sym_library_import] = STATE(1053), - [sym_library_export] = STATE(1053), - [sym_import_specification] = STATE(1065), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(24), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(24), + [sym_block] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_assert_statement] = STATE(24), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_yield_statement] = STATE(24), + [sym_yield_each_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_try_statement] = STATE(24), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym__annotation] = STATE(2220), + [sym_marker_annotation] = STATE(2220), + [sym_annotation] = STATE(2220), + [sym_import_or_export] = STATE(1001), + [sym_library_import] = STATE(1097), + [sym_library_export] = STATE(1097), + [sym_import_specification] = STATE(1096), [sym_enum_declaration] = STATE(9), [sym_class_definition] = STATE(9), - [aux_sym__metadata] = STATE(2176), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(29), - [sym__covariant] = STATE(2423), - [sym__export] = STATE(2482), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__import] = STATE(2501), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat1] = STATE(965), + [aux_sym__metadata] = STATE(2220), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(24), + [sym__covariant] = STATE(2469), + [sym__export] = STATE(2523), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__import] = STATE(2517), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat1] = STATE(1001), [aux_sym_program_repeat2] = STATE(9), - [aux_sym_program_repeat3] = STATE(29), + [aux_sym_program_repeat3] = STATE(24), [ts_builtin_sym_end] = ACTIONS(115), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), @@ -10735,118 +10802,120 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym__top_level_definition] = STATE(11), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(45), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(45), - [sym_block] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_assert_statement] = STATE(45), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_yield_statement] = STATE(45), - [sym_yield_each_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_try_statement] = STATE(45), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym__annotation] = STATE(2176), - [sym_marker_annotation] = STATE(2176), - [sym_annotation] = STATE(2176), - [sym_import_or_export] = STATE(965), - [sym_library_import] = STATE(1053), - [sym_library_export] = STATE(1053), - [sym_import_specification] = STATE(1065), - [sym_enum_declaration] = STATE(11), - [sym_class_definition] = STATE(11), - [aux_sym__metadata] = STATE(2176), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(45), - [sym__covariant] = STATE(2423), - [sym__export] = STATE(2482), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__import] = STATE(2501), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat1] = STATE(965), - [aux_sym_program_repeat2] = STATE(11), - [aux_sym_program_repeat3] = STATE(45), + [sym__top_level_definition] = STATE(8), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(49), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(49), + [sym_block] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_assert_statement] = STATE(49), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_yield_statement] = STATE(49), + [sym_yield_each_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym__annotation] = STATE(2220), + [sym_marker_annotation] = STATE(2220), + [sym_annotation] = STATE(2220), + [sym_import_or_export] = STATE(7), + [sym_library_import] = STATE(1097), + [sym_library_export] = STATE(1097), + [sym_import_specification] = STATE(1096), + [sym_enum_declaration] = STATE(8), + [sym_class_definition] = STATE(8), + [aux_sym__metadata] = STATE(2220), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(49), + [sym__covariant] = STATE(2469), + [sym__export] = STATE(2523), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__import] = STATE(2517), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_program_repeat2] = STATE(8), + [aux_sym_program_repeat3] = STATE(49), [ts_builtin_sym_end] = ACTIONS(111), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), @@ -10907,118 +10976,120 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [sym__top_level_definition] = STATE(8), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(25), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(25), - [sym_block] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_assert_statement] = STATE(25), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_yield_statement] = STATE(25), - [sym_yield_each_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_try_statement] = STATE(25), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym__annotation] = STATE(2176), - [sym_marker_annotation] = STATE(2176), - [sym_annotation] = STATE(2176), - [sym_import_or_export] = STATE(3), - [sym_library_import] = STATE(1053), - [sym_library_export] = STATE(1053), - [sym_import_specification] = STATE(1065), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(49), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(49), + [sym_block] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_assert_statement] = STATE(49), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_yield_statement] = STATE(49), + [sym_yield_each_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym__annotation] = STATE(2220), + [sym_marker_annotation] = STATE(2220), + [sym_annotation] = STATE(2220), + [sym_import_or_export] = STATE(1001), + [sym_library_import] = STATE(1097), + [sym_library_export] = STATE(1097), + [sym_import_specification] = STATE(1096), [sym_enum_declaration] = STATE(8), [sym_class_definition] = STATE(8), - [aux_sym__metadata] = STATE(2176), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(25), - [sym__covariant] = STATE(2423), - [sym__export] = STATE(2482), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__import] = STATE(2501), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat1] = STATE(3), + [aux_sym__metadata] = STATE(2220), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(49), + [sym__covariant] = STATE(2469), + [sym__export] = STATE(2523), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__import] = STATE(2517), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat1] = STATE(1001), [aux_sym_program_repeat2] = STATE(8), - [aux_sym_program_repeat3] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(117), + [aux_sym_program_repeat3] = STATE(49), + [ts_builtin_sym_end] = ACTIONS(111), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -11077,118 +11148,120 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym__top_level_definition] = STATE(8), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(25), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(25), - [sym_block] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_assert_statement] = STATE(25), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_yield_statement] = STATE(25), - [sym_yield_each_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_try_statement] = STATE(25), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym__annotation] = STATE(2176), - [sym_marker_annotation] = STATE(2176), - [sym_annotation] = STATE(2176), - [sym_import_or_export] = STATE(965), - [sym_library_import] = STATE(1053), - [sym_library_export] = STATE(1053), - [sym_import_specification] = STATE(1065), - [sym_enum_declaration] = STATE(8), - [sym_class_definition] = STATE(8), - [aux_sym__metadata] = STATE(2176), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(25), - [sym__covariant] = STATE(2423), - [sym__export] = STATE(2482), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__import] = STATE(2501), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat1] = STATE(965), - [aux_sym_program_repeat2] = STATE(8), - [aux_sym_program_repeat3] = STATE(25), + [sym__top_level_definition] = STATE(10), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(36), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(36), + [sym_block] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_assert_statement] = STATE(36), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_yield_statement] = STATE(36), + [sym_yield_each_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_try_statement] = STATE(36), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym__annotation] = STATE(2220), + [sym_marker_annotation] = STATE(2220), + [sym_annotation] = STATE(2220), + [sym_import_or_export] = STATE(3), + [sym_library_import] = STATE(1097), + [sym_library_export] = STATE(1097), + [sym_import_specification] = STATE(1096), + [sym_enum_declaration] = STATE(10), + [sym_class_definition] = STATE(10), + [aux_sym__metadata] = STATE(2220), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(36), + [sym__covariant] = STATE(2469), + [sym__export] = STATE(2523), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__import] = STATE(2517), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat1] = STATE(3), + [aux_sym_program_repeat2] = STATE(10), + [aux_sym_program_repeat3] = STATE(36), [ts_builtin_sym_end] = ACTIONS(117), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), @@ -11248,119 +11321,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym__top_level_definition] = STATE(11), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(45), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(45), - [sym_block] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_assert_statement] = STATE(45), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_yield_statement] = STATE(45), - [sym_yield_each_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_try_statement] = STATE(45), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym__annotation] = STATE(2176), - [sym_marker_annotation] = STATE(2176), - [sym_annotation] = STATE(2176), - [sym_import_or_export] = STATE(6), - [sym_library_import] = STATE(1053), - [sym_library_export] = STATE(1053), - [sym_import_specification] = STATE(1065), - [sym_enum_declaration] = STATE(11), - [sym_class_definition] = STATE(11), - [aux_sym__metadata] = STATE(2176), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(45), - [sym__covariant] = STATE(2423), - [sym__export] = STATE(2482), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__import] = STATE(2501), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_program_repeat2] = STATE(11), - [aux_sym_program_repeat3] = STATE(45), - [ts_builtin_sym_end] = ACTIONS(111), + [sym__top_level_definition] = STATE(10), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(36), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(36), + [sym_block] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_assert_statement] = STATE(36), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_yield_statement] = STATE(36), + [sym_yield_each_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_try_statement] = STATE(36), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym__annotation] = STATE(2220), + [sym_marker_annotation] = STATE(2220), + [sym_annotation] = STATE(2220), + [sym_import_or_export] = STATE(1001), + [sym_library_import] = STATE(1097), + [sym_library_export] = STATE(1097), + [sym_import_specification] = STATE(1096), + [sym_enum_declaration] = STATE(10), + [sym_class_definition] = STATE(10), + [aux_sym__metadata] = STATE(2220), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(36), + [sym__covariant] = STATE(2469), + [sym__export] = STATE(2523), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__import] = STATE(2517), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat1] = STATE(1001), + [aux_sym_program_repeat2] = STATE(10), + [aux_sym_program_repeat3] = STATE(36), + [ts_builtin_sym_end] = ACTIONS(117), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -11419,112 +11494,114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym__top_level_definition] = STATE(626), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(29), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(29), - [sym_block] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_assert_statement] = STATE(29), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_yield_statement] = STATE(29), - [sym_yield_each_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym__annotation] = STATE(2352), - [sym_marker_annotation] = STATE(2352), - [sym_annotation] = STATE(2352), - [sym_enum_declaration] = STATE(626), - [sym_class_definition] = STATE(626), - [aux_sym__metadata] = STATE(2352), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(29), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat2] = STATE(626), - [aux_sym_program_repeat3] = STATE(29), - [ts_builtin_sym_end] = ACTIONS(115), + [sym__top_level_definition] = STATE(751), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(36), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(36), + [sym_block] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_assert_statement] = STATE(36), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_yield_statement] = STATE(36), + [sym_yield_each_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_try_statement] = STATE(36), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym__annotation] = STATE(2384), + [sym_marker_annotation] = STATE(2384), + [sym_annotation] = STATE(2384), + [sym_enum_declaration] = STATE(751), + [sym_class_definition] = STATE(751), + [aux_sym__metadata] = STATE(2384), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(36), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat2] = STATE(751), + [aux_sym_program_repeat3] = STATE(36), + [ts_builtin_sym_end] = ACTIONS(117), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -11581,111 +11658,113 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym__top_level_definition] = STATE(626), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(35), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(35), - [sym_block] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_assert_statement] = STATE(35), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_yield_statement] = STATE(35), - [sym_yield_each_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym__annotation] = STATE(2352), - [sym_marker_annotation] = STATE(2352), - [sym_annotation] = STATE(2352), - [sym_enum_declaration] = STATE(626), - [sym_class_definition] = STATE(626), - [aux_sym__metadata] = STATE(2352), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(35), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat2] = STATE(626), - [aux_sym_program_repeat3] = STATE(35), + [sym__top_level_definition] = STATE(751), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(32), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(32), + [sym_block] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_assert_statement] = STATE(32), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_yield_statement] = STATE(32), + [sym_yield_each_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym__annotation] = STATE(2384), + [sym_marker_annotation] = STATE(2384), + [sym_annotation] = STATE(2384), + [sym_enum_declaration] = STATE(751), + [sym_class_definition] = STATE(751), + [aux_sym__metadata] = STATE(2384), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(32), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat2] = STATE(751), + [aux_sym_program_repeat3] = STATE(32), [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), @@ -11743,112 +11822,114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym__top_level_definition] = STATE(626), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(45), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(45), - [sym_block] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_assert_statement] = STATE(45), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_yield_statement] = STATE(45), - [sym_yield_each_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_try_statement] = STATE(45), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym__annotation] = STATE(2352), - [sym_marker_annotation] = STATE(2352), - [sym_annotation] = STATE(2352), - [sym_enum_declaration] = STATE(626), - [sym_class_definition] = STATE(626), - [aux_sym__metadata] = STATE(2352), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(45), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat2] = STATE(626), - [aux_sym_program_repeat3] = STATE(45), - [ts_builtin_sym_end] = ACTIONS(111), + [sym__top_level_definition] = STATE(751), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(24), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(24), + [sym_block] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_assert_statement] = STATE(24), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_yield_statement] = STATE(24), + [sym_yield_each_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_try_statement] = STATE(24), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym__annotation] = STATE(2384), + [sym_marker_annotation] = STATE(2384), + [sym_annotation] = STATE(2384), + [sym_enum_declaration] = STATE(751), + [sym_class_definition] = STATE(751), + [aux_sym__metadata] = STATE(2384), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(24), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat2] = STATE(751), + [aux_sym_program_repeat3] = STATE(24), + [ts_builtin_sym_end] = ACTIONS(115), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -11905,112 +11986,114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym__top_level_definition] = STATE(626), - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(25), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(25), - [sym_block] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_assert_statement] = STATE(25), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_yield_statement] = STATE(25), - [sym_yield_each_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_try_statement] = STATE(25), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym__annotation] = STATE(2352), - [sym_marker_annotation] = STATE(2352), - [sym_annotation] = STATE(2352), - [sym_enum_declaration] = STATE(626), - [sym_class_definition] = STATE(626), - [aux_sym__metadata] = STATE(2352), - [sym_type_parameters] = STATE(3220), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3035), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2727), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(25), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__set] = STATE(3778), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2540), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat2] = STATE(626), - [aux_sym_program_repeat3] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(117), + [sym__top_level_definition] = STATE(751), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(49), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(49), + [sym_block] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_assert_statement] = STATE(49), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_yield_statement] = STATE(49), + [sym_yield_each_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym__annotation] = STATE(2384), + [sym_marker_annotation] = STATE(2384), + [sym_annotation] = STATE(2384), + [sym_enum_declaration] = STATE(751), + [sym_class_definition] = STATE(751), + [aux_sym__metadata] = STATE(2384), + [sym_type_parameters] = STATE(3289), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3072), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2769), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(49), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__set] = STATE(3645), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2579), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat2] = STATE(751), + [aux_sym_program_repeat3] = STATE(49), + [ts_builtin_sym_end] = ACTIONS(111), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -12067,106 +12150,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3168), - [sym__element] = STATE(3168), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(33), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3168), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(33), - [sym_block] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_assert_statement] = STATE(33), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_yield_statement] = STATE(33), - [sym_yield_each_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3168), - [sym_if_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_for_element] = STATE(3168), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(33), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(33), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3236), + [sym__element] = STATE(3236), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(28), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3236), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(28), + [sym_block] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_assert_statement] = STATE(28), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_yield_statement] = STATE(28), + [sym_yield_each_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3236), + [sym_if_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_for_element] = STATE(3236), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(28), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(28), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -12219,106 +12304,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3168), - [sym__element] = STATE(3168), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(33), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3168), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(33), - [sym_block] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_assert_statement] = STATE(33), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_yield_statement] = STATE(33), - [sym_yield_each_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3168), - [sym_if_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_for_element] = STATE(3168), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(33), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(33), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3236), + [sym__element] = STATE(3236), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(28), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3236), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(28), + [sym_block] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_assert_statement] = STATE(28), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_yield_statement] = STATE(28), + [sym_yield_each_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3236), + [sym_if_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_for_element] = STATE(3236), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(28), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(28), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -12371,106 +12458,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3168), - [sym__element] = STATE(3168), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(33), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3168), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(33), - [sym_block] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_assert_statement] = STATE(33), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_yield_statement] = STATE(33), - [sym_yield_each_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3168), - [sym_if_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_for_element] = STATE(3168), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(33), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(33), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3236), + [sym__element] = STATE(3236), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(28), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3236), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(28), + [sym_block] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_assert_statement] = STATE(28), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_yield_statement] = STATE(28), + [sym_yield_each_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3236), + [sym_if_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_for_element] = STATE(3236), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(28), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(28), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -12523,106 +12612,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3168), - [sym__element] = STATE(3168), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(33), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3168), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(33), - [sym_block] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_assert_statement] = STATE(33), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_yield_statement] = STATE(33), - [sym_yield_each_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3168), - [sym_if_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_for_element] = STATE(3168), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(33), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(33), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3236), + [sym__element] = STATE(3236), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(28), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3236), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(28), + [sym_block] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_assert_statement] = STATE(28), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_yield_statement] = STATE(28), + [sym_yield_each_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3236), + [sym_if_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_for_element] = STATE(3236), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(28), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(28), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -12675,105 +12766,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3050), - [sym__element] = STATE(3050), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1206), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3050), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1206), - [sym_block] = STATE(1206), - [sym_expression_statement] = STATE(1206), - [sym_assert_statement] = STATE(1206), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1206), - [sym_do_statement] = STATE(1206), - [sym_break_statement] = STATE(1206), - [sym_continue_statement] = STATE(1206), - [sym_yield_statement] = STATE(1206), - [sym_yield_each_statement] = STATE(1206), - [sym_return_statement] = STATE(1206), - [sym_try_statement] = STATE(1206), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3050), - [sym_if_statement] = STATE(1206), - [sym_while_statement] = STATE(1206), - [sym_for_statement] = STATE(1206), - [sym_for_element] = STATE(3050), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1206), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3036), + [sym__element] = STATE(3036), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1263), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3036), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1263), + [sym_block] = STATE(1263), + [sym_expression_statement] = STATE(1263), + [sym_assert_statement] = STATE(1263), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1263), + [sym_do_statement] = STATE(1263), + [sym_break_statement] = STATE(1263), + [sym_continue_statement] = STATE(1263), + [sym_yield_statement] = STATE(1263), + [sym_yield_each_statement] = STATE(1263), + [sym_return_statement] = STATE(1263), + [sym_try_statement] = STATE(1263), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3036), + [sym_if_statement] = STATE(1263), + [sym_while_statement] = STATE(1263), + [sym_for_statement] = STATE(1263), + [sym_for_element] = STATE(3036), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1263), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(145), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_while] = ACTIONS(127), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_if] = ACTIONS(129), + [anon_sym_for] = ACTIONS(147), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_super] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [anon_sym_covariant] = ACTIONS(89), + [anon_sym_Function] = ACTIONS(93), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [17] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3036), + [sym__element] = STATE(3036), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1263), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3036), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1263), + [sym_block] = STATE(1263), + [sym_expression_statement] = STATE(1263), + [sym_assert_statement] = STATE(1263), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1263), + [sym_do_statement] = STATE(1263), + [sym_break_statement] = STATE(1263), + [sym_continue_statement] = STATE(1263), + [sym_yield_statement] = STATE(1263), + [sym_yield_each_statement] = STATE(1263), + [sym_return_statement] = STATE(1263), + [sym_try_statement] = STATE(1263), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3036), + [sym_if_statement] = STATE(1263), + [sym_while_statement] = STATE(1263), + [sym_for_statement] = STATE(1263), + [sym_for_element] = STATE(3036), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1263), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -12824,106 +13069,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [17] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3068), - [sym__element] = STATE(3068), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1213), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3068), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1213), - [sym_block] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1213), - [sym_do_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_yield_statement] = STATE(1213), - [sym_yield_each_statement] = STATE(1213), - [sym_return_statement] = STATE(1213), - [sym_try_statement] = STATE(1213), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3068), - [sym_if_statement] = STATE(1213), - [sym_while_statement] = STATE(1213), - [sym_for_statement] = STATE(1213), - [sym_for_element] = STATE(3068), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1213), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [18] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3070), + [sym__element] = STATE(3070), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1232), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3070), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1232), + [sym_block] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_assert_statement] = STATE(1232), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_yield_statement] = STATE(1232), + [sym_yield_each_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3070), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_element] = STATE(3070), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1232), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -12974,106 +13221,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [18] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3050), - [sym__element] = STATE(3050), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1206), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3050), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1206), - [sym_block] = STATE(1206), - [sym_expression_statement] = STATE(1206), - [sym_assert_statement] = STATE(1206), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1206), - [sym_do_statement] = STATE(1206), - [sym_break_statement] = STATE(1206), - [sym_continue_statement] = STATE(1206), - [sym_yield_statement] = STATE(1206), - [sym_yield_each_statement] = STATE(1206), - [sym_return_statement] = STATE(1206), - [sym_try_statement] = STATE(1206), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3050), - [sym_if_statement] = STATE(1206), - [sym_while_statement] = STATE(1206), - [sym_for_statement] = STATE(1206), - [sym_for_element] = STATE(3050), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1206), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [19] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3034), + [sym__element] = STATE(3034), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1312), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3034), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1312), + [sym_block] = STATE(1312), + [sym_expression_statement] = STATE(1312), + [sym_assert_statement] = STATE(1312), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1312), + [sym_do_statement] = STATE(1312), + [sym_break_statement] = STATE(1312), + [sym_continue_statement] = STATE(1312), + [sym_yield_statement] = STATE(1312), + [sym_yield_each_statement] = STATE(1312), + [sym_return_statement] = STATE(1312), + [sym_try_statement] = STATE(1312), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3034), + [sym_if_statement] = STATE(1312), + [sym_while_statement] = STATE(1312), + [sym_for_statement] = STATE(1312), + [sym_for_element] = STATE(3034), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1312), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -13124,256 +13373,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [19] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3068), - [sym__element] = STATE(3068), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1213), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3068), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1213), - [sym_block] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1213), - [sym_do_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_yield_statement] = STATE(1213), - [sym_yield_each_statement] = STATE(1213), - [sym_return_statement] = STATE(1213), - [sym_try_statement] = STATE(1213), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3068), - [sym_if_statement] = STATE(1213), - [sym_while_statement] = STATE(1213), - [sym_for_statement] = STATE(1213), - [sym_for_element] = STATE(3068), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1213), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(127), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(147), - [anon_sym_AT] = ACTIONS(73), - [anon_sym_super] = ACTIONS(81), - [anon_sym_void] = ACTIONS(83), - [anon_sym_var] = ACTIONS(85), - [anon_sym_covariant] = ACTIONS(89), - [anon_sym_Function] = ACTIONS(93), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(133), - [anon_sym_final] = ACTIONS(135), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [20] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3017), - [sym__element] = STATE(3017), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2924), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2924), - [sym_assignment_expression] = STATE(2924), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1273), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3017), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1273), - [sym_block] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_assert_statement] = STATE(1273), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_yield_statement] = STATE(1273), - [sym_yield_each_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_try_statement] = STATE(1273), - [sym__try_head] = STATE(2848), - [sym_if_element] = STATE(3017), - [sym_if_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym_for_element] = STATE(3017), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1273), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [20] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3070), + [sym__element] = STATE(3070), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(2980), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(2980), + [sym_assignment_expression] = STATE(2980), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1232), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3070), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1232), + [sym_block] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_assert_statement] = STATE(1232), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_yield_statement] = STATE(1232), + [sym_yield_each_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym__try_head] = STATE(2840), + [sym_if_element] = STATE(3070), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_for_element] = STATE(3070), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1232), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -13425,60 +13526,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), [sym_lambda_expression] = STATE(23), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), [sym__statement] = STATE(23), [sym_block] = STATE(23), [sym_expression_statement] = STATE(23), [sym_assert_statement] = STATE(23), - [sym_assertion] = STATE(1228), + [sym_assertion] = STATE(1241), [sym_switch_statement] = STATE(23), [sym_switch_label] = STATE(23), [sym_do_statement] = STATE(23), @@ -13488,38 +13591,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_yield_each_statement] = STATE(23), [sym_return_statement] = STATE(23), [sym_try_statement] = STATE(23), - [sym__try_head] = STATE(2848), + [sym__try_head] = STATE(2840), [sym_if_statement] = STATE(23), [sym_while_statement] = STATE(23), [sym_for_statement] = STATE(23), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), [sym_local_variable_declaration] = STATE(23), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [aux_sym_switch_block_repeat1] = STATE(23), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), @@ -13574,251 +13677,104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(22), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(22), - [sym_block] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_assert_statement] = STATE(22), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(22), - [sym_switch_label] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_yield_statement] = STATE(22), - [sym_yield_each_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(22), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_switch_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(163), - [anon_sym_POUND] = ACTIONS(166), - [sym_decimal_integer_literal] = ACTIONS(169), - [sym_hex_integer_literal] = ACTIONS(169), - [sym_octal_integer_literal] = ACTIONS(172), - [sym_binary_integer_literal] = ACTIONS(172), - [sym_decimal_floating_point_literal] = ACTIONS(172), - [sym_hex_floating_point_literal] = ACTIONS(169), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(184), - [anon_sym_DQUOTE] = ACTIONS(186), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(192), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(195), - [anon_sym_r] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_null] = ACTIONS(204), - [anon_sym_throw] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(216), - [sym_increment_operator] = ACTIONS(219), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_TILDE] = ACTIONS(225), - [anon_sym_await] = ACTIONS(228), - [anon_sym_assert] = ACTIONS(231), - [anon_sym_switch] = ACTIONS(234), - [anon_sym_case] = ACTIONS(237), - [anon_sym_default] = ACTIONS(240), - [anon_sym_do] = ACTIONS(243), - [anon_sym_while] = ACTIONS(246), - [anon_sym_break] = ACTIONS(249), - [anon_sym_continue] = ACTIONS(252), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_return] = ACTIONS(258), - [anon_sym_try] = ACTIONS(261), - [anon_sym_if] = ACTIONS(264), - [anon_sym_for] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_super] = ACTIONS(273), - [anon_sym_void] = ACTIONS(276), - [anon_sym_var] = ACTIONS(279), - [anon_sym_covariant] = ACTIONS(282), - [anon_sym_Function] = ACTIONS(285), - [anon_sym_new] = ACTIONS(288), - [anon_sym_const] = ACTIONS(291), - [anon_sym_final] = ACTIONS(294), - [anon_sym_this] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - }, - [23] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(22), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(22), - [sym_block] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_assert_statement] = STATE(22), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(22), - [sym_switch_label] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_yield_statement] = STATE(22), - [sym_yield_each_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(22), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_switch_block_repeat1] = STATE(22), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(21), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(21), + [sym_block] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_assert_statement] = STATE(21), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(21), + [sym_switch_label] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_yield_statement] = STATE(21), + [sym_yield_each_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_try_statement] = STATE(21), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(21), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_switch_block_repeat1] = STATE(21), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -13830,7 +13786,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_RBRACE] = ACTIONS(163), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -13871,102 +13827,256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, + [23] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(23), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(23), + [sym_block] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_assert_statement] = STATE(23), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(23), + [sym_switch_label] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_yield_statement] = STATE(23), + [sym_yield_each_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(23), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_switch_block_repeat1] = STATE(23), + [sym_identifier] = ACTIONS(165), + [anon_sym_POUND] = ACTIONS(168), + [sym_decimal_integer_literal] = ACTIONS(171), + [sym_hex_integer_literal] = ACTIONS(171), + [sym_octal_integer_literal] = ACTIONS(174), + [sym_binary_integer_literal] = ACTIONS(174), + [sym_decimal_floating_point_literal] = ACTIONS(174), + [sym_hex_floating_point_literal] = ACTIONS(171), + [anon_sym_true] = ACTIONS(177), + [anon_sym_false] = ACTIONS(180), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [anon_sym_SQUOTE] = ACTIONS(191), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(194), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(197), + [anon_sym_r] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(203), + [anon_sym_null] = ACTIONS(206), + [anon_sym_throw] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_DASH] = ACTIONS(218), + [sym_increment_operator] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(224), + [anon_sym_TILDE] = ACTIONS(227), + [anon_sym_await] = ACTIONS(230), + [anon_sym_assert] = ACTIONS(233), + [anon_sym_switch] = ACTIONS(236), + [anon_sym_case] = ACTIONS(239), + [anon_sym_default] = ACTIONS(242), + [anon_sym_do] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_break] = ACTIONS(251), + [anon_sym_continue] = ACTIONS(254), + [anon_sym_yield] = ACTIONS(257), + [anon_sym_return] = ACTIONS(260), + [anon_sym_try] = ACTIONS(263), + [anon_sym_if] = ACTIONS(266), + [anon_sym_for] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(272), + [anon_sym_super] = ACTIONS(275), + [anon_sym_void] = ACTIONS(278), + [anon_sym_var] = ACTIONS(281), + [anon_sym_covariant] = ACTIONS(284), + [anon_sym_Function] = ACTIONS(287), + [anon_sym_new] = ACTIONS(290), + [anon_sym_const] = ACTIONS(293), + [anon_sym_final] = ACTIONS(296), + [anon_sym_this] = ACTIONS(299), + [sym_comment] = ACTIONS(3), + }, [24] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(34), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(34), + [sym_block] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_assert_statement] = STATE(34), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_yield_statement] = STATE(34), + [sym_yield_each_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(34), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(34), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -13977,8 +14087,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -13993,18 +14102,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(153), + [anon_sym_await] = ACTIONS(49), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(127), + [anon_sym_while] = ACTIONS(57), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(159), - [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -14018,102 +14127,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(47), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(47), - [sym_block] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_assert_statement] = STATE(47), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_yield_statement] = STATE(47), - [sym_yield_each_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(47), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(47), - [ts_builtin_sym_end] = ACTIONS(115), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -14124,7 +14234,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(302), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -14139,18 +14250,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(49), + [anon_sym_await] = ACTIONS(153), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), + [anon_sym_while] = ACTIONS(127), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), + [anon_sym_if] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -14164,101 +14275,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -14310,101 +14423,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(28), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(28), + [sym_block] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_assert_statement] = STATE(28), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_yield_statement] = STATE(28), + [sym_yield_each_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(28), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(28), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -14456,101 +14571,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(34), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(34), - [sym_block] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_assert_statement] = STATE(34), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_yield_statement] = STATE(34), - [sym_yield_each_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(34), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(34), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -14602,102 +14719,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(47), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(47), - [sym_block] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_assert_statement] = STATE(47), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_yield_statement] = STATE(47), - [sym_yield_each_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(47), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(47), - [ts_builtin_sym_end] = ACTIONS(119), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(45), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(45), + [sym_block] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_assert_statement] = STATE(45), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_yield_statement] = STATE(45), + [sym_yield_each_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_try_statement] = STATE(45), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(45), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(45), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -14708,7 +14826,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(310), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -14723,18 +14842,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(49), + [anon_sym_await] = ACTIONS(153), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), + [anon_sym_while] = ACTIONS(127), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), + [anon_sym_if] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -14748,101 +14867,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(24), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(24), - [sym_block] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_assert_statement] = STATE(24), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_yield_statement] = STATE(24), - [sym_yield_each_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(24), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(24), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -14854,7 +14975,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(312), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -14894,101 +15015,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(32), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(32), - [sym_block] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_assert_statement] = STATE(32), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_yield_statement] = STATE(32), - [sym_yield_each_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(32), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(32), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -15000,7 +15123,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_RBRACE] = ACTIONS(314), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -15040,101 +15163,104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(34), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(34), + [sym_block] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_assert_statement] = STATE(34), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_yield_statement] = STATE(34), + [sym_yield_each_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(34), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(34), + [ts_builtin_sym_end] = ACTIONS(316), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -15145,8 +15271,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -15161,18 +15286,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(153), + [anon_sym_await] = ACTIONS(49), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(127), + [anon_sym_while] = ACTIONS(57), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(159), - [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -15186,101 +15311,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -15292,7 +15419,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(318), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -15332,101 +15459,251 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(34), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(34), + [sym_block] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_assert_statement] = STATE(34), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_yield_statement] = STATE(34), + [sym_yield_each_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(34), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(34), + [ts_builtin_sym_end] = ACTIONS(320), + [sym_identifier] = ACTIONS(322), + [anon_sym_POUND] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(328), + [sym_hex_integer_literal] = ACTIONS(328), + [sym_octal_integer_literal] = ACTIONS(331), + [sym_binary_integer_literal] = ACTIONS(331), + [sym_decimal_floating_point_literal] = ACTIONS(331), + [sym_hex_floating_point_literal] = ACTIONS(328), + [anon_sym_true] = ACTIONS(334), + [anon_sym_false] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(340), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(352), + [anon_sym_r] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(358), + [anon_sym_null] = ACTIONS(361), + [anon_sym_throw] = ACTIONS(364), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_DASH] = ACTIONS(373), + [sym_increment_operator] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_await] = ACTIONS(385), + [anon_sym_assert] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(391), + [anon_sym_do] = ACTIONS(394), + [anon_sym_while] = ACTIONS(397), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(406), + [anon_sym_return] = ACTIONS(409), + [anon_sym_try] = ACTIONS(412), + [anon_sym_if] = ACTIONS(415), + [anon_sym_for] = ACTIONS(418), + [anon_sym_AT] = ACTIONS(421), + [anon_sym_super] = ACTIONS(424), + [anon_sym_void] = ACTIONS(427), + [anon_sym_var] = ACTIONS(430), + [anon_sym_covariant] = ACTIONS(433), + [anon_sym_Function] = ACTIONS(436), + [anon_sym_new] = ACTIONS(439), + [anon_sym_const] = ACTIONS(442), + [anon_sym_final] = ACTIONS(445), + [anon_sym_this] = ACTIONS(448), + [sym_comment] = ACTIONS(3), + }, + [35] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -15438,7 +15715,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_RBRACE] = ACTIONS(451), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -15477,248 +15754,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [35] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(47), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(47), - [sym_block] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_assert_statement] = STATE(47), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_yield_statement] = STATE(47), - [sym_yield_each_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(47), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(47), - [ts_builtin_sym_end] = ACTIONS(320), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_AT] = ACTIONS(73), - [anon_sym_super] = ACTIONS(81), - [anon_sym_void] = ACTIONS(83), - [anon_sym_var] = ACTIONS(85), - [anon_sym_covariant] = ACTIONS(89), - [anon_sym_Function] = ACTIONS(93), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(133), - [anon_sym_final] = ACTIONS(135), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, [36] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(33), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(33), - [sym_block] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_assert_statement] = STATE(33), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_yield_statement] = STATE(33), - [sym_yield_each_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(33), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(33), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(34), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(34), + [sym_block] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_assert_statement] = STATE(34), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_yield_statement] = STATE(34), + [sym_yield_each_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(34), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(34), + [ts_builtin_sym_end] = ACTIONS(115), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -15729,8 +15863,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -15745,18 +15878,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(153), + [anon_sym_await] = ACTIONS(49), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(127), + [anon_sym_while] = ACTIONS(57), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(159), - [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -15770,101 +15903,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(33), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(33), - [sym_block] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_assert_statement] = STATE(33), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_yield_statement] = STATE(33), - [sym_yield_each_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(33), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(33), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(26), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(26), + [sym_block] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_assert_statement] = STATE(26), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_yield_statement] = STATE(26), + [sym_yield_each_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(26), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(26), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -15876,7 +16011,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_RBRACE] = ACTIONS(453), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -15916,101 +16051,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(26), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(26), - [sym_block] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_assert_statement] = STATE(26), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_yield_statement] = STATE(26), - [sym_yield_each_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(26), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(26), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -16022,7 +16159,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(455), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -16062,102 +16199,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(47), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(47), - [sym_block] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_assert_statement] = STATE(47), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_yield_statement] = STATE(47), - [sym_yield_each_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(47), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(47), - [ts_builtin_sym_end] = ACTIONS(111), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(25), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(25), + [sym_block] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_assert_statement] = STATE(25), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_yield_statement] = STATE(25), + [sym_yield_each_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(25), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(25), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -16168,7 +16306,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(306), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -16183,18 +16322,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(49), + [anon_sym_await] = ACTIONS(153), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), + [anon_sym_while] = ACTIONS(127), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), + [anon_sym_if] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -16208,247 +16347,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), - [sym_identifier] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(329), - [sym_decimal_integer_literal] = ACTIONS(332), - [sym_hex_integer_literal] = ACTIONS(332), - [sym_octal_integer_literal] = ACTIONS(335), - [sym_binary_integer_literal] = ACTIONS(335), - [sym_decimal_floating_point_literal] = ACTIONS(335), - [sym_hex_floating_point_literal] = ACTIONS(332), - [anon_sym_true] = ACTIONS(338), - [anon_sym_false] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(344), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_SQUOTE] = ACTIONS(352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(358), - [anon_sym_r] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_null] = ACTIONS(367), - [anon_sym_throw] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(379), - [sym_increment_operator] = ACTIONS(382), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(388), - [anon_sym_await] = ACTIONS(391), - [anon_sym_assert] = ACTIONS(394), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_do] = ACTIONS(400), - [anon_sym_while] = ACTIONS(403), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_return] = ACTIONS(415), - [anon_sym_try] = ACTIONS(418), - [anon_sym_if] = ACTIONS(421), - [anon_sym_for] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(427), - [anon_sym_super] = ACTIONS(430), - [anon_sym_void] = ACTIONS(433), - [anon_sym_var] = ACTIONS(436), - [anon_sym_covariant] = ACTIONS(439), - [anon_sym_Function] = ACTIONS(442), - [anon_sym_new] = ACTIONS(445), - [anon_sym_const] = ACTIONS(448), - [anon_sym_final] = ACTIONS(451), - [anon_sym_this] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - }, - [41] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(42), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(42), - [sym_block] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_assert_statement] = STATE(42), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_yield_statement] = STATE(42), - [sym_yield_each_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_try_statement] = STATE(42), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(42), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(42), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(31), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(31), + [sym_block] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_assert_statement] = STATE(31), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_yield_statement] = STATE(31), + [sym_yield_each_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(31), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(31), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -16499,102 +16494,104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [42] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [41] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(33), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(33), + [sym_block] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_assert_statement] = STATE(33), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_yield_statement] = STATE(33), + [sym_yield_each_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(33), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(33), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -16645,102 +16642,104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [43] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [42] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -16791,102 +16790,252 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, + [43] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), + [sym_identifier] = ACTIONS(322), + [anon_sym_POUND] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(328), + [sym_hex_integer_literal] = ACTIONS(328), + [sym_octal_integer_literal] = ACTIONS(331), + [sym_binary_integer_literal] = ACTIONS(331), + [sym_decimal_floating_point_literal] = ACTIONS(331), + [sym_hex_floating_point_literal] = ACTIONS(328), + [anon_sym_true] = ACTIONS(334), + [anon_sym_false] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(463), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_SQUOTE] = ACTIONS(346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(352), + [anon_sym_r] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(358), + [anon_sym_null] = ACTIONS(361), + [anon_sym_throw] = ACTIONS(364), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_DASH] = ACTIONS(373), + [sym_increment_operator] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_await] = ACTIONS(466), + [anon_sym_assert] = ACTIONS(388), + [anon_sym_switch] = ACTIONS(391), + [anon_sym_do] = ACTIONS(394), + [anon_sym_while] = ACTIONS(469), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(406), + [anon_sym_return] = ACTIONS(409), + [anon_sym_try] = ACTIONS(412), + [anon_sym_if] = ACTIONS(472), + [anon_sym_for] = ACTIONS(475), + [anon_sym_AT] = ACTIONS(421), + [anon_sym_super] = ACTIONS(424), + [anon_sym_void] = ACTIONS(427), + [anon_sym_var] = ACTIONS(430), + [anon_sym_covariant] = ACTIONS(433), + [anon_sym_Function] = ACTIONS(436), + [anon_sym_new] = ACTIONS(439), + [anon_sym_const] = ACTIONS(442), + [anon_sym_final] = ACTIONS(445), + [anon_sym_this] = ACTIONS(448), + [sym_comment] = ACTIONS(3), + }, [44] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(27), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(27), - [sym_block] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_assert_statement] = STATE(27), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_yield_statement] = STATE(27), - [sym_yield_each_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(27), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(27), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(42), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(42), + [sym_block] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_assert_statement] = STATE(42), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_yield_statement] = STATE(42), + [sym_yield_each_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_try_statement] = STATE(42), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(42), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(42), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -16898,7 +17047,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_RBRACE] = ACTIONS(478), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -16938,102 +17087,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(47), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(47), - [sym_block] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_assert_statement] = STATE(47), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_yield_statement] = STATE(47), - [sym_yield_each_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(47), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(47), - [ts_builtin_sym_end] = ACTIONS(117), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(43), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(43), + [sym_block] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_assert_statement] = STATE(43), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_yield_statement] = STATE(43), + [sym_yield_each_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(43), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(43), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -17044,7 +17194,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(480), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -17059,18 +17210,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(49), + [anon_sym_await] = ACTIONS(153), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), + [anon_sym_while] = ACTIONS(127), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), + [anon_sym_if] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -17084,101 +17235,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [46] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(50), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(50), - [sym_block] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_assert_statement] = STATE(50), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_yield_statement] = STATE(50), - [sym_yield_each_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(50), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(50), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(28), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(28), + [sym_block] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_assert_statement] = STATE(28), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_yield_statement] = STATE(28), + [sym_yield_each_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(28), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(28), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -17190,7 +17343,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(482), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -17230,247 +17383,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [47] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(47), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(47), - [sym_block] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_assert_statement] = STATE(47), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_yield_statement] = STATE(47), - [sym_yield_each_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(47), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(47), - [ts_builtin_sym_end] = ACTIONS(347), - [sym_identifier] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(329), - [sym_decimal_integer_literal] = ACTIONS(332), - [sym_hex_integer_literal] = ACTIONS(332), - [sym_octal_integer_literal] = ACTIONS(335), - [sym_binary_integer_literal] = ACTIONS(335), - [sym_decimal_floating_point_literal] = ACTIONS(335), - [sym_hex_floating_point_literal] = ACTIONS(332), - [anon_sym_true] = ACTIONS(338), - [anon_sym_false] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_SQUOTE] = ACTIONS(352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(358), - [anon_sym_r] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(364), - [anon_sym_null] = ACTIONS(367), - [anon_sym_throw] = ACTIONS(370), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(379), - [sym_increment_operator] = ACTIONS(382), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(388), - [anon_sym_await] = ACTIONS(470), - [anon_sym_assert] = ACTIONS(394), - [anon_sym_switch] = ACTIONS(397), - [anon_sym_do] = ACTIONS(400), - [anon_sym_while] = ACTIONS(473), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_return] = ACTIONS(415), - [anon_sym_try] = ACTIONS(418), - [anon_sym_if] = ACTIONS(476), - [anon_sym_for] = ACTIONS(479), - [anon_sym_AT] = ACTIONS(427), - [anon_sym_super] = ACTIONS(430), - [anon_sym_void] = ACTIONS(433), - [anon_sym_var] = ACTIONS(436), - [anon_sym_covariant] = ACTIONS(439), - [anon_sym_Function] = ACTIONS(442), - [anon_sym_new] = ACTIONS(445), - [anon_sym_const] = ACTIONS(448), - [anon_sym_final] = ACTIONS(451), - [anon_sym_this] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - }, - [48] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(43), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(43), - [sym_block] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_assert_statement] = STATE(43), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_yield_statement] = STATE(43), - [sym_yield_each_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_try_statement] = STATE(43), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(43), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(43), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(38), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(38), + [sym_block] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_assert_statement] = STATE(38), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_yield_statement] = STATE(38), + [sym_yield_each_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_try_statement] = STATE(38), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(38), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(38), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -17482,7 +17491,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(484), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -17521,102 +17530,104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [49] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(51), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(51), - [sym_block] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_assert_statement] = STATE(51), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_yield_statement] = STATE(51), - [sym_yield_each_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_try_statement] = STATE(51), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(51), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(51), + [48] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(35), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(35), + [sym_block] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_assert_statement] = STATE(35), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_yield_statement] = STATE(35), + [sym_yield_each_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(35), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(35), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -17628,7 +17639,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -17667,102 +17678,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [49] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(34), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(34), + [sym_block] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_assert_statement] = STATE(34), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_yield_statement] = STATE(34), + [sym_yield_each_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(34), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(34), + [ts_builtin_sym_end] = ACTIONS(117), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -17773,8 +17787,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -17789,18 +17802,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(153), + [anon_sym_await] = ACTIONS(49), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(127), + [anon_sym_while] = ACTIONS(57), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(159), - [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -17813,102 +17826,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [51] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(40), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(40), - [sym_block] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_assert_statement] = STATE(40), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_yield_statement] = STATE(40), - [sym_yield_each_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(40), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [aux_sym_program_repeat3] = STATE(40), + [50] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(34), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(34), + [sym_block] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_assert_statement] = STATE(34), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_yield_statement] = STATE(34), + [sym_yield_each_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(34), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(34), + [ts_builtin_sym_end] = ACTIONS(111), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -17919,8 +17935,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -17935,18 +17950,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(153), + [anon_sym_await] = ACTIONS(49), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(127), + [anon_sym_while] = ACTIONS(57), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(159), - [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -17959,101 +17974,104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1206), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1206), - [sym_block] = STATE(1206), - [sym_expression_statement] = STATE(1206), - [sym_assert_statement] = STATE(1206), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1206), - [sym_do_statement] = STATE(1206), - [sym_break_statement] = STATE(1206), - [sym_continue_statement] = STATE(1206), - [sym_yield_statement] = STATE(1206), - [sym_yield_each_statement] = STATE(1206), - [sym_return_statement] = STATE(1206), - [sym_try_statement] = STATE(1206), - [sym__try_head] = STATE(2814), - [sym_if_statement] = STATE(1206), - [sym_while_statement] = STATE(1206), - [sym_for_statement] = STATE(1206), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2847), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1206), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [51] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(30), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(30), + [sym_block] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_assert_statement] = STATE(30), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_yield_statement] = STATE(30), + [sym_yield_each_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(30), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [aux_sym_program_repeat3] = STATE(30), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -18064,7 +18082,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -18079,18 +18098,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(492), + [anon_sym_await] = ACTIONS(153), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(494), + [anon_sym_while] = ACTIONS(127), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(496), - [anon_sym_for] = ACTIONS(498), + [anon_sym_if] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -18103,101 +18122,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1227), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1227), - [sym_block] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1227), - [sym_do_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_yield_statement] = STATE(1227), - [sym_yield_each_statement] = STATE(1227), - [sym_return_statement] = STATE(1227), - [sym_try_statement] = STATE(1227), - [sym__try_head] = STATE(2814), - [sym_if_statement] = STATE(1227), - [sym_while_statement] = STATE(1227), - [sym_for_statement] = STATE(1227), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2847), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1227), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [52] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1252), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1252), + [sym_block] = STATE(1252), + [sym_expression_statement] = STATE(1252), + [sym_assert_statement] = STATE(1252), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1252), + [sym_do_statement] = STATE(1252), + [sym_break_statement] = STATE(1252), + [sym_continue_statement] = STATE(1252), + [sym_yield_statement] = STATE(1252), + [sym_yield_each_statement] = STATE(1252), + [sym_return_statement] = STATE(1252), + [sym_try_statement] = STATE(1252), + [sym__try_head] = STATE(2885), + [sym_if_statement] = STATE(1252), + [sym_while_statement] = STATE(1252), + [sym_for_statement] = STATE(1252), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2867), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1252), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -18247,101 +18268,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1273), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1273), - [sym_block] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_assert_statement] = STATE(1273), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_yield_statement] = STATE(1273), - [sym_yield_each_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_try_statement] = STATE(1273), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1273), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [53] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1312), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1312), + [sym_block] = STATE(1312), + [sym_expression_statement] = STATE(1312), + [sym_assert_statement] = STATE(1312), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1312), + [sym_do_statement] = STATE(1312), + [sym_break_statement] = STATE(1312), + [sym_continue_statement] = STATE(1312), + [sym_yield_statement] = STATE(1312), + [sym_yield_each_statement] = STATE(1312), + [sym_return_statement] = STATE(1312), + [sym_try_statement] = STATE(1312), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1312), + [sym_while_statement] = STATE(1312), + [sym_for_statement] = STATE(1312), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1312), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -18391,101 +18414,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1227), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1227), - [sym_block] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1227), - [sym_do_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_yield_statement] = STATE(1227), - [sym_yield_each_statement] = STATE(1227), - [sym_return_statement] = STATE(1227), - [sym_try_statement] = STATE(1227), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1227), - [sym_while_statement] = STATE(1227), - [sym_for_statement] = STATE(1227), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1227), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [54] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1235), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1235), + [sym_block] = STATE(1235), + [sym_expression_statement] = STATE(1235), + [sym_assert_statement] = STATE(1235), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1235), + [sym_do_statement] = STATE(1235), + [sym_break_statement] = STATE(1235), + [sym_continue_statement] = STATE(1235), + [sym_yield_statement] = STATE(1235), + [sym_yield_each_statement] = STATE(1235), + [sym_return_statement] = STATE(1235), + [sym_try_statement] = STATE(1235), + [sym__try_head] = STATE(2885), + [sym_if_statement] = STATE(1235), + [sym_while_statement] = STATE(1235), + [sym_for_statement] = STATE(1235), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2867), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1235), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -18496,7 +18521,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(490), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -18511,18 +18536,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(49), + [anon_sym_await] = ACTIONS(492), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), + [anon_sym_while] = ACTIONS(494), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), + [anon_sym_if] = ACTIONS(496), + [anon_sym_for] = ACTIONS(498), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -18535,101 +18560,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3760), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(3760), - [sym_block] = STATE(3760), - [sym_expression_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(3760), - [sym_do_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_yield_statement] = STATE(3760), - [sym_yield_each_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_try_statement] = STATE(3760), - [sym__try_head] = STATE(2814), - [sym_if_statement] = STATE(3760), - [sym_while_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2847), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(3760), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [55] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(3836), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(3836), + [sym_block] = STATE(3836), + [sym_expression_statement] = STATE(3836), + [sym_assert_statement] = STATE(3836), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(3836), + [sym_do_statement] = STATE(3836), + [sym_break_statement] = STATE(3836), + [sym_continue_statement] = STATE(3836), + [sym_yield_statement] = STATE(3836), + [sym_yield_each_statement] = STATE(3836), + [sym_return_statement] = STATE(3836), + [sym_try_statement] = STATE(3836), + [sym__try_head] = STATE(2885), + [sym_if_statement] = STATE(3836), + [sym_while_statement] = STATE(3836), + [sym_for_statement] = STATE(3836), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2867), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(3836), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -18679,101 +18706,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1459), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1459), - [sym_block] = STATE(1459), - [sym_expression_statement] = STATE(1459), - [sym_assert_statement] = STATE(1459), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1459), - [sym_do_statement] = STATE(1459), - [sym_break_statement] = STATE(1459), - [sym_continue_statement] = STATE(1459), - [sym_yield_statement] = STATE(1459), - [sym_yield_each_statement] = STATE(1459), - [sym_return_statement] = STATE(1459), - [sym_try_statement] = STATE(1459), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1459), - [sym_while_statement] = STATE(1459), - [sym_for_statement] = STATE(1459), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1459), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [56] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1235), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1235), + [sym_block] = STATE(1235), + [sym_expression_statement] = STATE(1235), + [sym_assert_statement] = STATE(1235), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1235), + [sym_do_statement] = STATE(1235), + [sym_break_statement] = STATE(1235), + [sym_continue_statement] = STATE(1235), + [sym_yield_statement] = STATE(1235), + [sym_yield_each_statement] = STATE(1235), + [sym_return_statement] = STATE(1235), + [sym_try_statement] = STATE(1235), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1235), + [sym_while_statement] = STATE(1235), + [sym_for_statement] = STATE(1235), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1235), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -18784,7 +18813,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(149), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -18799,18 +18828,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(49), + [anon_sym_await] = ACTIONS(153), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), + [anon_sym_while] = ACTIONS(127), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), + [anon_sym_if] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -18823,101 +18852,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1213), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1213), - [sym_block] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1213), - [sym_do_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_yield_statement] = STATE(1213), - [sym_yield_each_statement] = STATE(1213), - [sym_return_statement] = STATE(1213), - [sym_try_statement] = STATE(1213), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1213), - [sym_while_statement] = STATE(1213), - [sym_for_statement] = STATE(1213), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1213), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [57] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1235), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1235), + [sym_block] = STATE(1235), + [sym_expression_statement] = STATE(1235), + [sym_assert_statement] = STATE(1235), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1235), + [sym_do_statement] = STATE(1235), + [sym_break_statement] = STATE(1235), + [sym_continue_statement] = STATE(1235), + [sym_yield_statement] = STATE(1235), + [sym_yield_each_statement] = STATE(1235), + [sym_return_statement] = STATE(1235), + [sym_try_statement] = STATE(1235), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1235), + [sym_while_statement] = STATE(1235), + [sym_for_statement] = STATE(1235), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1235), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -18967,245 +18998,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1227), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1227), - [sym_block] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1227), - [sym_do_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_yield_statement] = STATE(1227), - [sym_yield_each_statement] = STATE(1227), - [sym_return_statement] = STATE(1227), - [sym_try_statement] = STATE(1227), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1227), - [sym_while_statement] = STATE(1227), - [sym_for_statement] = STATE(1227), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1227), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(153), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_switch] = ACTIONS(53), - [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(127), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(159), - [anon_sym_for] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(73), - [anon_sym_super] = ACTIONS(81), - [anon_sym_void] = ACTIONS(83), - [anon_sym_var] = ACTIONS(85), - [anon_sym_covariant] = ACTIONS(89), - [anon_sym_Function] = ACTIONS(93), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(133), - [anon_sym_final] = ACTIONS(135), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [60] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1207), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1207), - [sym_block] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_assert_statement] = STATE(1207), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_yield_statement] = STATE(1207), - [sym_yield_each_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_try_statement] = STATE(1207), - [sym__try_head] = STATE(2814), - [sym_if_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2847), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1207), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [58] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(3488), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(3488), + [sym_block] = STATE(3488), + [sym_expression_statement] = STATE(3488), + [sym_assert_statement] = STATE(3488), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(3488), + [sym_do_statement] = STATE(3488), + [sym_break_statement] = STATE(3488), + [sym_continue_statement] = STATE(3488), + [sym_yield_statement] = STATE(3488), + [sym_yield_each_statement] = STATE(3488), + [sym_return_statement] = STATE(3488), + [sym_try_statement] = STATE(3488), + [sym__try_head] = STATE(2885), + [sym_if_statement] = STATE(3488), + [sym_while_statement] = STATE(3488), + [sym_for_statement] = STATE(3488), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2867), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(3488), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -19255,101 +19144,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(3432), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(3432), - [sym_block] = STATE(3432), - [sym_expression_statement] = STATE(3432), - [sym_assert_statement] = STATE(3432), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(3432), - [sym_do_statement] = STATE(3432), - [sym_break_statement] = STATE(3432), - [sym_continue_statement] = STATE(3432), - [sym_yield_statement] = STATE(3432), - [sym_yield_each_statement] = STATE(3432), - [sym_return_statement] = STATE(3432), - [sym_try_statement] = STATE(3432), - [sym__try_head] = STATE(2814), - [sym_if_statement] = STATE(3432), - [sym_while_statement] = STATE(3432), - [sym_for_statement] = STATE(3432), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2847), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(3432), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [59] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1232), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1232), + [sym_block] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_assert_statement] = STATE(1232), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_yield_statement] = STATE(1232), + [sym_yield_each_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1232), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -19360,7 +19251,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -19375,18 +19266,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(492), + [anon_sym_await] = ACTIONS(49), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(494), + [anon_sym_while] = ACTIONS(57), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(496), - [anon_sym_for] = ACTIONS(498), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -19399,101 +19290,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1207), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1207), - [sym_block] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_assert_statement] = STATE(1207), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_yield_statement] = STATE(1207), - [sym_yield_each_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_try_statement] = STATE(1207), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1207), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [60] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1518), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1518), + [sym_block] = STATE(1518), + [sym_expression_statement] = STATE(1518), + [sym_assert_statement] = STATE(1518), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1518), + [sym_do_statement] = STATE(1518), + [sym_break_statement] = STATE(1518), + [sym_continue_statement] = STATE(1518), + [sym_yield_statement] = STATE(1518), + [sym_yield_each_statement] = STATE(1518), + [sym_return_statement] = STATE(1518), + [sym_try_statement] = STATE(1518), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1518), + [sym_while_statement] = STATE(1518), + [sym_for_statement] = STATE(1518), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1518), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -19543,101 +19436,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1206), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1206), - [sym_block] = STATE(1206), - [sym_expression_statement] = STATE(1206), - [sym_assert_statement] = STATE(1206), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1206), - [sym_do_statement] = STATE(1206), - [sym_break_statement] = STATE(1206), - [sym_continue_statement] = STATE(1206), - [sym_yield_statement] = STATE(1206), - [sym_yield_each_statement] = STATE(1206), - [sym_return_statement] = STATE(1206), - [sym_try_statement] = STATE(1206), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1206), - [sym_while_statement] = STATE(1206), - [sym_for_statement] = STATE(1206), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1206), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [61] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1252), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1252), + [sym_block] = STATE(1252), + [sym_expression_statement] = STATE(1252), + [sym_assert_statement] = STATE(1252), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1252), + [sym_do_statement] = STATE(1252), + [sym_break_statement] = STATE(1252), + [sym_continue_statement] = STATE(1252), + [sym_yield_statement] = STATE(1252), + [sym_yield_each_statement] = STATE(1252), + [sym_return_statement] = STATE(1252), + [sym_try_statement] = STATE(1252), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1252), + [sym_while_statement] = STATE(1252), + [sym_for_statement] = STATE(1252), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1252), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -19648,7 +19543,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(149), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -19663,18 +19558,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(49), + [anon_sym_await] = ACTIONS(153), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), + [anon_sym_while] = ACTIONS(127), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), + [anon_sym_if] = ACTIONS(159), + [anon_sym_for] = ACTIONS(161), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -19687,101 +19582,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1206), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1206), - [sym_block] = STATE(1206), - [sym_expression_statement] = STATE(1206), - [sym_assert_statement] = STATE(1206), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1206), - [sym_do_statement] = STATE(1206), - [sym_break_statement] = STATE(1206), - [sym_continue_statement] = STATE(1206), - [sym_yield_statement] = STATE(1206), - [sym_yield_each_statement] = STATE(1206), - [sym_return_statement] = STATE(1206), - [sym_try_statement] = STATE(1206), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1206), - [sym_while_statement] = STATE(1206), - [sym_for_statement] = STATE(1206), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1206), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [62] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1263), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1263), + [sym_block] = STATE(1263), + [sym_expression_statement] = STATE(1263), + [sym_assert_statement] = STATE(1263), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1263), + [sym_do_statement] = STATE(1263), + [sym_break_statement] = STATE(1263), + [sym_continue_statement] = STATE(1263), + [sym_yield_statement] = STATE(1263), + [sym_yield_each_statement] = STATE(1263), + [sym_return_statement] = STATE(1263), + [sym_try_statement] = STATE(1263), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1263), + [sym_while_statement] = STATE(1263), + [sym_for_statement] = STATE(1263), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1263), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -19831,101 +19728,395 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, + [63] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1263), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1263), + [sym_block] = STATE(1263), + [sym_expression_statement] = STATE(1263), + [sym_assert_statement] = STATE(1263), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1263), + [sym_do_statement] = STATE(1263), + [sym_break_statement] = STATE(1263), + [sym_continue_statement] = STATE(1263), + [sym_yield_statement] = STATE(1263), + [sym_yield_each_statement] = STATE(1263), + [sym_return_statement] = STATE(1263), + [sym_try_statement] = STATE(1263), + [sym__try_head] = STATE(2885), + [sym_if_statement] = STATE(1263), + [sym_while_statement] = STATE(1263), + [sym_for_statement] = STATE(1263), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2867), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1263), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(492), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_while] = ACTIONS(494), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_if] = ACTIONS(496), + [anon_sym_for] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_super] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [anon_sym_covariant] = ACTIONS(89), + [anon_sym_Function] = ACTIONS(93), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [64] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1263), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1263), + [sym_block] = STATE(1263), + [sym_expression_statement] = STATE(1263), + [sym_assert_statement] = STATE(1263), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1263), + [sym_do_statement] = STATE(1263), + [sym_break_statement] = STATE(1263), + [sym_continue_statement] = STATE(1263), + [sym_yield_statement] = STATE(1263), + [sym_yield_each_statement] = STATE(1263), + [sym_return_statement] = STATE(1263), + [sym_try_statement] = STATE(1263), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1263), + [sym_while_statement] = STATE(1263), + [sym_for_statement] = STATE(1263), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1263), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_AT] = ACTIONS(73), + [anon_sym_super] = ACTIONS(81), + [anon_sym_void] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [anon_sym_covariant] = ACTIONS(89), + [anon_sym_Function] = ACTIONS(93), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, [65] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1207), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1207), - [sym_block] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_assert_statement] = STATE(1207), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_yield_statement] = STATE(1207), - [sym_yield_each_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_try_statement] = STATE(1207), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1207), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1252), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1252), + [sym_block] = STATE(1252), + [sym_expression_statement] = STATE(1252), + [sym_assert_statement] = STATE(1252), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1252), + [sym_do_statement] = STATE(1252), + [sym_break_statement] = STATE(1252), + [sym_continue_statement] = STATE(1252), + [sym_yield_statement] = STATE(1252), + [sym_yield_each_statement] = STATE(1252), + [sym_return_statement] = STATE(1252), + [sym_try_statement] = STATE(1252), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1252), + [sym_while_statement] = STATE(1252), + [sym_for_statement] = STATE(1252), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1252), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -19936,7 +20127,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -19951,18 +20142,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(153), + [anon_sym_await] = ACTIONS(49), [anon_sym_assert] = ACTIONS(51), [anon_sym_switch] = ACTIONS(53), [anon_sym_do] = ACTIONS(55), - [anon_sym_while] = ACTIONS(127), + [anon_sym_while] = ACTIONS(57), [anon_sym_break] = ACTIONS(59), [anon_sym_continue] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_return] = ACTIONS(65), [anon_sym_try] = ACTIONS(67), - [anon_sym_if] = ACTIONS(159), - [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), [anon_sym_AT] = ACTIONS(73), [anon_sym_super] = ACTIONS(81), [anon_sym_void] = ACTIONS(83), @@ -19976,100 +20167,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [66] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1213), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1213), - [sym_block] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1213), - [sym_do_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_yield_statement] = STATE(1213), - [sym_yield_each_statement] = STATE(1213), - [sym_return_statement] = STATE(1213), - [sym_try_statement] = STATE(1213), - [sym__try_head] = STATE(2814), - [sym_if_statement] = STATE(1213), - [sym_while_statement] = STATE(1213), - [sym_for_statement] = STATE(1213), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2847), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1213), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1232), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1232), + [sym_block] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_assert_statement] = STATE(1232), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_yield_statement] = STATE(1232), + [sym_yield_each_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym__try_head] = STATE(2885), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2867), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1232), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -20120,100 +20313,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [67] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3337), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3337), - [sym_assignment_expression] = STATE(3337), - [sym_assignable_expression] = STATE(2484), - [sym_lambda_expression] = STATE(1213), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__statement] = STATE(1213), - [sym_block] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_assertion] = STATE(1228), - [sym_switch_statement] = STATE(1213), - [sym_do_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_yield_statement] = STATE(1213), - [sym_yield_each_statement] = STATE(1213), - [sym_return_statement] = STATE(1213), - [sym_try_statement] = STATE(1213), - [sym__try_head] = STATE(2848), - [sym_if_statement] = STATE(1213), - [sym_while_statement] = STATE(1213), - [sym_for_statement] = STATE(1213), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(3058), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3773), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2804), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(1213), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3457), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3457), + [sym_assignment_expression] = STATE(3457), + [sym_assignable_expression] = STATE(2527), + [sym_lambda_expression] = STATE(1232), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__statement] = STATE(1232), + [sym_block] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_assert_statement] = STATE(1232), + [sym_assertion] = STATE(1241), + [sym_switch_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_yield_statement] = STATE(1232), + [sym_yield_each_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym__try_head] = STATE(2840), + [sym_if_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3082), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3602), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2860), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(1232), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -20264,90 +20459,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [68] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3168), - [sym__element] = STATE(3168), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3168), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3168), - [sym_for_element] = STATE(3168), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_formal_parameter] = STATE(2998), - [sym__default_named_parameter] = STATE(3294), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3236), + [sym__element] = STATE(3236), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3236), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3236), + [sym_for_element] = STATE(3236), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_formal_parameter] = STATE(3104), + [sym__default_named_parameter] = STATE(3193), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(500), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -20392,90 +20589,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [69] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3114), - [sym__element] = STATE(3114), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3114), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3114), - [sym_for_element] = STATE(3114), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_formal_parameter] = STATE(3258), - [sym__default_formal_parameter] = STATE(3239), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3293), + [sym__element] = STATE(3293), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3293), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3293), + [sym_for_element] = STATE(3293), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_formal_parameter] = STATE(3194), + [sym__default_formal_parameter] = STATE(3197), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(516), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -20519,88 +20718,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [70] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3658), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3658), - [sym_assignment_expression] = STATE(3658), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__normal_formal_parameters] = STATE(3344), - [sym_optional_formal_parameters] = STATE(3765), - [sym__optional_postional_formal_parameters] = STATE(3764), - [sym__named_formal_parameters] = STATE(3764), - [sym_formal_parameter] = STATE(3202), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3650), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3650), + [sym_assignment_expression] = STATE(3650), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__normal_formal_parameters] = STATE(3405), + [sym_optional_formal_parameters] = STATE(3830), + [sym__optional_postional_formal_parameters] = STATE(3834), + [sym__named_formal_parameters] = STATE(3834), + [sym_formal_parameter] = STATE(3350), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(520), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -20641,88 +20842,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3738), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3738), - [sym_assignment_expression] = STATE(3738), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__normal_formal_parameters] = STATE(3344), - [sym_optional_formal_parameters] = STATE(3765), - [sym__optional_postional_formal_parameters] = STATE(3764), - [sym__named_formal_parameters] = STATE(3764), - [sym_formal_parameter] = STATE(3202), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3798), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3798), + [sym_assignment_expression] = STATE(3798), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__normal_formal_parameters] = STATE(3405), + [sym_optional_formal_parameters] = STATE(3830), + [sym__optional_postional_formal_parameters] = STATE(3834), + [sym__named_formal_parameters] = STATE(3834), + [sym_formal_parameter] = STATE(3350), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(520), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -20763,88 +20966,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [72] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3799), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3799), - [sym_assignment_expression] = STATE(3799), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__normal_formal_parameters] = STATE(3344), - [sym_optional_formal_parameters] = STATE(3765), - [sym__optional_postional_formal_parameters] = STATE(3764), - [sym__named_formal_parameters] = STATE(3764), - [sym_formal_parameter] = STATE(3202), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3728), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3728), + [sym_assignment_expression] = STATE(3728), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__normal_formal_parameters] = STATE(3405), + [sym_optional_formal_parameters] = STATE(3830), + [sym__optional_postional_formal_parameters] = STATE(3834), + [sym__named_formal_parameters] = STATE(3834), + [sym_formal_parameter] = STATE(3350), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(520), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -20885,88 +21090,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [73] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3552), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3552), - [sym_assignment_expression] = STATE(3552), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__normal_formal_parameters] = STATE(3344), - [sym_optional_formal_parameters] = STATE(3765), - [sym__optional_postional_formal_parameters] = STATE(3764), - [sym__named_formal_parameters] = STATE(3764), - [sym_formal_parameter] = STATE(3202), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3625), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3625), + [sym_assignment_expression] = STATE(3625), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__normal_formal_parameters] = STATE(3405), + [sym_optional_formal_parameters] = STATE(3830), + [sym__optional_postional_formal_parameters] = STATE(3834), + [sym__named_formal_parameters] = STATE(3834), + [sym_formal_parameter] = STATE(3350), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(520), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21007,88 +21214,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [74] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3695), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3695), - [sym_assignment_expression] = STATE(3695), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__normal_formal_parameters] = STATE(3344), - [sym_optional_formal_parameters] = STATE(3765), - [sym__optional_postional_formal_parameters] = STATE(3764), - [sym__named_formal_parameters] = STATE(3764), - [sym_formal_parameter] = STATE(3202), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3608), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3608), + [sym_assignment_expression] = STATE(3608), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__normal_formal_parameters] = STATE(3405), + [sym_optional_formal_parameters] = STATE(3830), + [sym__optional_postional_formal_parameters] = STATE(3834), + [sym__named_formal_parameters] = STATE(3834), + [sym_formal_parameter] = STATE(3350), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(520), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21129,88 +21338,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [75] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3622), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3622), - [sym_assignment_expression] = STATE(3622), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__normal_formal_parameters] = STATE(3344), - [sym_optional_formal_parameters] = STATE(3765), - [sym__optional_postional_formal_parameters] = STATE(3764), - [sym__named_formal_parameters] = STATE(3764), - [sym_formal_parameter] = STATE(3202), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3657), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3657), + [sym_assignment_expression] = STATE(3657), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__normal_formal_parameters] = STATE(3405), + [sym_optional_formal_parameters] = STATE(3830), + [sym__optional_postional_formal_parameters] = STATE(3834), + [sym__named_formal_parameters] = STATE(3834), + [sym_formal_parameter] = STATE(3350), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(520), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21251,88 +21462,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [76] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3619), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3619), - [sym_assignment_expression] = STATE(3619), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__normal_formal_parameters] = STATE(3344), - [sym_optional_formal_parameters] = STATE(3765), - [sym__optional_postional_formal_parameters] = STATE(3764), - [sym__named_formal_parameters] = STATE(3764), - [sym_formal_parameter] = STATE(3202), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3790), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3790), + [sym_assignment_expression] = STATE(3790), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__normal_formal_parameters] = STATE(3405), + [sym_optional_formal_parameters] = STATE(3830), + [sym__optional_postional_formal_parameters] = STATE(3834), + [sym__named_formal_parameters] = STATE(3834), + [sym_formal_parameter] = STATE(3350), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(520), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21373,88 +21586,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [77] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3536), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3536), - [sym_assignment_expression] = STATE(3536), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__annotation] = STATE(2270), - [sym_marker_annotation] = STATE(2270), - [sym_annotation] = STATE(2270), - [aux_sym__metadata] = STATE(2270), - [sym_type_parameters] = STATE(3220), - [sym__declared_identifier] = STATE(2905), - [sym__final_const_var_or_type] = STATE(3090), - [sym__type] = STATE(3343), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3090), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__normal_formal_parameters] = STATE(3344), - [sym_optional_formal_parameters] = STATE(3765), - [sym__optional_postional_formal_parameters] = STATE(3764), - [sym__named_formal_parameters] = STATE(3764), - [sym_formal_parameter] = STATE(3202), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3841), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__annotation] = STATE(2306), + [sym_marker_annotation] = STATE(2306), + [sym_annotation] = STATE(2306), + [aux_sym__metadata] = STATE(2306), + [sym_type_parameters] = STATE(3289), + [sym__declared_identifier] = STATE(2942), + [sym__final_const_var_or_type] = STATE(3348), + [sym__type] = STATE(3406), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3348), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__normal_formal_parameters] = STATE(3405), + [sym_optional_formal_parameters] = STATE(3830), + [sym__optional_postional_formal_parameters] = STATE(3834), + [sym__named_formal_parameters] = STATE(3834), + [sym_formal_parameter] = STATE(3350), [sym__normal_formal_parameter] = STATE(2940), [sym__function_formal_parameter] = STATE(2940), [sym__simple_formal_parameter] = STATE(2940), [sym_constructor_param] = STATE(2940), - [sym__covariant] = STATE(2444), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1511), - [sym_super] = STATE(2287), + [sym__covariant] = STATE(2459), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1541), + [sym_super] = STATE(2338), [sym_identifier] = ACTIONS(520), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21495,83 +21710,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [78] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3647), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3708), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21612,83 +21829,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [79] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3589), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3792), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21729,83 +21948,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [80] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3634), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3649), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21846,83 +22067,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [81] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3685), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3751), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -21963,83 +22186,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [82] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3560), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3769), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -22080,83 +22305,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [83] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3714), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3615), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -22197,83 +22424,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [84] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3671), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3703), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -22314,83 +22543,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3652), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3665), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -22431,83 +22662,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [86] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3683), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3644), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -22548,83 +22781,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3594), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3643), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -22665,83 +22900,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [88] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3635), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3779), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -22782,83 +23019,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3046), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3046), - [sym_assignment_expression] = STATE(3046), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__for_loop_parts] = STATE(3588), - [sym__annotation] = STATE(2395), - [sym_marker_annotation] = STATE(2395), - [sym_annotation] = STATE(2395), - [aux_sym__metadata] = STATE(2395), - [sym_type_parameters] = STATE(3220), - [sym_initialized_variable_definition] = STATE(3339), - [sym__declared_identifier] = STATE(2994), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(3780), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2753), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym_local_variable_declaration] = STATE(344), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2531), - [sym__final_builtin] = STATE(2615), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(350), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3037), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3037), + [sym_assignment_expression] = STATE(3037), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym__for_loop_parts] = STATE(3667), + [sym__annotation] = STATE(2430), + [sym_marker_annotation] = STATE(2430), + [sym_annotation] = STATE(2430), + [aux_sym__metadata] = STATE(2430), + [sym_type_parameters] = STATE(3289), + [sym_initialized_variable_definition] = STATE(3486), + [sym__declared_identifier] = STATE(3030), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3699), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2799), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym_local_variable_declaration] = STATE(355), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2573), + [sym__final_builtin] = STATE(2635), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(354), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), @@ -22899,20 +23138,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [90] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [sym_cascade_section] = STATE(185), - [aux_sym__expression_repeat1] = STATE(185), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [sym_cascade_section] = STATE(219), + [aux_sym__expression_repeat1] = STATE(219), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(534), [sym_identifier] = ACTIONS(536), [anon_sym_POUND] = ACTIONS(534), @@ -23008,18 +23247,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [91] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(565), [sym_identifier] = ACTIONS(567), [anon_sym_POUND] = ACTIONS(565), @@ -23055,11 +23294,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_GT_EQ] = ACTIONS(565), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(565), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_QMARK_QMARK] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(544), - [sym_equality_operator] = ACTIONS(546), + [anon_sym_QMARK_QMARK] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_equality_operator] = ACTIONS(569), [anon_sym_LT] = ACTIONS(567), [anon_sym_GT] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(565), @@ -23115,62 +23354,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [92] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_POUND] = ACTIONS(569), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [anon_sym_true] = ACTIONS(571), - [anon_sym_false] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(569), - [anon_sym_r] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_null] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_EQ] = ACTIONS(571), - [anon_sym_PLUS_EQ] = ACTIONS(569), - [anon_sym_DASH_EQ] = ACTIONS(569), - [anon_sym_STAR_EQ] = ACTIONS(569), - [anon_sym_SLASH_EQ] = ACTIONS(569), - [anon_sym_AMP_EQ] = ACTIONS(569), - [anon_sym_PIPE_EQ] = ACTIONS(569), - [anon_sym_CARET_EQ] = ACTIONS(569), - [anon_sym_PERCENT_EQ] = ACTIONS(569), - [anon_sym_LT_LT_EQ] = ACTIONS(569), - [anon_sym_GT_GT_EQ] = ACTIONS(569), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(569), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(569), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(572), + [anon_sym_r] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_null] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(574), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(572), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(572), [anon_sym_QMARK_QMARK] = ACTIONS(538), [anon_sym_QMARK] = ACTIONS(540), [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_AMP_AMP] = ACTIONS(544), [sym_equality_operator] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), [anon_sym_PIPE] = ACTIONS(548), [anon_sym_CARET] = ACTIONS(550), [anon_sym_AMP] = ACTIONS(552), @@ -23183,101 +23422,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(558), [anon_sym_PERCENT] = ACTIONS(558), [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_await] = ACTIONS(571), - [anon_sym_is] = ACTIONS(571), - [anon_sym_as] = ACTIONS(571), - [anon_sym_DOT] = ACTIONS(571), - [anon_sym_QMARK_DOT] = ACTIONS(569), - [anon_sym_DOT_DOT] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_super] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_covariant] = ACTIONS(571), - [anon_sym_Function] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [anon_sym_new] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_external] = ACTIONS(571), - [anon_sym_this] = ACTIONS(571), + [sym_increment_operator] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_is] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(574), + [anon_sym_QMARK_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_super] = ACTIONS(574), + [anon_sym_void] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [anon_sym_covariant] = ACTIONS(574), + [anon_sym_Function] = ACTIONS(574), + [anon_sym_get] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_external] = ACTIONS(574), + [anon_sym_this] = ACTIONS(574), [sym_comment] = ACTIONS(3), }, [93] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [anon_sym_POUND] = ACTIONS(573), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [anon_sym_true] = ACTIONS(575), - [anon_sym_false] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [anon_sym_SQUOTE] = ACTIONS(575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(573), - [anon_sym_r] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(575), - [anon_sym_PLUS_EQ] = ACTIONS(573), - [anon_sym_DASH_EQ] = ACTIONS(573), - [anon_sym_STAR_EQ] = ACTIONS(573), - [anon_sym_SLASH_EQ] = ACTIONS(573), - [anon_sym_AMP_EQ] = ACTIONS(573), - [anon_sym_PIPE_EQ] = ACTIONS(573), - [anon_sym_CARET_EQ] = ACTIONS(573), - [anon_sym_PERCENT_EQ] = ACTIONS(573), - [anon_sym_LT_LT_EQ] = ACTIONS(573), - [anon_sym_GT_GT_EQ] = ACTIONS(573), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(573), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(573), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(576), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), + [anon_sym_r] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_null] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(578), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(576), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(576), [anon_sym_QMARK_QMARK] = ACTIONS(538), [anon_sym_QMARK] = ACTIONS(540), [anon_sym_PIPE_PIPE] = ACTIONS(542), [anon_sym_AMP_AMP] = ACTIONS(544), [sym_equality_operator] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(575), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), [anon_sym_PIPE] = ACTIONS(548), [anon_sym_CARET] = ACTIONS(550), [anon_sym_AMP] = ACTIONS(552), @@ -23290,101 +23529,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(558), [anon_sym_PERCENT] = ACTIONS(558), [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(575), - [anon_sym_await] = ACTIONS(575), - [anon_sym_is] = ACTIONS(575), - [anon_sym_as] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_super] = ACTIONS(575), - [anon_sym_void] = ACTIONS(575), - [anon_sym_var] = ACTIONS(575), - [anon_sym_covariant] = ACTIONS(575), - [anon_sym_Function] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), - [anon_sym_new] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_external] = ACTIONS(575), - [anon_sym_this] = ACTIONS(575), + [sym_increment_operator] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_await] = ACTIONS(578), + [anon_sym_is] = ACTIONS(578), + [anon_sym_as] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_QMARK_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_super] = ACTIONS(578), + [anon_sym_void] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [anon_sym_covariant] = ACTIONS(578), + [anon_sym_Function] = ACTIONS(578), + [anon_sym_get] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [anon_sym_const] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_external] = ACTIONS(578), + [anon_sym_this] = ACTIONS(578), [sym_comment] = ACTIONS(3), }, [94] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), - [ts_builtin_sym_end] = ACTIONS(577), - [sym_identifier] = ACTIONS(579), - [anon_sym_POUND] = ACTIONS(577), - [sym_decimal_integer_literal] = ACTIONS(579), - [sym_hex_integer_literal] = ACTIONS(579), - [sym_octal_integer_literal] = ACTIONS(577), - [sym_binary_integer_literal] = ACTIONS(577), - [sym_decimal_floating_point_literal] = ACTIONS(577), - [sym_hex_floating_point_literal] = ACTIONS(579), - [anon_sym_true] = ACTIONS(579), - [anon_sym_false] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(577), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(577), - [anon_sym_r] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_null] = ACTIONS(579), - [anon_sym_throw] = ACTIONS(579), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(577), - [anon_sym_DASH_EQ] = ACTIONS(577), - [anon_sym_STAR_EQ] = ACTIONS(577), - [anon_sym_SLASH_EQ] = ACTIONS(577), - [anon_sym_AMP_EQ] = ACTIONS(577), - [anon_sym_PIPE_EQ] = ACTIONS(577), - [anon_sym_CARET_EQ] = ACTIONS(577), - [anon_sym_PERCENT_EQ] = ACTIONS(577), - [anon_sym_LT_LT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_EQ] = ACTIONS(577), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(577), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(577), - [anon_sym_QMARK_QMARK] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(577), - [sym_equality_operator] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_LT_EQ] = ACTIONS(577), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(580), + [sym_identifier] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(580), + [sym_decimal_integer_literal] = ACTIONS(582), + [sym_hex_integer_literal] = ACTIONS(582), + [sym_octal_integer_literal] = ACTIONS(580), + [sym_binary_integer_literal] = ACTIONS(580), + [sym_decimal_floating_point_literal] = ACTIONS(580), + [sym_hex_floating_point_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(582), + [anon_sym_false] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(580), + [anon_sym_r] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_null] = ACTIONS(582), + [anon_sym_throw] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(580), + [anon_sym_DASH_EQ] = ACTIONS(580), + [anon_sym_STAR_EQ] = ACTIONS(580), + [anon_sym_SLASH_EQ] = ACTIONS(580), + [anon_sym_AMP_EQ] = ACTIONS(580), + [anon_sym_PIPE_EQ] = ACTIONS(580), + [anon_sym_CARET_EQ] = ACTIONS(580), + [anon_sym_PERCENT_EQ] = ACTIONS(580), + [anon_sym_LT_LT_EQ] = ACTIONS(580), + [anon_sym_GT_GT_EQ] = ACTIONS(580), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(580), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(580), + [anon_sym_QMARK_QMARK] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(540), + [anon_sym_PIPE_PIPE] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(544), + [sym_equality_operator] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(580), [anon_sym_PIPE] = ACTIONS(548), [anon_sym_CARET] = ACTIONS(550), [anon_sym_AMP] = ACTIONS(552), @@ -23397,57 +23636,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(558), [anon_sym_PERCENT] = ACTIONS(558), [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(579), - [anon_sym_await] = ACTIONS(579), - [anon_sym_is] = ACTIONS(579), - [anon_sym_as] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_QMARK_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_assert] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_do] = ACTIONS(579), - [anon_sym_while] = ACTIONS(579), - [anon_sym_break] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(579), - [anon_sym_yield] = ACTIONS(579), - [anon_sym_return] = ACTIONS(579), - [anon_sym_try] = ACTIONS(579), - [anon_sym_if] = ACTIONS(579), - [anon_sym_for] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_abstract] = ACTIONS(579), - [anon_sym_class] = ACTIONS(579), - [anon_sym_super] = ACTIONS(579), - [anon_sym_void] = ACTIONS(579), - [anon_sym_var] = ACTIONS(579), - [anon_sym_covariant] = ACTIONS(579), - [anon_sym_Function] = ACTIONS(579), - [anon_sym_get] = ACTIONS(579), - [anon_sym_set] = ACTIONS(579), - [anon_sym_new] = ACTIONS(579), - [anon_sym_const] = ACTIONS(579), - [anon_sym_final] = ACTIONS(579), - [anon_sym_external] = ACTIONS(579), - [anon_sym_this] = ACTIONS(579), + [sym_increment_operator] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_await] = ACTIONS(582), + [anon_sym_is] = ACTIONS(582), + [anon_sym_as] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_assert] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(582), + [anon_sym_do] = ACTIONS(582), + [anon_sym_while] = ACTIONS(582), + [anon_sym_break] = ACTIONS(582), + [anon_sym_continue] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_return] = ACTIONS(582), + [anon_sym_try] = ACTIONS(582), + [anon_sym_if] = ACTIONS(582), + [anon_sym_for] = ACTIONS(582), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(582), + [anon_sym_abstract] = ACTIONS(582), + [anon_sym_class] = ACTIONS(582), + [anon_sym_super] = ACTIONS(582), + [anon_sym_void] = ACTIONS(582), + [anon_sym_var] = ACTIONS(582), + [anon_sym_covariant] = ACTIONS(582), + [anon_sym_Function] = ACTIONS(582), + [anon_sym_get] = ACTIONS(582), + [anon_sym_set] = ACTIONS(582), + [anon_sym_new] = ACTIONS(582), + [anon_sym_const] = ACTIONS(582), + [anon_sym_final] = ACTIONS(582), + [anon_sym_external] = ACTIONS(582), + [anon_sym_this] = ACTIONS(582), [sym_comment] = ACTIONS(3), }, [95] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(584), [sym_identifier] = ACTIONS(586), [anon_sym_POUND] = ACTIONS(584), @@ -23543,18 +23782,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [96] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(588), [sym_identifier] = ACTIONS(590), [anon_sym_POUND] = ACTIONS(588), @@ -23650,18 +23889,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [97] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(592), [sym_identifier] = ACTIONS(594), [anon_sym_POUND] = ACTIONS(592), @@ -23757,18 +23996,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [98] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(596), [sym_identifier] = ACTIONS(598), [anon_sym_POUND] = ACTIONS(596), @@ -23864,18 +24103,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [99] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(600), [sym_identifier] = ACTIONS(602), [anon_sym_POUND] = ACTIONS(600), @@ -23971,18 +24210,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [100] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(604), [sym_identifier] = ACTIONS(606), [anon_sym_POUND] = ACTIONS(604), @@ -24078,18 +24317,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [101] = { - [aux_sym__if_null_expression] = STATE(203), - [sym_shift_operator] = STATE(648), - [sym_additive_operator] = STATE(649), - [sym_multiplicative_operator] = STATE(650), - [aux_sym_logical_or_expression_repeat1] = STATE(201), - [aux_sym_logical_and_expression_repeat1] = STATE(200), - [aux_sym_bitwise_or_expression_repeat1] = STATE(202), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(197), - [aux_sym_bitwise_and_expression_repeat1] = STATE(196), - [aux_sym_shift_expression_repeat1] = STATE(183), - [aux_sym_additive_expression_repeat1] = STATE(186), - [aux_sym_multiplicative_expression_repeat1] = STATE(190), + [aux_sym__if_null_expression] = STATE(233), + [sym_shift_operator] = STATE(688), + [sym_additive_operator] = STATE(601), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_logical_or_expression_repeat1] = STATE(232), + [aux_sym_logical_and_expression_repeat1] = STATE(231), + [aux_sym_bitwise_or_expression_repeat1] = STATE(226), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(237), + [aux_sym_bitwise_and_expression_repeat1] = STATE(224), + [aux_sym_shift_expression_repeat1] = STATE(223), + [aux_sym_additive_expression_repeat1] = STATE(214), + [aux_sym_multiplicative_expression_repeat1] = STATE(221), [ts_builtin_sym_end] = ACTIONS(608), [sym_identifier] = ACTIONS(610), [anon_sym_POUND] = ACTIONS(608), @@ -24185,17 +24424,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [102] = { - [sym_assignable_selector_part] = STATE(2512), - [sym_selector] = STATE(114), - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(224), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(226), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2512), - [aux_sym_assignable_selector_part_repeat1] = STATE(2584), - [aux_sym__postfix_expression_repeat1] = STATE(114), + [sym__assignment_operator] = STATE(458), + [sym_arguments] = STATE(252), + [sym__cascade_subsection] = STATE(171), + [sym__cascade_assignment_section] = STATE(822), + [sym_argument_part] = STATE(108), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(108), + [aux_sym_cascade_section_repeat1] = STATE(171), [ts_builtin_sym_end] = ACTIONS(612), [sym_identifier] = ACTIONS(614), [anon_sym_POUND] = ACTIONS(612), @@ -24213,30 +24452,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(612), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(612), [anon_sym_r] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_COMMA] = ACTIONS(612), [anon_sym_null] = ACTIONS(614), [anon_sym_throw] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(612), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(618), + [anon_sym_DASH_EQ] = ACTIONS(618), + [anon_sym_STAR_EQ] = ACTIONS(618), + [anon_sym_SLASH_EQ] = ACTIONS(618), + [anon_sym_AMP_EQ] = ACTIONS(618), + [anon_sym_PIPE_EQ] = ACTIONS(618), + [anon_sym_CARET_EQ] = ACTIONS(618), + [anon_sym_PERCENT_EQ] = ACTIONS(618), + [anon_sym_LT_LT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(618), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(612), [anon_sym_QMARK_QMARK] = ACTIONS(614), [anon_sym_QMARK] = ACTIONS(614), [anon_sym_PIPE_PIPE] = ACTIONS(612), [anon_sym_AMP_AMP] = ACTIONS(612), [sym_equality_operator] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(614), [anon_sym_GT] = ACTIONS(614), [anon_sym_GT_EQ] = ACTIONS(612), [anon_sym_LT_EQ] = ACTIONS(612), @@ -24252,14 +24491,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(614), [anon_sym_PERCENT] = ACTIONS(614), [anon_sym_TILDE_SLASH] = ACTIONS(612), - [sym_increment_operator] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(628), + [sym_increment_operator] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(614), [anon_sym_TILDE] = ACTIONS(614), [anon_sym_await] = ACTIONS(614), [anon_sym_is] = ACTIONS(614), [anon_sym_as] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_QMARK_DOT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(614), + [anon_sym_QMARK_DOT] = ACTIONS(612), [anon_sym_DOT_DOT] = ACTIONS(612), [anon_sym_assert] = ACTIONS(614), [anon_sym_switch] = ACTIONS(614), @@ -24291,569 +24530,357 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [103] = { - [sym__assignment_operator] = STATE(522), - [sym_arguments] = STATE(242), - [sym__cascade_subsection] = STATE(119), - [sym__cascade_assignment_section] = STATE(823), - [sym_argument_part] = STATE(123), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(123), - [aux_sym_cascade_section_repeat1] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(637), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(637), - [anon_sym_r] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_null] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_DASH_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_AMP_EQ] = ACTIONS(643), - [anon_sym_PIPE_EQ] = ACTIONS(643), - [anon_sym_CARET_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_LT_LT_EQ] = ACTIONS(643), - [anon_sym_GT_GT_EQ] = ACTIONS(643), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(643), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_QMARK_QMARK] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [sym_equality_operator] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_GT_GT_GT] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(639), - [anon_sym_TILDE_SLASH] = ACTIONS(637), + [sym_assignable_selector_part] = STATE(2385), + [sym_selector] = STATE(586), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(853), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(304), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2385), + [aux_sym_assignable_selector_part_repeat1] = STATE(2657), + [aux_sym__postfix_expression_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(622), + [sym_hex_integer_literal] = ACTIONS(622), + [sym_octal_integer_literal] = ACTIONS(620), + [sym_binary_integer_literal] = ACTIONS(620), + [sym_decimal_floating_point_literal] = ACTIONS(620), + [sym_hex_floating_point_literal] = ACTIONS(622), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(620), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(620), + [anon_sym_r] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_null] = ACTIONS(622), + [anon_sym_throw] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_AMP_EQ] = ACTIONS(629), + [anon_sym_PIPE_EQ] = ACTIONS(629), + [anon_sym_CARET_EQ] = ACTIONS(629), + [anon_sym_PERCENT_EQ] = ACTIONS(629), + [anon_sym_LT_LT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_AMP_AMP] = ACTIONS(620), + [sym_equality_operator] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_TILDE_SLASH] = ACTIONS(620), [sym_increment_operator] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_await] = ACTIONS(639), - [anon_sym_is] = ACTIONS(639), - [anon_sym_as] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_QMARK_DOT] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_super] = ACTIONS(639), - [anon_sym_void] = ACTIONS(639), - [anon_sym_var] = ACTIONS(639), - [anon_sym_covariant] = ACTIONS(639), - [anon_sym_Function] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_new] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_external] = ACTIONS(639), - [anon_sym_this] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_is] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_QMARK_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(620), + [anon_sym_assert] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(622), + [anon_sym_do] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_try] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_abstract] = ACTIONS(622), + [anon_sym_class] = ACTIONS(622), + [anon_sym_super] = ACTIONS(622), + [anon_sym_void] = ACTIONS(622), + [anon_sym_var] = ACTIONS(622), + [anon_sym_covariant] = ACTIONS(622), + [anon_sym_Function] = ACTIONS(622), + [anon_sym_get] = ACTIONS(622), + [anon_sym_set] = ACTIONS(622), + [anon_sym_new] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_final] = ACTIONS(622), + [anon_sym_external] = ACTIONS(622), + [anon_sym_this] = ACTIONS(622), [sym_comment] = ACTIONS(3), }, [104] = { - [sym_assignable_selector_part] = STATE(2351), - [sym_selector] = STATE(389), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(762), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(268), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2351), - [aux_sym_assignable_selector_part_repeat1] = STATE(2552), - [aux_sym__postfix_expression_repeat1] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [sym_decimal_integer_literal] = ACTIONS(614), - [sym_hex_integer_literal] = ACTIONS(614), - [sym_octal_integer_literal] = ACTIONS(612), - [sym_binary_integer_literal] = ACTIONS(612), - [sym_decimal_floating_point_literal] = ACTIONS(612), - [sym_hex_floating_point_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(614), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(612), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(612), - [anon_sym_r] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_null] = ACTIONS(614), - [anon_sym_throw] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(645), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [anon_sym_DASH_EQ] = ACTIONS(647), - [anon_sym_STAR_EQ] = ACTIONS(647), - [anon_sym_SLASH_EQ] = ACTIONS(647), - [anon_sym_AMP_EQ] = ACTIONS(647), - [anon_sym_PIPE_EQ] = ACTIONS(647), - [anon_sym_CARET_EQ] = ACTIONS(647), - [anon_sym_PERCENT_EQ] = ACTIONS(647), - [anon_sym_LT_LT_EQ] = ACTIONS(647), - [anon_sym_GT_GT_EQ] = ACTIONS(647), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(647), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_QMARK_QMARK] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_AMP_AMP] = ACTIONS(612), - [sym_equality_operator] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_GT_GT_GT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_TILDE_SLASH] = ACTIONS(612), - [sym_increment_operator] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_await] = ACTIONS(614), - [anon_sym_is] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_QMARK_DOT] = ACTIONS(657), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_switch] = ACTIONS(614), - [anon_sym_do] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_try] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(612), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_abstract] = ACTIONS(614), - [anon_sym_class] = ACTIONS(614), - [anon_sym_super] = ACTIONS(614), - [anon_sym_void] = ACTIONS(614), - [anon_sym_var] = ACTIONS(614), - [anon_sym_covariant] = ACTIONS(614), - [anon_sym_Function] = ACTIONS(614), - [anon_sym_get] = ACTIONS(614), - [anon_sym_set] = ACTIONS(614), - [anon_sym_new] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_final] = ACTIONS(614), - [anon_sym_external] = ACTIONS(614), - [anon_sym_this] = ACTIONS(614), + [sym_assignable_selector_part] = STATE(2555), + [sym_selector] = STATE(114), + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(326), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(298), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2555), + [aux_sym_assignable_selector_part_repeat1] = STATE(2601), + [aux_sym__postfix_expression_repeat1] = STATE(114), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_POUND] = ACTIONS(649), + [sym_decimal_integer_literal] = ACTIONS(651), + [sym_hex_integer_literal] = ACTIONS(651), + [sym_octal_integer_literal] = ACTIONS(649), + [sym_binary_integer_literal] = ACTIONS(649), + [sym_decimal_floating_point_literal] = ACTIONS(649), + [sym_hex_floating_point_literal] = ACTIONS(651), + [anon_sym_true] = ACTIONS(651), + [anon_sym_false] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(649), + [anon_sym_r] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_null] = ACTIONS(651), + [anon_sym_throw] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_PLUS_EQ] = ACTIONS(649), + [anon_sym_DASH_EQ] = ACTIONS(649), + [anon_sym_STAR_EQ] = ACTIONS(649), + [anon_sym_SLASH_EQ] = ACTIONS(649), + [anon_sym_AMP_EQ] = ACTIONS(649), + [anon_sym_PIPE_EQ] = ACTIONS(649), + [anon_sym_CARET_EQ] = ACTIONS(649), + [anon_sym_PERCENT_EQ] = ACTIONS(649), + [anon_sym_LT_LT_EQ] = ACTIONS(649), + [anon_sym_GT_GT_EQ] = ACTIONS(649), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(649), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_QMARK_QMARK] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [sym_equality_operator] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_LT_LT] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(651), + [anon_sym_GT_GT_GT] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_PERCENT] = ACTIONS(651), + [anon_sym_TILDE_SLASH] = ACTIONS(649), + [sym_increment_operator] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_await] = ACTIONS(651), + [anon_sym_is] = ACTIONS(651), + [anon_sym_as] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(665), + [anon_sym_QMARK_DOT] = ACTIONS(668), + [anon_sym_DOT_DOT] = ACTIONS(649), + [anon_sym_assert] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(651), + [anon_sym_do] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(651), + [anon_sym_return] = ACTIONS(651), + [anon_sym_try] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_enum] = ACTIONS(651), + [anon_sym_abstract] = ACTIONS(651), + [anon_sym_class] = ACTIONS(651), + [anon_sym_super] = ACTIONS(651), + [anon_sym_void] = ACTIONS(651), + [anon_sym_var] = ACTIONS(651), + [anon_sym_covariant] = ACTIONS(651), + [anon_sym_Function] = ACTIONS(651), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(651), + [anon_sym_new] = ACTIONS(651), + [anon_sym_const] = ACTIONS(651), + [anon_sym_final] = ACTIONS(651), + [anon_sym_external] = ACTIONS(651), + [anon_sym_this] = ACTIONS(651), [sym_comment] = ACTIONS(3), }, [105] = { - [sym_assignable_selector_part] = STATE(2515), + [sym_assignable_selector_part] = STATE(2547), [sym_selector] = STATE(116), - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(224), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(300), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2515), - [aux_sym_assignable_selector_part_repeat1] = STATE(2584), + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(326), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(303), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2547), + [aux_sym_assignable_selector_part_repeat1] = STATE(2601), [aux_sym__postfix_expression_repeat1] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(659), - [sym_identifier] = ACTIONS(661), - [anon_sym_POUND] = ACTIONS(659), - [sym_decimal_integer_literal] = ACTIONS(661), - [sym_hex_integer_literal] = ACTIONS(661), - [sym_octal_integer_literal] = ACTIONS(659), - [sym_binary_integer_literal] = ACTIONS(659), - [sym_decimal_floating_point_literal] = ACTIONS(659), - [sym_hex_floating_point_literal] = ACTIONS(661), - [anon_sym_true] = ACTIONS(661), - [anon_sym_false] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(659), - [anon_sym_r] = ACTIONS(661), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_null] = ACTIONS(661), - [anon_sym_throw] = ACTIONS(661), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_CARET_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(659), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_QMARK_QMARK] = ACTIONS(661), - [anon_sym_QMARK] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(659), - [anon_sym_AMP_AMP] = ACTIONS(659), - [sym_equality_operator] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(659), - [anon_sym_LT_EQ] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_CARET] = ACTIONS(661), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(661), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_GT_GT_GT] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_PERCENT] = ACTIONS(661), - [anon_sym_TILDE_SLASH] = ACTIONS(659), - [sym_increment_operator] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(672), - [anon_sym_TILDE] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_is] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_DOT] = ACTIONS(675), - [anon_sym_QMARK_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_assert] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_yield] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_try] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_class] = ACTIONS(661), - [anon_sym_super] = ACTIONS(661), - [anon_sym_void] = ACTIONS(661), - [anon_sym_var] = ACTIONS(661), - [anon_sym_covariant] = ACTIONS(661), - [anon_sym_Function] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [anon_sym_new] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_final] = ACTIONS(661), - [anon_sym_external] = ACTIONS(661), - [anon_sym_this] = ACTIONS(661), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(622), + [sym_hex_integer_literal] = ACTIONS(622), + [sym_octal_integer_literal] = ACTIONS(620), + [sym_binary_integer_literal] = ACTIONS(620), + [sym_decimal_floating_point_literal] = ACTIONS(620), + [sym_hex_floating_point_literal] = ACTIONS(622), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(620), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(620), + [anon_sym_r] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_null] = ACTIONS(622), + [anon_sym_throw] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(620), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_AMP_AMP] = ACTIONS(620), + [sym_equality_operator] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_TILDE_SLASH] = ACTIONS(620), + [sym_increment_operator] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_is] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_QMARK_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(620), + [anon_sym_assert] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(622), + [anon_sym_do] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_try] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_abstract] = ACTIONS(622), + [anon_sym_class] = ACTIONS(622), + [anon_sym_super] = ACTIONS(622), + [anon_sym_void] = ACTIONS(622), + [anon_sym_var] = ACTIONS(622), + [anon_sym_covariant] = ACTIONS(622), + [anon_sym_Function] = ACTIONS(622), + [anon_sym_get] = ACTIONS(622), + [anon_sym_set] = ACTIONS(622), + [anon_sym_new] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_final] = ACTIONS(622), + [anon_sym_external] = ACTIONS(622), + [anon_sym_this] = ACTIONS(622), [sym_comment] = ACTIONS(3), }, [106] = { - [sym__assignment_operator] = STATE(522), - [sym_arguments] = STATE(242), - [sym__cascade_subsection] = STATE(117), - [sym__cascade_assignment_section] = STATE(844), - [sym_argument_part] = STATE(103), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(103), - [aux_sym_cascade_section_repeat1] = STATE(117), - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [anon_sym_POUND] = ACTIONS(681), - [sym_decimal_integer_literal] = ACTIONS(683), - [sym_hex_integer_literal] = ACTIONS(683), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(681), - [sym_decimal_floating_point_literal] = ACTIONS(681), - [sym_hex_floating_point_literal] = ACTIONS(683), - [anon_sym_true] = ACTIONS(683), - [anon_sym_false] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(681), - [anon_sym_r] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(681), - [anon_sym_null] = ACTIONS(683), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_DASH_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_AMP_EQ] = ACTIONS(643), - [anon_sym_PIPE_EQ] = ACTIONS(643), - [anon_sym_CARET_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_LT_LT_EQ] = ACTIONS(643), - [anon_sym_GT_GT_EQ] = ACTIONS(643), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(643), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_QMARK_QMARK] = ACTIONS(683), - [anon_sym_QMARK] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [sym_equality_operator] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_LT_LT] = ACTIONS(683), - [anon_sym_GT_GT] = ACTIONS(683), - [anon_sym_GT_GT_GT] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(683), - [anon_sym_PERCENT] = ACTIONS(683), - [anon_sym_TILDE_SLASH] = ACTIONS(681), - [sym_increment_operator] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_is] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_DOT] = ACTIONS(683), - [anon_sym_QMARK_DOT] = ACTIONS(681), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_assert] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_try] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_abstract] = ACTIONS(683), - [anon_sym_class] = ACTIONS(683), - [anon_sym_super] = ACTIONS(683), - [anon_sym_void] = ACTIONS(683), - [anon_sym_var] = ACTIONS(683), - [anon_sym_covariant] = ACTIONS(683), - [anon_sym_Function] = ACTIONS(683), - [anon_sym_get] = ACTIONS(683), - [anon_sym_set] = ACTIONS(683), - [anon_sym_new] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_final] = ACTIONS(683), - [anon_sym_external] = ACTIONS(683), - [anon_sym_this] = ACTIONS(683), - [sym_comment] = ACTIONS(3), - }, - [107] = { - [sym__assignment_operator] = STATE(430), - [sym_arguments] = STATE(242), - [sym__cascade_subsection] = STATE(120), - [sym__cascade_assignment_section] = STATE(243), - [sym_argument_part] = STATE(108), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(108), - [aux_sym_cascade_section_repeat1] = STATE(120), - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [anon_sym_POUND] = ACTIONS(681), - [sym_decimal_integer_literal] = ACTIONS(683), - [sym_hex_integer_literal] = ACTIONS(683), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(681), - [sym_decimal_floating_point_literal] = ACTIONS(681), - [sym_hex_floating_point_literal] = ACTIONS(683), - [anon_sym_true] = ACTIONS(683), - [anon_sym_false] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(681), - [anon_sym_r] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(681), - [anon_sym_null] = ACTIONS(683), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(683), - [anon_sym_PLUS_EQ] = ACTIONS(681), - [anon_sym_DASH_EQ] = ACTIONS(681), - [anon_sym_STAR_EQ] = ACTIONS(681), - [anon_sym_SLASH_EQ] = ACTIONS(681), - [anon_sym_AMP_EQ] = ACTIONS(681), - [anon_sym_PIPE_EQ] = ACTIONS(681), - [anon_sym_CARET_EQ] = ACTIONS(681), - [anon_sym_PERCENT_EQ] = ACTIONS(681), - [anon_sym_LT_LT_EQ] = ACTIONS(681), - [anon_sym_GT_GT_EQ] = ACTIONS(681), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(681), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_QMARK_QMARK] = ACTIONS(683), - [anon_sym_QMARK] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [sym_equality_operator] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_LT_LT] = ACTIONS(683), - [anon_sym_GT_GT] = ACTIONS(683), - [anon_sym_GT_GT_GT] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(683), - [anon_sym_PERCENT] = ACTIONS(683), - [anon_sym_TILDE_SLASH] = ACTIONS(681), - [sym_increment_operator] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_is] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_DOT] = ACTIONS(683), - [anon_sym_QMARK_DOT] = ACTIONS(681), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_assert] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_try] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_abstract] = ACTIONS(683), - [anon_sym_class] = ACTIONS(683), - [anon_sym_super] = ACTIONS(683), - [anon_sym_void] = ACTIONS(683), - [anon_sym_var] = ACTIONS(683), - [anon_sym_covariant] = ACTIONS(683), - [anon_sym_Function] = ACTIONS(683), - [anon_sym_get] = ACTIONS(683), - [anon_sym_set] = ACTIONS(683), - [anon_sym_new] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_final] = ACTIONS(683), - [anon_sym_external] = ACTIONS(683), - [anon_sym_this] = ACTIONS(683), - [sym_comment] = ACTIONS(3), - }, - [108] = { - [sym__assignment_operator] = STATE(430), - [sym_arguments] = STATE(242), - [sym__cascade_subsection] = STATE(118), - [sym__cascade_assignment_section] = STATE(299), - [sym_argument_part] = STATE(123), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(123), - [aux_sym_cascade_section_repeat1] = STATE(118), - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(637), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(637), - [anon_sym_r] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_null] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), + [sym_assignable_selector_part] = STATE(2385), + [sym_selector] = STATE(116), + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(326), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(262), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2385), + [aux_sym_assignable_selector_part_repeat1] = STATE(2657), + [aux_sym__postfix_expression_repeat1] = STATE(116), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(622), + [sym_hex_integer_literal] = ACTIONS(622), + [sym_octal_integer_literal] = ACTIONS(620), + [sym_binary_integer_literal] = ACTIONS(620), + [sym_decimal_floating_point_literal] = ACTIONS(620), + [sym_hex_floating_point_literal] = ACTIONS(622), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(620), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(620), + [anon_sym_r] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_null] = ACTIONS(622), + [anon_sym_throw] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(677), [anon_sym_PLUS_EQ] = ACTIONS(637), [anon_sym_DASH_EQ] = ACTIONS(637), [anon_sym_STAR_EQ] = ACTIONS(637), @@ -24866,184 +24893,396 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(637), [anon_sym_GT_GT_GT_EQ] = ACTIONS(637), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_QMARK_QMARK] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [sym_equality_operator] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_GT_GT_GT] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(639), - [anon_sym_TILDE_SLASH] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_AMP_AMP] = ACTIONS(620), + [sym_equality_operator] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_TILDE_SLASH] = ACTIONS(620), [sym_increment_operator] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_await] = ACTIONS(639), - [anon_sym_is] = ACTIONS(639), - [anon_sym_as] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_QMARK_DOT] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_super] = ACTIONS(639), - [anon_sym_void] = ACTIONS(639), - [anon_sym_var] = ACTIONS(639), - [anon_sym_covariant] = ACTIONS(639), - [anon_sym_Function] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_new] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_external] = ACTIONS(639), - [anon_sym_this] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_is] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_QMARK_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(620), + [anon_sym_assert] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(622), + [anon_sym_do] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_try] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_abstract] = ACTIONS(622), + [anon_sym_class] = ACTIONS(622), + [anon_sym_super] = ACTIONS(622), + [anon_sym_void] = ACTIONS(622), + [anon_sym_var] = ACTIONS(622), + [anon_sym_covariant] = ACTIONS(622), + [anon_sym_Function] = ACTIONS(622), + [anon_sym_get] = ACTIONS(622), + [anon_sym_set] = ACTIONS(622), + [anon_sym_new] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_final] = ACTIONS(622), + [anon_sym_external] = ACTIONS(622), + [anon_sym_this] = ACTIONS(622), + [sym_comment] = ACTIONS(3), + }, + [107] = { + [sym_assignable_selector_part] = STATE(2385), + [sym_selector] = STATE(584), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(853), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(304), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2385), + [aux_sym_assignable_selector_part_repeat1] = STATE(2657), + [aux_sym__postfix_expression_repeat1] = STATE(584), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(622), + [sym_hex_integer_literal] = ACTIONS(622), + [sym_octal_integer_literal] = ACTIONS(620), + [sym_binary_integer_literal] = ACTIONS(620), + [sym_decimal_floating_point_literal] = ACTIONS(620), + [sym_hex_floating_point_literal] = ACTIONS(622), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(620), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(620), + [anon_sym_r] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_null] = ACTIONS(622), + [anon_sym_throw] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_AMP_EQ] = ACTIONS(629), + [anon_sym_PIPE_EQ] = ACTIONS(629), + [anon_sym_CARET_EQ] = ACTIONS(629), + [anon_sym_PERCENT_EQ] = ACTIONS(629), + [anon_sym_LT_LT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_AMP_AMP] = ACTIONS(620), + [sym_equality_operator] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_TILDE_SLASH] = ACTIONS(620), + [sym_increment_operator] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_is] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(620), + [anon_sym_assert] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(622), + [anon_sym_do] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_try] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_abstract] = ACTIONS(622), + [anon_sym_class] = ACTIONS(622), + [anon_sym_super] = ACTIONS(622), + [anon_sym_void] = ACTIONS(622), + [anon_sym_var] = ACTIONS(622), + [anon_sym_covariant] = ACTIONS(622), + [anon_sym_Function] = ACTIONS(622), + [anon_sym_get] = ACTIONS(622), + [anon_sym_set] = ACTIONS(622), + [anon_sym_new] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_final] = ACTIONS(622), + [anon_sym_external] = ACTIONS(622), + [anon_sym_this] = ACTIONS(622), + [sym_comment] = ACTIONS(3), + }, + [108] = { + [sym__assignment_operator] = STATE(458), + [sym_arguments] = STATE(252), + [sym__cascade_subsection] = STATE(169), + [sym__cascade_assignment_section] = STATE(820), + [sym_argument_part] = STATE(209), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(209), + [aux_sym_cascade_section_repeat1] = STATE(169), + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(684), + [anon_sym_r] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_null] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(618), + [anon_sym_DASH_EQ] = ACTIONS(618), + [anon_sym_STAR_EQ] = ACTIONS(618), + [anon_sym_SLASH_EQ] = ACTIONS(618), + [anon_sym_AMP_EQ] = ACTIONS(618), + [anon_sym_PIPE_EQ] = ACTIONS(618), + [anon_sym_CARET_EQ] = ACTIONS(618), + [anon_sym_PERCENT_EQ] = ACTIONS(618), + [anon_sym_LT_LT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(618), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_QMARK_QMARK] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_AMP_AMP] = ACTIONS(684), + [sym_equality_operator] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_GT_GT_GT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_TILDE_SLASH] = ACTIONS(684), + [sym_increment_operator] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_is] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(684), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_super] = ACTIONS(686), + [anon_sym_void] = ACTIONS(686), + [anon_sym_var] = ACTIONS(686), + [anon_sym_covariant] = ACTIONS(686), + [anon_sym_Function] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [anon_sym_new] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_external] = ACTIONS(686), + [anon_sym_this] = ACTIONS(686), [sym_comment] = ACTIONS(3), }, [109] = { - [sym_assignable_selector_part] = STATE(2351), - [sym_selector] = STATE(440), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(762), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(268), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2351), - [aux_sym_assignable_selector_part_repeat1] = STATE(2552), - [aux_sym__postfix_expression_repeat1] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [sym_decimal_integer_literal] = ACTIONS(614), - [sym_hex_integer_literal] = ACTIONS(614), - [sym_octal_integer_literal] = ACTIONS(612), - [sym_binary_integer_literal] = ACTIONS(612), - [sym_decimal_floating_point_literal] = ACTIONS(612), - [sym_hex_floating_point_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(614), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(612), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(612), - [anon_sym_r] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_null] = ACTIONS(614), - [anon_sym_throw] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(645), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [anon_sym_DASH_EQ] = ACTIONS(647), - [anon_sym_STAR_EQ] = ACTIONS(647), - [anon_sym_SLASH_EQ] = ACTIONS(647), - [anon_sym_AMP_EQ] = ACTIONS(647), - [anon_sym_PIPE_EQ] = ACTIONS(647), - [anon_sym_CARET_EQ] = ACTIONS(647), - [anon_sym_PERCENT_EQ] = ACTIONS(647), - [anon_sym_LT_LT_EQ] = ACTIONS(647), - [anon_sym_GT_GT_EQ] = ACTIONS(647), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(647), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_QMARK_QMARK] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_AMP_AMP] = ACTIONS(612), - [sym_equality_operator] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_GT_GT_GT] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_TILDE_SLASH] = ACTIONS(612), - [sym_increment_operator] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_await] = ACTIONS(614), - [anon_sym_is] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_QMARK_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_switch] = ACTIONS(614), - [anon_sym_do] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_try] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(612), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_abstract] = ACTIONS(614), - [anon_sym_class] = ACTIONS(614), - [anon_sym_super] = ACTIONS(614), - [anon_sym_void] = ACTIONS(614), - [anon_sym_var] = ACTIONS(614), - [anon_sym_covariant] = ACTIONS(614), - [anon_sym_Function] = ACTIONS(614), - [anon_sym_get] = ACTIONS(614), - [anon_sym_set] = ACTIONS(614), - [anon_sym_new] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_final] = ACTIONS(614), - [anon_sym_external] = ACTIONS(614), - [anon_sym_this] = ACTIONS(614), + [sym__assignment_operator] = STATE(447), + [sym_arguments] = STATE(252), + [sym__cascade_subsection] = STATE(176), + [sym__cascade_assignment_section] = STATE(345), + [sym_argument_part] = STATE(209), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(209), + [aux_sym_cascade_section_repeat1] = STATE(176), + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(684), + [anon_sym_r] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_null] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(684), + [anon_sym_DASH_EQ] = ACTIONS(684), + [anon_sym_STAR_EQ] = ACTIONS(684), + [anon_sym_SLASH_EQ] = ACTIONS(684), + [anon_sym_AMP_EQ] = ACTIONS(684), + [anon_sym_PIPE_EQ] = ACTIONS(684), + [anon_sym_CARET_EQ] = ACTIONS(684), + [anon_sym_PERCENT_EQ] = ACTIONS(684), + [anon_sym_LT_LT_EQ] = ACTIONS(684), + [anon_sym_GT_GT_EQ] = ACTIONS(684), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(684), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_QMARK_QMARK] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_AMP_AMP] = ACTIONS(684), + [sym_equality_operator] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_GT_GT_GT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_TILDE_SLASH] = ACTIONS(684), + [sym_increment_operator] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_is] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(684), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_super] = ACTIONS(686), + [anon_sym_void] = ACTIONS(686), + [anon_sym_var] = ACTIONS(686), + [anon_sym_covariant] = ACTIONS(686), + [anon_sym_Function] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [anon_sym_new] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_external] = ACTIONS(686), + [anon_sym_this] = ACTIONS(686), [sym_comment] = ACTIONS(3), }, [110] = { - [sym_assignable_selector_part] = STATE(2351), - [sym_selector] = STATE(114), - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(224), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(296), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2351), - [aux_sym_assignable_selector_part_repeat1] = STATE(2552), - [aux_sym__postfix_expression_repeat1] = STATE(114), + [sym__assignment_operator] = STATE(447), + [sym_arguments] = STATE(252), + [sym__cascade_subsection] = STATE(177), + [sym__cascade_assignment_section] = STATE(352), + [sym_argument_part] = STATE(109), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(109), + [aux_sym_cascade_section_repeat1] = STATE(177), [ts_builtin_sym_end] = ACTIONS(612), [sym_identifier] = ACTIONS(614), [anon_sym_POUND] = ACTIONS(612), @@ -25061,30 +25300,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(612), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(612), [anon_sym_r] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_COMMA] = ACTIONS(612), [anon_sym_null] = ACTIONS(614), [anon_sym_throw] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_PLUS_EQ] = ACTIONS(625), - [anon_sym_DASH_EQ] = ACTIONS(625), - [anon_sym_STAR_EQ] = ACTIONS(625), - [anon_sym_SLASH_EQ] = ACTIONS(625), - [anon_sym_AMP_EQ] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(625), - [anon_sym_PERCENT_EQ] = ACTIONS(625), - [anon_sym_LT_LT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(612), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), [anon_sym_QMARK_QMARK] = ACTIONS(614), [anon_sym_QMARK] = ACTIONS(614), [anon_sym_PIPE_PIPE] = ACTIONS(612), [anon_sym_AMP_AMP] = ACTIONS(612), [sym_equality_operator] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(614), [anon_sym_GT] = ACTIONS(614), [anon_sym_GT_EQ] = ACTIONS(612), [anon_sym_LT_EQ] = ACTIONS(612), @@ -25100,14 +25339,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(614), [anon_sym_PERCENT] = ACTIONS(614), [anon_sym_TILDE_SLASH] = ACTIONS(612), - [sym_increment_operator] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(628), + [sym_increment_operator] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(614), [anon_sym_TILDE] = ACTIONS(614), [anon_sym_await] = ACTIONS(614), [anon_sym_is] = ACTIONS(614), [anon_sym_as] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_QMARK_DOT] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(614), + [anon_sym_QMARK_DOT] = ACTIONS(612), [anon_sym_DOT_DOT] = ACTIONS(612), [anon_sym_assert] = ACTIONS(614), [anon_sym_switch] = ACTIONS(614), @@ -25139,325 +25378,325 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [111] = { - [sym_assignable_selector_part] = STATE(111), - [sym_arguments] = STATE(2967), - [sym_argument_part] = STATE(2558), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(220), - [sym_type_arguments] = STATE(3505), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(111), - [aux_sym_assignable_selector_part_repeat1] = STATE(2558), - [ts_builtin_sym_end] = ACTIONS(688), - [sym_identifier] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(688), - [sym_decimal_integer_literal] = ACTIONS(690), - [sym_hex_integer_literal] = ACTIONS(690), - [sym_octal_integer_literal] = ACTIONS(688), - [sym_binary_integer_literal] = ACTIONS(688), - [sym_decimal_floating_point_literal] = ACTIONS(688), - [sym_hex_floating_point_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(690), - [anon_sym_false] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_DQUOTE] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(690), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(688), - [anon_sym_r] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(688), - [anon_sym_null] = ACTIONS(690), - [anon_sym_throw] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(690), - [anon_sym_PLUS_EQ] = ACTIONS(688), - [anon_sym_DASH_EQ] = ACTIONS(688), - [anon_sym_STAR_EQ] = ACTIONS(688), - [anon_sym_SLASH_EQ] = ACTIONS(688), - [anon_sym_AMP_EQ] = ACTIONS(688), - [anon_sym_PIPE_EQ] = ACTIONS(688), - [anon_sym_CARET_EQ] = ACTIONS(688), - [anon_sym_PERCENT_EQ] = ACTIONS(688), - [anon_sym_LT_LT_EQ] = ACTIONS(688), - [anon_sym_GT_GT_EQ] = ACTIONS(688), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(688), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(688), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_QMARK_QMARK] = ACTIONS(690), - [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [anon_sym_AMP_AMP] = ACTIONS(688), - [sym_equality_operator] = ACTIONS(688), - [anon_sym_LT] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(688), - [anon_sym_LT_EQ] = ACTIONS(688), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_GT_GT_GT] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_TILDE_SLASH] = ACTIONS(688), - [sym_increment_operator] = ACTIONS(688), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_await] = ACTIONS(690), - [anon_sym_is] = ACTIONS(690), - [anon_sym_as] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(701), - [anon_sym_QMARK_DOT] = ACTIONS(704), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(690), - [anon_sym_switch] = ACTIONS(690), - [anon_sym_do] = ACTIONS(690), - [anon_sym_while] = ACTIONS(690), - [anon_sym_break] = ACTIONS(690), - [anon_sym_continue] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(690), - [anon_sym_return] = ACTIONS(690), - [anon_sym_try] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(688), - [anon_sym_enum] = ACTIONS(690), - [anon_sym_abstract] = ACTIONS(690), - [anon_sym_class] = ACTIONS(690), - [anon_sym_super] = ACTIONS(690), - [anon_sym_void] = ACTIONS(690), - [anon_sym_var] = ACTIONS(690), - [anon_sym_covariant] = ACTIONS(690), - [anon_sym_Function] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), - [anon_sym_new] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_final] = ACTIONS(690), - [anon_sym_external] = ACTIONS(690), - [anon_sym_this] = ACTIONS(690), + [sym_assignable_selector_part] = STATE(112), + [sym_arguments] = STATE(2989), + [sym_argument_part] = STATE(2653), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(339), + [sym_type_arguments] = STATE(3384), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(112), + [aux_sym_assignable_selector_part_repeat1] = STATE(2653), + [ts_builtin_sym_end] = ACTIONS(629), + [sym_identifier] = ACTIONS(627), + [anon_sym_POUND] = ACTIONS(629), + [sym_decimal_integer_literal] = ACTIONS(627), + [sym_hex_integer_literal] = ACTIONS(627), + [sym_octal_integer_literal] = ACTIONS(629), + [sym_binary_integer_literal] = ACTIONS(629), + [sym_decimal_floating_point_literal] = ACTIONS(629), + [sym_hex_floating_point_literal] = ACTIONS(627), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_SQUOTE] = ACTIONS(627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(629), + [anon_sym_r] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_null] = ACTIONS(627), + [anon_sym_throw] = ACTIONS(627), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_AMP_EQ] = ACTIONS(629), + [anon_sym_PIPE_EQ] = ACTIONS(629), + [anon_sym_CARET_EQ] = ACTIONS(629), + [anon_sym_PERCENT_EQ] = ACTIONS(629), + [anon_sym_LT_LT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_QMARK_QMARK] = ACTIONS(627), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(629), + [sym_equality_operator] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_TILDE_SLASH] = ACTIONS(629), + [sym_increment_operator] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_TILDE] = ACTIONS(627), + [anon_sym_await] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_QMARK_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(629), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(627), + [anon_sym_do] = ACTIONS(627), + [anon_sym_while] = ACTIONS(627), + [anon_sym_break] = ACTIONS(627), + [anon_sym_continue] = ACTIONS(627), + [anon_sym_yield] = ACTIONS(627), + [anon_sym_return] = ACTIONS(627), + [anon_sym_try] = ACTIONS(627), + [anon_sym_if] = ACTIONS(627), + [anon_sym_for] = ACTIONS(627), + [anon_sym_AT] = ACTIONS(629), + [anon_sym_enum] = ACTIONS(627), + [anon_sym_abstract] = ACTIONS(627), + [anon_sym_class] = ACTIONS(627), + [anon_sym_super] = ACTIONS(627), + [anon_sym_void] = ACTIONS(627), + [anon_sym_var] = ACTIONS(627), + [anon_sym_covariant] = ACTIONS(627), + [anon_sym_Function] = ACTIONS(627), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(627), + [anon_sym_new] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [anon_sym_final] = ACTIONS(627), + [anon_sym_external] = ACTIONS(627), + [anon_sym_this] = ACTIONS(627), [sym_comment] = ACTIONS(3), }, [112] = { - [sym_assignable_selector_part] = STATE(111), - [sym_arguments] = STATE(2967), - [sym_argument_part] = STATE(2558), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(220), - [sym_type_arguments] = STATE(3505), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(111), - [aux_sym_assignable_selector_part_repeat1] = STATE(2558), - [ts_builtin_sym_end] = ACTIONS(707), - [sym_identifier] = ACTIONS(709), - [anon_sym_POUND] = ACTIONS(707), - [sym_decimal_integer_literal] = ACTIONS(709), - [sym_hex_integer_literal] = ACTIONS(709), - [sym_octal_integer_literal] = ACTIONS(707), - [sym_binary_integer_literal] = ACTIONS(707), - [sym_decimal_floating_point_literal] = ACTIONS(707), - [sym_hex_floating_point_literal] = ACTIONS(709), - [anon_sym_true] = ACTIONS(709), - [anon_sym_false] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_SQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(707), - [anon_sym_r] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(711), - [anon_sym_COMMA] = ACTIONS(707), - [anon_sym_null] = ACTIONS(709), - [anon_sym_throw] = ACTIONS(709), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(707), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(707), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_QMARK_QMARK] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(707), - [sym_equality_operator] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(709), - [anon_sym_GT_EQ] = ACTIONS(707), - [anon_sym_LT_EQ] = ACTIONS(707), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_GT_GT_GT] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_SLASH] = ACTIONS(709), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_TILDE_SLASH] = ACTIONS(707), - [sym_increment_operator] = ACTIONS(707), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_await] = ACTIONS(709), - [anon_sym_is] = ACTIONS(709), - [anon_sym_as] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(720), - [anon_sym_QMARK_DOT] = ACTIONS(723), - [anon_sym_DOT_DOT] = ACTIONS(707), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(709), - [anon_sym_do] = ACTIONS(709), - [anon_sym_while] = ACTIONS(709), - [anon_sym_break] = ACTIONS(709), - [anon_sym_continue] = ACTIONS(709), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_return] = ACTIONS(709), - [anon_sym_try] = ACTIONS(709), - [anon_sym_if] = ACTIONS(709), - [anon_sym_for] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(707), - [anon_sym_enum] = ACTIONS(709), - [anon_sym_abstract] = ACTIONS(709), - [anon_sym_class] = ACTIONS(709), - [anon_sym_super] = ACTIONS(709), - [anon_sym_void] = ACTIONS(709), - [anon_sym_var] = ACTIONS(709), - [anon_sym_covariant] = ACTIONS(709), - [anon_sym_Function] = ACTIONS(709), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(709), - [anon_sym_new] = ACTIONS(709), - [anon_sym_const] = ACTIONS(709), - [anon_sym_final] = ACTIONS(709), - [anon_sym_external] = ACTIONS(709), - [anon_sym_this] = ACTIONS(709), + [sym_assignable_selector_part] = STATE(113), + [sym_arguments] = STATE(2989), + [sym_argument_part] = STATE(2653), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(339), + [sym_type_arguments] = STATE(3384), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(113), + [aux_sym_assignable_selector_part_repeat1] = STATE(2653), + [ts_builtin_sym_end] = ACTIONS(703), + [sym_identifier] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(703), + [sym_decimal_integer_literal] = ACTIONS(705), + [sym_hex_integer_literal] = ACTIONS(705), + [sym_octal_integer_literal] = ACTIONS(703), + [sym_binary_integer_literal] = ACTIONS(703), + [sym_decimal_floating_point_literal] = ACTIONS(703), + [sym_hex_floating_point_literal] = ACTIONS(705), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(703), + [anon_sym_r] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_PLUS_EQ] = ACTIONS(703), + [anon_sym_DASH_EQ] = ACTIONS(703), + [anon_sym_STAR_EQ] = ACTIONS(703), + [anon_sym_SLASH_EQ] = ACTIONS(703), + [anon_sym_AMP_EQ] = ACTIONS(703), + [anon_sym_PIPE_EQ] = ACTIONS(703), + [anon_sym_CARET_EQ] = ACTIONS(703), + [anon_sym_PERCENT_EQ] = ACTIONS(703), + [anon_sym_LT_LT_EQ] = ACTIONS(703), + [anon_sym_GT_GT_EQ] = ACTIONS(703), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(703), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(703), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_QMARK_QMARK] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [sym_equality_operator] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(703), + [anon_sym_LT_EQ] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(705), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_GT_GT_GT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_TILDE_SLASH] = ACTIONS(703), + [sym_increment_operator] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_await] = ACTIONS(705), + [anon_sym_is] = ACTIONS(705), + [anon_sym_as] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(716), + [anon_sym_QMARK_DOT] = ACTIONS(719), + [anon_sym_DOT_DOT] = ACTIONS(703), + [anon_sym_assert] = ACTIONS(705), + [anon_sym_switch] = ACTIONS(705), + [anon_sym_do] = ACTIONS(705), + [anon_sym_while] = ACTIONS(705), + [anon_sym_break] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(705), + [anon_sym_return] = ACTIONS(705), + [anon_sym_try] = ACTIONS(705), + [anon_sym_if] = ACTIONS(705), + [anon_sym_for] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(705), + [anon_sym_abstract] = ACTIONS(705), + [anon_sym_class] = ACTIONS(705), + [anon_sym_super] = ACTIONS(705), + [anon_sym_void] = ACTIONS(705), + [anon_sym_var] = ACTIONS(705), + [anon_sym_covariant] = ACTIONS(705), + [anon_sym_Function] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), + [anon_sym_new] = ACTIONS(705), + [anon_sym_const] = ACTIONS(705), + [anon_sym_final] = ACTIONS(705), + [anon_sym_external] = ACTIONS(705), + [anon_sym_this] = ACTIONS(705), [sym_comment] = ACTIONS(3), }, [113] = { - [sym_assignable_selector_part] = STATE(112), - [sym_arguments] = STATE(2967), - [sym_argument_part] = STATE(2558), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(220), - [sym_type_arguments] = STATE(3505), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(112), - [aux_sym_assignable_selector_part_repeat1] = STATE(2558), - [ts_builtin_sym_end] = ACTIONS(647), - [sym_identifier] = ACTIONS(645), - [anon_sym_POUND] = ACTIONS(647), - [sym_decimal_integer_literal] = ACTIONS(645), - [sym_hex_integer_literal] = ACTIONS(645), - [sym_octal_integer_literal] = ACTIONS(647), - [sym_binary_integer_literal] = ACTIONS(647), - [sym_decimal_floating_point_literal] = ACTIONS(647), - [sym_hex_floating_point_literal] = ACTIONS(645), - [anon_sym_true] = ACTIONS(645), - [anon_sym_false] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_SQUOTE] = ACTIONS(645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(647), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(647), - [anon_sym_r] = ACTIONS(645), + [sym_assignable_selector_part] = STATE(113), + [sym_arguments] = STATE(2989), + [sym_argument_part] = STATE(2653), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(339), + [sym_type_arguments] = STATE(3384), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(113), + [aux_sym_assignable_selector_part_repeat1] = STATE(2653), + [ts_builtin_sym_end] = ACTIONS(722), + [sym_identifier] = ACTIONS(724), + [anon_sym_POUND] = ACTIONS(722), + [sym_decimal_integer_literal] = ACTIONS(724), + [sym_hex_integer_literal] = ACTIONS(724), + [sym_octal_integer_literal] = ACTIONS(722), + [sym_binary_integer_literal] = ACTIONS(722), + [sym_decimal_floating_point_literal] = ACTIONS(722), + [sym_hex_floating_point_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(724), + [anon_sym_false] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(722), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(722), + [anon_sym_r] = ACTIONS(724), [anon_sym_LBRACK] = ACTIONS(726), - [anon_sym_COMMA] = ACTIONS(647), - [anon_sym_null] = ACTIONS(645), - [anon_sym_throw] = ACTIONS(645), - [anon_sym_EQ] = ACTIONS(645), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [anon_sym_DASH_EQ] = ACTIONS(647), - [anon_sym_STAR_EQ] = ACTIONS(647), - [anon_sym_SLASH_EQ] = ACTIONS(647), - [anon_sym_AMP_EQ] = ACTIONS(647), - [anon_sym_PIPE_EQ] = ACTIONS(647), - [anon_sym_CARET_EQ] = ACTIONS(647), - [anon_sym_PERCENT_EQ] = ACTIONS(647), - [anon_sym_LT_LT_EQ] = ACTIONS(647), - [anon_sym_GT_GT_EQ] = ACTIONS(647), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(647), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(647), + [anon_sym_COMMA] = ACTIONS(722), + [anon_sym_null] = ACTIONS(724), + [anon_sym_throw] = ACTIONS(724), + [anon_sym_EQ] = ACTIONS(724), + [anon_sym_PLUS_EQ] = ACTIONS(722), + [anon_sym_DASH_EQ] = ACTIONS(722), + [anon_sym_STAR_EQ] = ACTIONS(722), + [anon_sym_SLASH_EQ] = ACTIONS(722), + [anon_sym_AMP_EQ] = ACTIONS(722), + [anon_sym_PIPE_EQ] = ACTIONS(722), + [anon_sym_CARET_EQ] = ACTIONS(722), + [anon_sym_PERCENT_EQ] = ACTIONS(722), + [anon_sym_LT_LT_EQ] = ACTIONS(722), + [anon_sym_GT_GT_EQ] = ACTIONS(722), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(722), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(722), [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_QMARK_QMARK] = ACTIONS(645), - [anon_sym_QMARK] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [sym_equality_operator] = ACTIONS(647), + [anon_sym_QMARK_QMARK] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [sym_equality_operator] = ACTIONS(722), [anon_sym_LT] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_GT_GT_GT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(645), - [anon_sym_TILDE_SLASH] = ACTIONS(647), - [sym_increment_operator] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_await] = ACTIONS(645), - [anon_sym_is] = ACTIONS(645), - [anon_sym_as] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_EQ] = ACTIONS(722), + [anon_sym_LT_EQ] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(724), + [anon_sym_AMP] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_GT_GT_GT] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_PERCENT] = ACTIONS(724), + [anon_sym_TILDE_SLASH] = ACTIONS(722), + [sym_increment_operator] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_await] = ACTIONS(724), + [anon_sym_is] = ACTIONS(724), + [anon_sym_as] = ACTIONS(724), [anon_sym_DOT] = ACTIONS(735), [anon_sym_QMARK_DOT] = ACTIONS(738), - [anon_sym_DOT_DOT] = ACTIONS(647), - [anon_sym_assert] = ACTIONS(645), - [anon_sym_switch] = ACTIONS(645), - [anon_sym_do] = ACTIONS(645), - [anon_sym_while] = ACTIONS(645), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(645), - [anon_sym_return] = ACTIONS(645), - [anon_sym_try] = ACTIONS(645), - [anon_sym_if] = ACTIONS(645), - [anon_sym_for] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_class] = ACTIONS(645), - [anon_sym_super] = ACTIONS(645), - [anon_sym_void] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_covariant] = ACTIONS(645), - [anon_sym_Function] = ACTIONS(645), - [anon_sym_get] = ACTIONS(645), - [anon_sym_set] = ACTIONS(645), - [anon_sym_new] = ACTIONS(645), - [anon_sym_const] = ACTIONS(645), - [anon_sym_final] = ACTIONS(645), - [anon_sym_external] = ACTIONS(645), - [anon_sym_this] = ACTIONS(645), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_assert] = ACTIONS(724), + [anon_sym_switch] = ACTIONS(724), + [anon_sym_do] = ACTIONS(724), + [anon_sym_while] = ACTIONS(724), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_yield] = ACTIONS(724), + [anon_sym_return] = ACTIONS(724), + [anon_sym_try] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(722), + [anon_sym_enum] = ACTIONS(724), + [anon_sym_abstract] = ACTIONS(724), + [anon_sym_class] = ACTIONS(724), + [anon_sym_super] = ACTIONS(724), + [anon_sym_void] = ACTIONS(724), + [anon_sym_var] = ACTIONS(724), + [anon_sym_covariant] = ACTIONS(724), + [anon_sym_Function] = ACTIONS(724), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_new] = ACTIONS(724), + [anon_sym_const] = ACTIONS(724), + [anon_sym_final] = ACTIONS(724), + [anon_sym_external] = ACTIONS(724), + [anon_sym_this] = ACTIONS(724), [sym_comment] = ACTIONS(3), }, [114] = { [sym_selector] = STATE(115), - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(286), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(286), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(325), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(325), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), [aux_sym__postfix_expression_repeat1] = STATE(115), [ts_builtin_sym_end] = ACTIONS(741), [sym_identifier] = ACTIONS(743), @@ -25555,12 +25794,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [115] = { [sym_selector] = STATE(115), - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(286), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(286), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(325), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(325), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), [aux_sym__postfix_expression_repeat1] = STATE(115), [ts_builtin_sym_end] = ACTIONS(763), [sym_identifier] = ACTIONS(765), @@ -25658,12 +25897,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [116] = { [sym_selector] = STATE(115), - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(286), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(286), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(325), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(325), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), [aux_sym__postfix_expression_repeat1] = STATE(115), [ts_builtin_sym_end] = ACTIONS(785), [sym_identifier] = ACTIONS(787), @@ -25760,873 +25999,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [117] = { - [sym__assignment_operator] = STATE(522), - [sym__cascade_subsection] = STATE(139), - [sym__cascade_assignment_section] = STATE(823), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [aux_sym_cascade_section_repeat1] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(637), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(637), - [anon_sym_r] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_null] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_DASH_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_AMP_EQ] = ACTIONS(643), - [anon_sym_PIPE_EQ] = ACTIONS(643), - [anon_sym_CARET_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_LT_LT_EQ] = ACTIONS(643), - [anon_sym_GT_GT_EQ] = ACTIONS(643), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(643), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_QMARK_QMARK] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [sym_equality_operator] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_GT_GT_GT] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(639), - [anon_sym_TILDE_SLASH] = ACTIONS(637), - [sym_increment_operator] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_await] = ACTIONS(639), - [anon_sym_is] = ACTIONS(639), - [anon_sym_as] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_QMARK_DOT] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_super] = ACTIONS(639), - [anon_sym_void] = ACTIONS(639), - [anon_sym_var] = ACTIONS(639), - [anon_sym_covariant] = ACTIONS(639), - [anon_sym_Function] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_new] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_external] = ACTIONS(639), - [anon_sym_this] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - }, - [118] = { - [sym__assignment_operator] = STATE(430), - [sym__cascade_subsection] = STATE(139), - [sym__cascade_assignment_section] = STATE(214), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [aux_sym_cascade_section_repeat1] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(807), - [sym_identifier] = ACTIONS(809), - [anon_sym_POUND] = ACTIONS(807), - [sym_decimal_integer_literal] = ACTIONS(809), - [sym_hex_integer_literal] = ACTIONS(809), - [sym_octal_integer_literal] = ACTIONS(807), - [sym_binary_integer_literal] = ACTIONS(807), - [sym_decimal_floating_point_literal] = ACTIONS(807), - [sym_hex_floating_point_literal] = ACTIONS(809), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(807), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(807), - [anon_sym_r] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_null] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_STAR_EQ] = ACTIONS(807), - [anon_sym_SLASH_EQ] = ACTIONS(807), - [anon_sym_AMP_EQ] = ACTIONS(807), - [anon_sym_PIPE_EQ] = ACTIONS(807), - [anon_sym_CARET_EQ] = ACTIONS(807), - [anon_sym_PERCENT_EQ] = ACTIONS(807), - [anon_sym_LT_LT_EQ] = ACTIONS(807), - [anon_sym_GT_GT_EQ] = ACTIONS(807), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [sym_equality_operator] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(809), - [anon_sym_GT_GT_GT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_PERCENT] = ACTIONS(809), - [anon_sym_TILDE_SLASH] = ACTIONS(807), - [sym_increment_operator] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_await] = ACTIONS(809), - [anon_sym_is] = ACTIONS(809), - [anon_sym_as] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_QMARK_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_assert] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_try] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(807), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_class] = ACTIONS(809), - [anon_sym_super] = ACTIONS(809), - [anon_sym_void] = ACTIONS(809), - [anon_sym_var] = ACTIONS(809), - [anon_sym_covariant] = ACTIONS(809), - [anon_sym_Function] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_new] = ACTIONS(809), - [anon_sym_const] = ACTIONS(809), - [anon_sym_final] = ACTIONS(809), - [anon_sym_external] = ACTIONS(809), - [anon_sym_this] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - }, - [119] = { - [sym__assignment_operator] = STATE(522), - [sym__cascade_subsection] = STATE(139), - [sym__cascade_assignment_section] = STATE(770), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [aux_sym_cascade_section_repeat1] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(807), - [sym_identifier] = ACTIONS(809), - [anon_sym_POUND] = ACTIONS(807), - [sym_decimal_integer_literal] = ACTIONS(809), - [sym_hex_integer_literal] = ACTIONS(809), - [sym_octal_integer_literal] = ACTIONS(807), - [sym_binary_integer_literal] = ACTIONS(807), - [sym_decimal_floating_point_literal] = ACTIONS(807), - [sym_hex_floating_point_literal] = ACTIONS(809), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(807), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(807), - [anon_sym_r] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_null] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_DASH_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_AMP_EQ] = ACTIONS(643), - [anon_sym_PIPE_EQ] = ACTIONS(643), - [anon_sym_CARET_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_LT_LT_EQ] = ACTIONS(643), - [anon_sym_GT_GT_EQ] = ACTIONS(643), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(643), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [sym_equality_operator] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(809), - [anon_sym_GT_GT_GT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_PERCENT] = ACTIONS(809), - [anon_sym_TILDE_SLASH] = ACTIONS(807), - [sym_increment_operator] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_await] = ACTIONS(809), - [anon_sym_is] = ACTIONS(809), - [anon_sym_as] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_QMARK_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_assert] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_try] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(807), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_class] = ACTIONS(809), - [anon_sym_super] = ACTIONS(809), - [anon_sym_void] = ACTIONS(809), - [anon_sym_var] = ACTIONS(809), - [anon_sym_covariant] = ACTIONS(809), - [anon_sym_Function] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_new] = ACTIONS(809), - [anon_sym_const] = ACTIONS(809), - [anon_sym_final] = ACTIONS(809), - [anon_sym_external] = ACTIONS(809), - [anon_sym_this] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - }, - [120] = { - [sym__assignment_operator] = STATE(430), - [sym__cascade_subsection] = STATE(139), - [sym__cascade_assignment_section] = STATE(299), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [aux_sym_cascade_section_repeat1] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(637), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(637), - [anon_sym_r] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_null] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_PLUS_EQ] = ACTIONS(637), - [anon_sym_DASH_EQ] = ACTIONS(637), - [anon_sym_STAR_EQ] = ACTIONS(637), - [anon_sym_SLASH_EQ] = ACTIONS(637), - [anon_sym_AMP_EQ] = ACTIONS(637), - [anon_sym_PIPE_EQ] = ACTIONS(637), - [anon_sym_CARET_EQ] = ACTIONS(637), - [anon_sym_PERCENT_EQ] = ACTIONS(637), - [anon_sym_LT_LT_EQ] = ACTIONS(637), - [anon_sym_GT_GT_EQ] = ACTIONS(637), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(637), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_QMARK_QMARK] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [sym_equality_operator] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_GT_GT_GT] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(639), - [anon_sym_TILDE_SLASH] = ACTIONS(637), - [sym_increment_operator] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_await] = ACTIONS(639), - [anon_sym_is] = ACTIONS(639), - [anon_sym_as] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_QMARK_DOT] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_super] = ACTIONS(639), - [anon_sym_void] = ACTIONS(639), - [anon_sym_var] = ACTIONS(639), - [anon_sym_covariant] = ACTIONS(639), - [anon_sym_Function] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_new] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_external] = ACTIONS(639), - [anon_sym_this] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - }, - [121] = { - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(124), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(811), - [sym_identifier] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(811), - [sym_decimal_integer_literal] = ACTIONS(813), - [sym_hex_integer_literal] = ACTIONS(813), - [sym_octal_integer_literal] = ACTIONS(811), - [sym_binary_integer_literal] = ACTIONS(811), - [sym_decimal_floating_point_literal] = ACTIONS(811), - [sym_hex_floating_point_literal] = ACTIONS(813), - [anon_sym_true] = ACTIONS(813), - [anon_sym_false] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(813), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(811), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(811), - [anon_sym_r] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_null] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_PLUS_EQ] = ACTIONS(811), - [anon_sym_DASH_EQ] = ACTIONS(811), - [anon_sym_STAR_EQ] = ACTIONS(811), - [anon_sym_SLASH_EQ] = ACTIONS(811), - [anon_sym_AMP_EQ] = ACTIONS(811), - [anon_sym_PIPE_EQ] = ACTIONS(811), - [anon_sym_CARET_EQ] = ACTIONS(811), - [anon_sym_PERCENT_EQ] = ACTIONS(811), - [anon_sym_LT_LT_EQ] = ACTIONS(811), - [anon_sym_GT_GT_EQ] = ACTIONS(811), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(811), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_QMARK_QMARK] = ACTIONS(813), - [anon_sym_QMARK] = ACTIONS(813), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [sym_equality_operator] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_GT_GT_GT] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_TILDE_SLASH] = ACTIONS(811), - [sym_increment_operator] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_await] = ACTIONS(813), - [anon_sym_is] = ACTIONS(813), - [anon_sym_as] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_QMARK_DOT] = ACTIONS(811), - [anon_sym_DOT_DOT] = ACTIONS(811), - [anon_sym_assert] = ACTIONS(813), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_do] = ACTIONS(813), - [anon_sym_while] = ACTIONS(813), - [anon_sym_break] = ACTIONS(813), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_yield] = ACTIONS(813), - [anon_sym_return] = ACTIONS(813), - [anon_sym_try] = ACTIONS(813), - [anon_sym_if] = ACTIONS(813), - [anon_sym_for] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_enum] = ACTIONS(813), - [anon_sym_abstract] = ACTIONS(813), - [anon_sym_class] = ACTIONS(813), - [anon_sym_super] = ACTIONS(813), - [anon_sym_void] = ACTIONS(813), - [anon_sym_var] = ACTIONS(813), - [anon_sym_covariant] = ACTIONS(813), - [anon_sym_Function] = ACTIONS(813), - [anon_sym_get] = ACTIONS(813), - [anon_sym_set] = ACTIONS(813), - [anon_sym_new] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_final] = ACTIONS(813), - [anon_sym_external] = ACTIONS(813), - [anon_sym_this] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - }, - [122] = { - [sym_relational_operator] = STATE(586), - [sym_type_test] = STATE(2247), - [sym_is_operator] = STATE(2619), - [sym_type_cast] = STATE(2247), - [sym_as_operator] = STATE(2593), - [ts_builtin_sym_end] = ACTIONS(821), - [sym_identifier] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(821), - [sym_decimal_integer_literal] = ACTIONS(823), - [sym_hex_integer_literal] = ACTIONS(823), - [sym_octal_integer_literal] = ACTIONS(821), - [sym_binary_integer_literal] = ACTIONS(821), - [sym_decimal_floating_point_literal] = ACTIONS(821), - [sym_hex_floating_point_literal] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(821), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(821), - [anon_sym_r] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_null] = ACTIONS(823), - [anon_sym_throw] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_PLUS_EQ] = ACTIONS(821), - [anon_sym_DASH_EQ] = ACTIONS(821), - [anon_sym_STAR_EQ] = ACTIONS(821), - [anon_sym_SLASH_EQ] = ACTIONS(821), - [anon_sym_AMP_EQ] = ACTIONS(821), - [anon_sym_PIPE_EQ] = ACTIONS(821), - [anon_sym_CARET_EQ] = ACTIONS(821), - [anon_sym_PERCENT_EQ] = ACTIONS(821), - [anon_sym_LT_LT_EQ] = ACTIONS(821), - [anon_sym_GT_GT_EQ] = ACTIONS(821), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(821), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_QMARK_QMARK] = ACTIONS(823), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [sym_equality_operator] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(828), - [anon_sym_LT_EQ] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_LT] = ACTIONS(823), - [anon_sym_GT_GT] = ACTIONS(823), - [anon_sym_GT_GT_GT] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_TILDE_SLASH] = ACTIONS(821), - [sym_increment_operator] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [anon_sym_await] = ACTIONS(823), - [anon_sym_is] = ACTIONS(831), - [anon_sym_as] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_QMARK_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_assert] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_yield] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_abstract] = ACTIONS(823), - [anon_sym_class] = ACTIONS(823), - [anon_sym_super] = ACTIONS(823), - [anon_sym_void] = ACTIONS(823), - [anon_sym_var] = ACTIONS(823), - [anon_sym_covariant] = ACTIONS(823), - [anon_sym_Function] = ACTIONS(823), - [anon_sym_get] = ACTIONS(823), - [anon_sym_set] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_final] = ACTIONS(823), - [anon_sym_external] = ACTIONS(823), - [anon_sym_this] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - }, - [123] = { - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(123), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(123), - [ts_builtin_sym_end] = ACTIONS(837), - [sym_identifier] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(837), - [sym_decimal_integer_literal] = ACTIONS(839), - [sym_hex_integer_literal] = ACTIONS(839), - [sym_octal_integer_literal] = ACTIONS(837), - [sym_binary_integer_literal] = ACTIONS(837), - [sym_decimal_floating_point_literal] = ACTIONS(837), - [sym_hex_floating_point_literal] = ACTIONS(839), - [anon_sym_true] = ACTIONS(839), - [anon_sym_false] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(837), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(837), - [anon_sym_r] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_COMMA] = ACTIONS(837), - [anon_sym_null] = ACTIONS(839), - [anon_sym_throw] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_PLUS_EQ] = ACTIONS(837), - [anon_sym_DASH_EQ] = ACTIONS(837), - [anon_sym_STAR_EQ] = ACTIONS(837), - [anon_sym_SLASH_EQ] = ACTIONS(837), - [anon_sym_AMP_EQ] = ACTIONS(837), - [anon_sym_PIPE_EQ] = ACTIONS(837), - [anon_sym_CARET_EQ] = ACTIONS(837), - [anon_sym_PERCENT_EQ] = ACTIONS(837), - [anon_sym_LT_LT_EQ] = ACTIONS(837), - [anon_sym_GT_GT_EQ] = ACTIONS(837), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(837), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_QMARK_QMARK] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_PIPE_PIPE] = ACTIONS(837), - [anon_sym_AMP_AMP] = ACTIONS(837), - [sym_equality_operator] = ACTIONS(837), - [anon_sym_LT] = ACTIONS(844), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_CARET] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(839), - [anon_sym_LT_LT] = ACTIONS(839), - [anon_sym_GT_GT] = ACTIONS(839), - [anon_sym_GT_GT_GT] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_TILDE_SLASH] = ACTIONS(837), - [sym_increment_operator] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_await] = ACTIONS(839), - [anon_sym_is] = ACTIONS(839), - [anon_sym_as] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_QMARK_DOT] = ACTIONS(837), - [anon_sym_DOT_DOT] = ACTIONS(837), - [anon_sym_assert] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(839), - [anon_sym_do] = ACTIONS(839), - [anon_sym_while] = ACTIONS(839), - [anon_sym_break] = ACTIONS(839), - [anon_sym_continue] = ACTIONS(839), - [anon_sym_yield] = ACTIONS(839), - [anon_sym_return] = ACTIONS(839), - [anon_sym_try] = ACTIONS(839), - [anon_sym_if] = ACTIONS(839), - [anon_sym_for] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(837), - [anon_sym_enum] = ACTIONS(839), - [anon_sym_abstract] = ACTIONS(839), - [anon_sym_class] = ACTIONS(839), - [anon_sym_super] = ACTIONS(839), - [anon_sym_void] = ACTIONS(839), - [anon_sym_var] = ACTIONS(839), - [anon_sym_covariant] = ACTIONS(839), - [anon_sym_Function] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_new] = ACTIONS(839), - [anon_sym_const] = ACTIONS(839), - [anon_sym_final] = ACTIONS(839), - [anon_sym_external] = ACTIONS(839), - [anon_sym_this] = ACTIONS(839), - [sym_comment] = ACTIONS(3), - }, - [124] = { - [sym_arguments] = STATE(242), - [sym_argument_part] = STATE(123), - [sym_type_arguments] = STATE(3364), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(123), - [ts_builtin_sym_end] = ACTIONS(847), - [sym_identifier] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(847), - [sym_decimal_integer_literal] = ACTIONS(849), - [sym_hex_integer_literal] = ACTIONS(849), - [sym_octal_integer_literal] = ACTIONS(847), - [sym_binary_integer_literal] = ACTIONS(847), - [sym_decimal_floating_point_literal] = ACTIONS(847), - [sym_hex_floating_point_literal] = ACTIONS(849), - [anon_sym_true] = ACTIONS(849), - [anon_sym_false] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(847), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(847), - [anon_sym_r] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_null] = ACTIONS(849), - [anon_sym_throw] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(849), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(847), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_QMARK_QMARK] = ACTIONS(849), - [anon_sym_QMARK] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(847), - [anon_sym_AMP_AMP] = ACTIONS(847), - [sym_equality_operator] = ACTIONS(847), - [anon_sym_LT] = ACTIONS(854), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(847), - [anon_sym_LT_EQ] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_LT_LT] = ACTIONS(849), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_GT_GT_GT] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_TILDE_SLASH] = ACTIONS(847), - [sym_increment_operator] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_await] = ACTIONS(849), - [anon_sym_is] = ACTIONS(849), - [anon_sym_as] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(849), - [anon_sym_QMARK_DOT] = ACTIONS(847), - [anon_sym_DOT_DOT] = ACTIONS(847), - [anon_sym_assert] = ACTIONS(849), - [anon_sym_switch] = ACTIONS(849), - [anon_sym_do] = ACTIONS(849), - [anon_sym_while] = ACTIONS(849), - [anon_sym_break] = ACTIONS(849), - [anon_sym_continue] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(849), - [anon_sym_return] = ACTIONS(849), - [anon_sym_try] = ACTIONS(849), - [anon_sym_if] = ACTIONS(849), - [anon_sym_for] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(849), - [anon_sym_class] = ACTIONS(849), - [anon_sym_super] = ACTIONS(849), - [anon_sym_void] = ACTIONS(849), - [anon_sym_var] = ACTIONS(849), - [anon_sym_covariant] = ACTIONS(849), - [anon_sym_Function] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_new] = ACTIONS(849), - [anon_sym_const] = ACTIONS(849), - [anon_sym_final] = ACTIONS(849), - [anon_sym_external] = ACTIONS(849), - [anon_sym_this] = ACTIONS(849), - [sym_comment] = ACTIONS(3), - }, - [125] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -26637,7 +26074,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(809), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -26658,74 +26095,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [126] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3106), - [sym__element] = STATE(3106), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3106), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3106), - [sym_for_element] = STATE(3106), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [118] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -26736,7 +26175,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(813), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -26757,74 +26196,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [127] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3115), - [sym__element] = STATE(3115), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3115), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3115), - [sym_for_element] = STATE(3115), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [119] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3236), + [sym__element] = STATE(3236), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3236), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3236), + [sym_for_element] = STATE(3236), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -26835,13 +26276,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(504), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(865), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -26856,74 +26297,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [128] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [120] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -26940,7 +26383,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_RBRACK] = ACTIONS(815), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -26955,74 +26398,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [129] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [121] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27033,7 +26478,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(817), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -27054,74 +26499,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [130] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [122] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27138,7 +26585,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(871), + [anon_sym_RBRACK] = ACTIONS(819), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -27153,74 +26600,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [123] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3296), + [sym__element] = STATE(3296), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3296), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3296), + [sym_for_element] = STATE(3296), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27231,7 +26680,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(821), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -27252,74 +26701,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [132] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [124] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3287), + [sym__element] = STATE(3287), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3287), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3287), + [sym_for_element] = STATE(3287), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27330,13 +26781,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(875), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(823), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -27351,74 +26802,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [133] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [125] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3281), + [sym__element] = STATE(3281), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3281), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3281), + [sym_for_element] = STATE(3281), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27429,13 +26882,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(825), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(877), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -27450,74 +26903,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [134] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [126] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27528,7 +26983,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(827), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -27549,74 +27004,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [127] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27633,7 +27090,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(829), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -27648,74 +27105,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [136] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3306), - [sym__element] = STATE(3306), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3306), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3306), - [sym_for_element] = STATE(3306), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [128] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3282), + [sym__element] = STATE(3282), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3282), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3282), + [sym_for_element] = STATE(3282), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27726,13 +27185,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(883), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(831), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -27747,74 +27206,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [137] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [129] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27825,13 +27286,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(885), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(833), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -27846,74 +27307,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [138] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [130] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -27924,13 +27387,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(887), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(835), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -27945,173 +27408,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym__cascade_subsection] = STATE(139), - [sym_unconditional_assignable_selector] = STATE(240), - [sym_assignable_selector] = STATE(121), - [aux_sym_cascade_section_repeat1] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(889), - [sym_identifier] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(889), - [sym_decimal_integer_literal] = ACTIONS(891), - [sym_hex_integer_literal] = ACTIONS(891), - [sym_octal_integer_literal] = ACTIONS(889), - [sym_binary_integer_literal] = ACTIONS(889), - [sym_decimal_floating_point_literal] = ACTIONS(889), - [sym_hex_floating_point_literal] = ACTIONS(891), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(891), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(889), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(889), - [anon_sym_r] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_null] = ACTIONS(891), - [anon_sym_throw] = ACTIONS(891), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_PLUS_EQ] = ACTIONS(889), - [anon_sym_DASH_EQ] = ACTIONS(889), - [anon_sym_STAR_EQ] = ACTIONS(889), - [anon_sym_SLASH_EQ] = ACTIONS(889), - [anon_sym_AMP_EQ] = ACTIONS(889), - [anon_sym_PIPE_EQ] = ACTIONS(889), - [anon_sym_CARET_EQ] = ACTIONS(889), - [anon_sym_PERCENT_EQ] = ACTIONS(889), - [anon_sym_LT_LT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(889), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_QMARK_QMARK] = ACTIONS(891), - [anon_sym_QMARK] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [sym_equality_operator] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_CARET] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_GT_GT_GT] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(891), - [anon_sym_TILDE_SLASH] = ACTIONS(889), - [sym_increment_operator] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(891), - [anon_sym_await] = ACTIONS(891), - [anon_sym_is] = ACTIONS(891), - [anon_sym_as] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_QMARK_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT] = ACTIONS(889), - [anon_sym_assert] = ACTIONS(891), - [anon_sym_switch] = ACTIONS(891), - [anon_sym_do] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_yield] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_try] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_AT] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_abstract] = ACTIONS(891), - [anon_sym_class] = ACTIONS(891), - [anon_sym_super] = ACTIONS(891), - [anon_sym_void] = ACTIONS(891), - [anon_sym_var] = ACTIONS(891), - [anon_sym_covariant] = ACTIONS(891), - [anon_sym_Function] = ACTIONS(891), - [anon_sym_get] = ACTIONS(891), - [anon_sym_set] = ACTIONS(891), - [anon_sym_new] = ACTIONS(891), - [anon_sym_const] = ACTIONS(891), - [anon_sym_final] = ACTIONS(891), - [anon_sym_external] = ACTIONS(891), - [anon_sym_this] = ACTIONS(891), - [sym_comment] = ACTIONS(3), - }, - [140] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3114), - [sym__element] = STATE(3114), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3114), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3114), - [sym_for_element] = STATE(3114), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [131] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28128,7 +27494,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(837), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -28143,74 +27509,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [132] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28221,13 +27589,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(839), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(902), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -28242,74 +27610,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [142] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [133] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3301), + [sym__element] = STATE(3301), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3301), + [sym_for_element] = STATE(3301), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28320,13 +27690,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(904), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(841), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -28341,74 +27711,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [143] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [134] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28419,13 +27791,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(906), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(843), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -28440,74 +27812,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [135] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3315), + [sym__element] = STATE(3315), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3315), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3315), + [sym_for_element] = STATE(3315), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28518,13 +27892,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(845), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(908), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -28539,74 +27913,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [145] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [136] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28617,7 +27993,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(847), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -28638,74 +28014,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [146] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [137] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3206), + [sym__element] = STATE(3206), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3206), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3206), + [sym_for_element] = STATE(3206), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28716,13 +28094,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(849), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(912), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -28737,74 +28115,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [147] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3168), - [sym__element] = STATE(3168), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3168), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3168), - [sym_for_element] = STATE(3168), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [138] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3205), + [sym__element] = STATE(3205), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3205), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3205), + [sym_for_element] = STATE(3205), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28815,13 +28195,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(504), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(851), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -28836,74 +28216,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [148] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3312), - [sym__element] = STATE(3312), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3312), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3312), - [sym_for_element] = STATE(3312), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [139] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -28914,13 +28296,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(853), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(914), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -28935,74 +28317,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [149] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [140] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29013,13 +28397,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(916), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(855), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -29034,74 +28418,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [150] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3149), - [sym__element] = STATE(3149), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3149), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3149), - [sym_for_element] = STATE(3149), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [141] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29112,7 +28498,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(857), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -29133,74 +28519,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [151] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3274), - [sym__element] = STATE(3274), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3274), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3274), - [sym_for_element] = STATE(3274), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [142] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29217,7 +28605,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(920), + [anon_sym_RBRACK] = ACTIONS(859), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -29232,74 +28620,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [152] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3299), - [sym__element] = STATE(3299), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3299), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3299), - [sym_for_element] = STATE(3299), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [143] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29310,7 +28700,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(861), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -29331,74 +28721,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [153] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [144] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29409,13 +28801,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(924), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(863), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -29430,74 +28822,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [154] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [145] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29514,7 +28908,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(926), + [anon_sym_RBRACK] = ACTIONS(865), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -29529,74 +28923,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [155] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3200), - [sym__element] = STATE(3200), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3200), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3200), - [sym_for_element] = STATE(3200), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [146] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3231), + [sym__element] = STATE(3231), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3231), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3231), + [sym_for_element] = STATE(3231), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29613,7 +29009,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(928), + [anon_sym_RBRACK] = ACTIONS(867), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -29628,74 +29024,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [156] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [147] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3234), + [sym__element] = STATE(3234), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3234), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3234), + [sym_for_element] = STATE(3234), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29706,13 +29104,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(869), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(930), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -29727,74 +29125,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [157] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [148] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3148), + [sym__element] = STATE(3148), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3148), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3148), + [sym_for_element] = STATE(3148), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29805,7 +29205,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(871), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -29826,74 +29226,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [149] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3142), + [sym__element] = STATE(3142), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3142), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3142), + [sym_for_element] = STATE(3142), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -29910,7 +29312,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(934), + [anon_sym_RBRACK] = ACTIONS(873), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -29925,74 +29327,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [159] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [150] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3242), + [sym__element] = STATE(3242), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3242), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3242), + [sym_for_element] = STATE(3242), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30009,7 +29413,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(936), + [anon_sym_RBRACK] = ACTIONS(875), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -30024,74 +29428,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [160] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3189), - [sym__element] = STATE(3189), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3189), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3189), - [sym_for_element] = STATE(3189), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [151] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3144), + [sym__element] = STATE(3144), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3144), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3144), + [sym_for_element] = STATE(3144), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30102,7 +29508,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(877), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -30123,74 +29529,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [161] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3295), - [sym__element] = STATE(3295), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3295), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3295), - [sym_for_element] = STATE(3295), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [152] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30201,13 +29609,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(879), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(940), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -30222,74 +29630,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [162] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3308), - [sym__element] = STATE(3308), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3308), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3308), - [sym_for_element] = STATE(3308), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [153] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30300,7 +29710,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(881), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -30321,74 +29731,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [163] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [154] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3361), + [sym__element] = STATE(3361), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3361), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3361), + [sym_for_element] = STATE(3361), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30399,13 +29811,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(883), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(944), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -30420,74 +29832,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [164] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [155] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30504,7 +29918,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(946), + [anon_sym_RBRACK] = ACTIONS(885), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -30519,74 +29933,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3132), - [sym__element] = STATE(3132), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3132), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3132), - [sym_for_element] = STATE(3132), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [156] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3360), + [sym__element] = STATE(3360), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3360), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3360), + [sym_for_element] = STATE(3360), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30603,7 +30019,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(948), + [anon_sym_RBRACK] = ACTIONS(887), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -30618,74 +30034,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [166] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [157] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30696,13 +30114,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(889), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(950), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -30717,74 +30135,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [167] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3249), - [sym__element] = STATE(3249), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3249), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3249), - [sym_for_element] = STATE(3249), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [158] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30801,7 +30221,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(952), + [anon_sym_RBRACK] = ACTIONS(891), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -30816,74 +30236,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [168] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [159] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30894,7 +30316,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(893), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -30915,74 +30337,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [169] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [160] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -30993,7 +30417,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(895), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -31014,74 +30438,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [170] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [161] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -31098,7 +30524,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(897), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -31113,74 +30539,884 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [171] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [162] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [163] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(901), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [164] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3165), + [sym__element] = STATE(3165), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3165), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3165), + [sym_for_element] = STATE(3165), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [165] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(905), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [166] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [168] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3286), + [sym__element] = STATE(3286), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3286), + [sym_for_element] = STATE(3286), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(911), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [169] = { + [sym__assignment_operator] = STATE(458), + [sym__cascade_subsection] = STATE(210), + [sym__cascade_assignment_section] = STATE(833), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [aux_sym_cascade_section_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(913), + [sym_decimal_integer_literal] = ACTIONS(915), + [sym_hex_integer_literal] = ACTIONS(915), + [sym_octal_integer_literal] = ACTIONS(913), + [sym_binary_integer_literal] = ACTIONS(913), + [sym_decimal_floating_point_literal] = ACTIONS(913), + [sym_hex_floating_point_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(913), + [anon_sym_r] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_null] = ACTIONS(915), + [anon_sym_throw] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(618), + [anon_sym_DASH_EQ] = ACTIONS(618), + [anon_sym_STAR_EQ] = ACTIONS(618), + [anon_sym_SLASH_EQ] = ACTIONS(618), + [anon_sym_AMP_EQ] = ACTIONS(618), + [anon_sym_PIPE_EQ] = ACTIONS(618), + [anon_sym_CARET_EQ] = ACTIONS(618), + [anon_sym_PERCENT_EQ] = ACTIONS(618), + [anon_sym_LT_LT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(618), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_QMARK_QMARK] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_AMP_AMP] = ACTIONS(913), + [sym_equality_operator] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_GT_GT_GT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_TILDE_SLASH] = ACTIONS(913), + [sym_increment_operator] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_is] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_assert] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_try] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_abstract] = ACTIONS(915), + [anon_sym_class] = ACTIONS(915), + [anon_sym_super] = ACTIONS(915), + [anon_sym_void] = ACTIONS(915), + [anon_sym_var] = ACTIONS(915), + [anon_sym_covariant] = ACTIONS(915), + [anon_sym_Function] = ACTIONS(915), + [anon_sym_get] = ACTIONS(915), + [anon_sym_set] = ACTIONS(915), + [anon_sym_new] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_final] = ACTIONS(915), + [anon_sym_external] = ACTIONS(915), + [anon_sym_this] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3291), + [sym__element] = STATE(3291), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3291), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3291), + [sym_for_element] = STATE(3291), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -31191,13 +31427,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(917), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_RBRACK] = ACTIONS(960), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -31212,74 +31448,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, + [171] = { + [sym__assignment_operator] = STATE(458), + [sym__cascade_subsection] = STATE(210), + [sym__cascade_assignment_section] = STATE(820), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [aux_sym_cascade_section_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(684), + [anon_sym_r] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_null] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(618), + [anon_sym_DASH_EQ] = ACTIONS(618), + [anon_sym_STAR_EQ] = ACTIONS(618), + [anon_sym_SLASH_EQ] = ACTIONS(618), + [anon_sym_AMP_EQ] = ACTIONS(618), + [anon_sym_PIPE_EQ] = ACTIONS(618), + [anon_sym_CARET_EQ] = ACTIONS(618), + [anon_sym_PERCENT_EQ] = ACTIONS(618), + [anon_sym_LT_LT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_EQ] = ACTIONS(618), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(618), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_QMARK_QMARK] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_AMP_AMP] = ACTIONS(684), + [sym_equality_operator] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_GT_GT_GT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_TILDE_SLASH] = ACTIONS(684), + [sym_increment_operator] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_is] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(684), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_super] = ACTIONS(686), + [anon_sym_void] = ACTIONS(686), + [anon_sym_var] = ACTIONS(686), + [anon_sym_covariant] = ACTIONS(686), + [anon_sym_Function] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [anon_sym_new] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_external] = ACTIONS(686), + [anon_sym_this] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + }, [172] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3157), + [sym__element] = STATE(3157), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3157), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3157), + [sym_for_element] = STATE(3157), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -31290,7 +31629,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(919), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -31311,74 +31650,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [173] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3273), - [sym__element] = STATE(3273), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3273), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3273), - [sym_for_element] = STATE(3273), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3370), + [sym__element] = STATE(3370), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3370), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3370), + [sym_for_element] = STATE(3370), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -31389,13 +31730,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(921), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -31410,74 +31751,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [174] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3251), - [sym__element] = STATE(3251), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3251), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3251), - [sym_for_element] = STATE(3251), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3365), + [sym__element] = STATE(3365), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3365), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3365), + [sym_for_element] = STATE(3365), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -31488,6 +31831,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(923), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -31508,74 +31852,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [175] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3056), - [sym__element] = STATE(3056), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3056), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3056), - [sym_for_element] = STATE(3056), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3215), + [sym__element] = STATE(3215), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3215), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3215), + [sym_for_element] = STATE(3215), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -31586,6 +31932,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(925), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -31606,172 +31953,278 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [176] = { - [aux_sym__function_type_tails] = STATE(180), - [sym__function_type_tail] = STATE(180), - [sym__function_builtin_identifier] = STATE(3005), - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(966), - [sym_decimal_integer_literal] = ACTIONS(968), - [sym_hex_integer_literal] = ACTIONS(968), - [sym_octal_integer_literal] = ACTIONS(966), - [sym_binary_integer_literal] = ACTIONS(966), - [sym_decimal_floating_point_literal] = ACTIONS(966), - [sym_hex_floating_point_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(966), - [anon_sym_r] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_null] = ACTIONS(968), - [anon_sym_throw] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_PLUS_EQ] = ACTIONS(966), - [anon_sym_DASH_EQ] = ACTIONS(966), - [anon_sym_STAR_EQ] = ACTIONS(966), - [anon_sym_SLASH_EQ] = ACTIONS(966), - [anon_sym_AMP_EQ] = ACTIONS(966), - [anon_sym_PIPE_EQ] = ACTIONS(966), - [anon_sym_CARET_EQ] = ACTIONS(966), - [anon_sym_PERCENT_EQ] = ACTIONS(966), - [anon_sym_LT_LT_EQ] = ACTIONS(966), - [anon_sym_GT_GT_EQ] = ACTIONS(966), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(966), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_QMARK_QMARK] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(966), - [sym_equality_operator] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(966), - [anon_sym_LT_EQ] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_CARET] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(968), - [anon_sym_GT_GT] = ACTIONS(968), - [anon_sym_GT_GT_GT] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_TILDE_SLASH] = ACTIONS(966), - [sym_increment_operator] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_await] = ACTIONS(968), - [anon_sym_is] = ACTIONS(968), - [anon_sym_as] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_assert] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_abstract] = ACTIONS(968), - [anon_sym_class] = ACTIONS(968), - [anon_sym_super] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_var] = ACTIONS(968), - [anon_sym_covariant] = ACTIONS(968), - [anon_sym_Function] = ACTIONS(970), - [anon_sym_get] = ACTIONS(968), - [anon_sym_set] = ACTIONS(968), - [anon_sym_new] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_final] = ACTIONS(968), - [anon_sym_external] = ACTIONS(968), - [anon_sym_this] = ACTIONS(968), + [sym__assignment_operator] = STATE(447), + [sym__cascade_subsection] = STATE(210), + [sym__cascade_assignment_section] = STATE(334), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [aux_sym_cascade_section_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(913), + [sym_decimal_integer_literal] = ACTIONS(915), + [sym_hex_integer_literal] = ACTIONS(915), + [sym_octal_integer_literal] = ACTIONS(913), + [sym_binary_integer_literal] = ACTIONS(913), + [sym_decimal_floating_point_literal] = ACTIONS(913), + [sym_hex_floating_point_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(913), + [anon_sym_r] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_null] = ACTIONS(915), + [anon_sym_throw] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(913), + [anon_sym_DASH_EQ] = ACTIONS(913), + [anon_sym_STAR_EQ] = ACTIONS(913), + [anon_sym_SLASH_EQ] = ACTIONS(913), + [anon_sym_AMP_EQ] = ACTIONS(913), + [anon_sym_PIPE_EQ] = ACTIONS(913), + [anon_sym_CARET_EQ] = ACTIONS(913), + [anon_sym_PERCENT_EQ] = ACTIONS(913), + [anon_sym_LT_LT_EQ] = ACTIONS(913), + [anon_sym_GT_GT_EQ] = ACTIONS(913), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(913), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_QMARK_QMARK] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_AMP_AMP] = ACTIONS(913), + [sym_equality_operator] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_GT_GT_GT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_TILDE_SLASH] = ACTIONS(913), + [sym_increment_operator] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_is] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_assert] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_try] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_abstract] = ACTIONS(915), + [anon_sym_class] = ACTIONS(915), + [anon_sym_super] = ACTIONS(915), + [anon_sym_void] = ACTIONS(915), + [anon_sym_var] = ACTIONS(915), + [anon_sym_covariant] = ACTIONS(915), + [anon_sym_Function] = ACTIONS(915), + [anon_sym_get] = ACTIONS(915), + [anon_sym_set] = ACTIONS(915), + [anon_sym_new] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_final] = ACTIONS(915), + [anon_sym_external] = ACTIONS(915), + [anon_sym_this] = ACTIONS(915), [sym_comment] = ACTIONS(3), }, [177] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3050), - [sym__element] = STATE(3050), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3050), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3050), - [sym_for_element] = STATE(3050), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [sym__assignment_operator] = STATE(447), + [sym__cascade_subsection] = STATE(210), + [sym__cascade_assignment_section] = STATE(345), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [aux_sym_cascade_section_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(684), + [anon_sym_r] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_null] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(684), + [anon_sym_DASH_EQ] = ACTIONS(684), + [anon_sym_STAR_EQ] = ACTIONS(684), + [anon_sym_SLASH_EQ] = ACTIONS(684), + [anon_sym_AMP_EQ] = ACTIONS(684), + [anon_sym_PIPE_EQ] = ACTIONS(684), + [anon_sym_CARET_EQ] = ACTIONS(684), + [anon_sym_PERCENT_EQ] = ACTIONS(684), + [anon_sym_LT_LT_EQ] = ACTIONS(684), + [anon_sym_GT_GT_EQ] = ACTIONS(684), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(684), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_QMARK_QMARK] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_AMP_AMP] = ACTIONS(684), + [sym_equality_operator] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_GT_GT_GT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_TILDE_SLASH] = ACTIONS(684), + [sym_increment_operator] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_is] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(684), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_super] = ACTIONS(686), + [anon_sym_void] = ACTIONS(686), + [anon_sym_var] = ACTIONS(686), + [anon_sym_covariant] = ACTIONS(686), + [anon_sym_Function] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [anon_sym_new] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_external] = ACTIONS(686), + [anon_sym_this] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + }, + [178] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -31782,6 +32235,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(927), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -31802,172 +32256,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [178] = { - [aux_sym__function_type_tails] = STATE(180), - [sym__function_type_tail] = STATE(180), - [sym__function_builtin_identifier] = STATE(3005), - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(972), - [sym_decimal_integer_literal] = ACTIONS(974), - [sym_hex_integer_literal] = ACTIONS(974), - [sym_octal_integer_literal] = ACTIONS(972), - [sym_binary_integer_literal] = ACTIONS(972), - [sym_decimal_floating_point_literal] = ACTIONS(972), - [sym_hex_floating_point_literal] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(972), - [anon_sym_r] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_null] = ACTIONS(974), - [anon_sym_throw] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_AMP_EQ] = ACTIONS(972), - [anon_sym_PIPE_EQ] = ACTIONS(972), - [anon_sym_CARET_EQ] = ACTIONS(972), - [anon_sym_PERCENT_EQ] = ACTIONS(972), - [anon_sym_LT_LT_EQ] = ACTIONS(972), - [anon_sym_GT_GT_EQ] = ACTIONS(972), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(972), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_QMARK_QMARK] = ACTIONS(974), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [sym_equality_operator] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_GT_GT_GT] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_TILDE_SLASH] = ACTIONS(972), - [sym_increment_operator] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_await] = ACTIONS(974), - [anon_sym_is] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_QMARK_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_assert] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_yield] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_try] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_AT] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_abstract] = ACTIONS(974), - [anon_sym_class] = ACTIONS(974), - [anon_sym_super] = ACTIONS(974), - [anon_sym_void] = ACTIONS(974), - [anon_sym_var] = ACTIONS(974), - [anon_sym_covariant] = ACTIONS(974), - [anon_sym_Function] = ACTIONS(970), - [anon_sym_get] = ACTIONS(974), - [anon_sym_set] = ACTIONS(974), - [anon_sym_new] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_final] = ACTIONS(974), - [anon_sym_external] = ACTIONS(974), - [anon_sym_this] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - }, [179] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3068), - [sym__element] = STATE(3068), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3068), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3068), - [sym_for_element] = STATE(3068), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -31984,6 +32342,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(929), [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), @@ -31998,172 +32357,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [180] = { - [aux_sym__function_type_tails] = STATE(180), - [sym__function_type_tail] = STATE(180), - [sym__function_builtin_identifier] = STATE(3005), - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(976), - [sym_decimal_integer_literal] = ACTIONS(978), - [sym_hex_integer_literal] = ACTIONS(978), - [sym_octal_integer_literal] = ACTIONS(976), - [sym_binary_integer_literal] = ACTIONS(976), - [sym_decimal_floating_point_literal] = ACTIONS(976), - [sym_hex_floating_point_literal] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(976), - [anon_sym_r] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_null] = ACTIONS(978), - [anon_sym_throw] = ACTIONS(978), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(976), - [anon_sym_DASH_EQ] = ACTIONS(976), - [anon_sym_STAR_EQ] = ACTIONS(976), - [anon_sym_SLASH_EQ] = ACTIONS(976), - [anon_sym_AMP_EQ] = ACTIONS(976), - [anon_sym_PIPE_EQ] = ACTIONS(976), - [anon_sym_CARET_EQ] = ACTIONS(976), - [anon_sym_PERCENT_EQ] = ACTIONS(976), - [anon_sym_LT_LT_EQ] = ACTIONS(976), - [anon_sym_GT_GT_EQ] = ACTIONS(976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(976), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_QMARK_QMARK] = ACTIONS(978), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [sym_equality_operator] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_GT] = ACTIONS(978), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_LT_LT] = ACTIONS(978), - [anon_sym_GT_GT] = ACTIONS(978), - [anon_sym_GT_GT_GT] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_SLASH] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(978), - [anon_sym_TILDE_SLASH] = ACTIONS(976), - [sym_increment_operator] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_await] = ACTIONS(978), - [anon_sym_is] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_QMARK_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_assert] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_yield] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_try] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_abstract] = ACTIONS(978), - [anon_sym_class] = ACTIONS(978), - [anon_sym_super] = ACTIONS(978), - [anon_sym_void] = ACTIONS(978), - [anon_sym_var] = ACTIONS(978), - [anon_sym_covariant] = ACTIONS(978), - [anon_sym_Function] = ACTIONS(980), - [anon_sym_get] = ACTIONS(978), - [anon_sym_set] = ACTIONS(978), - [anon_sym_new] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_final] = ACTIONS(978), - [anon_sym_external] = ACTIONS(978), - [anon_sym_this] = ACTIONS(978), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3293), + [sym__element] = STATE(3293), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3293), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3293), + [sym_for_element] = STATE(3293), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [181] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_pair] = STATE(3017), - [sym__element] = STATE(3017), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(2982), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(2982), - [sym_assignment_expression] = STATE(2982), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_spread_element] = STATE(3017), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_if_element] = STATE(3017), - [sym_for_element] = STATE(3017), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3128), + [sym__element] = STATE(3128), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3128), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3128), + [sym_for_element] = STATE(3128), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -32174,6 +32538,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(931), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), @@ -32194,2230 +32559,3322 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(510), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [182] = { - [sym_type_arguments] = STATE(262), - [sym__type_args] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(983), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(983), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(983), - [anon_sym_r] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_null] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(983), - [anon_sym_DASH_EQ] = ACTIONS(983), - [anon_sym_STAR_EQ] = ACTIONS(983), - [anon_sym_SLASH_EQ] = ACTIONS(983), - [anon_sym_AMP_EQ] = ACTIONS(983), - [anon_sym_PIPE_EQ] = ACTIONS(983), - [anon_sym_CARET_EQ] = ACTIONS(983), - [anon_sym_PERCENT_EQ] = ACTIONS(983), - [anon_sym_LT_LT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_QMARK_QMARK] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [sym_equality_operator] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_GT_GT_GT] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_TILDE_SLASH] = ACTIONS(983), - [sym_increment_operator] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_is] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_QMARK_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_super] = ACTIONS(985), - [anon_sym_void] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_covariant] = ACTIONS(985), - [anon_sym_Function] = ACTIONS(985), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(985), - [anon_sym_new] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_external] = ACTIONS(985), - [anon_sym_this] = ACTIONS(985), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(933), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [183] = { - [sym_shift_operator] = STATE(648), - [aux_sym_shift_expression_repeat1] = STATE(187), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(989), - [sym_decimal_integer_literal] = ACTIONS(991), - [sym_hex_integer_literal] = ACTIONS(991), - [sym_octal_integer_literal] = ACTIONS(989), - [sym_binary_integer_literal] = ACTIONS(989), - [sym_decimal_floating_point_literal] = ACTIONS(989), - [sym_hex_floating_point_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(989), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(989), - [anon_sym_r] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_null] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_PLUS_EQ] = ACTIONS(989), - [anon_sym_DASH_EQ] = ACTIONS(989), - [anon_sym_STAR_EQ] = ACTIONS(989), - [anon_sym_SLASH_EQ] = ACTIONS(989), - [anon_sym_AMP_EQ] = ACTIONS(989), - [anon_sym_PIPE_EQ] = ACTIONS(989), - [anon_sym_CARET_EQ] = ACTIONS(989), - [anon_sym_PERCENT_EQ] = ACTIONS(989), - [anon_sym_LT_LT_EQ] = ACTIONS(989), - [anon_sym_GT_GT_EQ] = ACTIONS(989), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(989), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_QMARK_QMARK] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [sym_equality_operator] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(991), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_GT_GT_GT] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_TILDE_SLASH] = ACTIONS(989), - [sym_increment_operator] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_is] = ACTIONS(991), - [anon_sym_as] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_QMARK_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_assert] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(991), - [anon_sym_abstract] = ACTIONS(991), - [anon_sym_class] = ACTIONS(991), - [anon_sym_super] = ACTIONS(991), - [anon_sym_void] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_covariant] = ACTIONS(991), - [anon_sym_Function] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_new] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_final] = ACTIONS(991), - [anon_sym_external] = ACTIONS(991), - [anon_sym_this] = ACTIONS(991), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [184] = { - [sym_additive_operator] = STATE(649), - [aux_sym_additive_expression_repeat1] = STATE(184), - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [sym_decimal_integer_literal] = ACTIONS(610), - [sym_hex_integer_literal] = ACTIONS(610), - [sym_octal_integer_literal] = ACTIONS(608), - [sym_binary_integer_literal] = ACTIONS(608), - [sym_decimal_floating_point_literal] = ACTIONS(608), - [sym_hex_floating_point_literal] = ACTIONS(610), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(608), - [anon_sym_r] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_null] = ACTIONS(610), - [anon_sym_throw] = ACTIONS(610), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(608), - [anon_sym_STAR_EQ] = ACTIONS(608), - [anon_sym_SLASH_EQ] = ACTIONS(608), - [anon_sym_AMP_EQ] = ACTIONS(608), - [anon_sym_PIPE_EQ] = ACTIONS(608), - [anon_sym_CARET_EQ] = ACTIONS(608), - [anon_sym_PERCENT_EQ] = ACTIONS(608), - [anon_sym_LT_LT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(608), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_QMARK_QMARK] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(608), - [sym_equality_operator] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_GT_GT_GT] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_TILDE_SLASH] = ACTIONS(608), - [sym_increment_operator] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_await] = ACTIONS(610), - [anon_sym_is] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_QMARK_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_assert] = ACTIONS(610), - [anon_sym_switch] = ACTIONS(610), - [anon_sym_do] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_try] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_abstract] = ACTIONS(610), - [anon_sym_class] = ACTIONS(610), - [anon_sym_super] = ACTIONS(610), - [anon_sym_void] = ACTIONS(610), - [anon_sym_var] = ACTIONS(610), - [anon_sym_covariant] = ACTIONS(610), - [anon_sym_Function] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_new] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_final] = ACTIONS(610), - [anon_sym_external] = ACTIONS(610), - [anon_sym_this] = ACTIONS(610), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [185] = { - [sym_cascade_section] = STATE(189), - [aux_sym__expression_repeat1] = STATE(189), - [ts_builtin_sym_end] = ACTIONS(996), - [sym_identifier] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(996), - [sym_decimal_integer_literal] = ACTIONS(998), - [sym_hex_integer_literal] = ACTIONS(998), - [sym_octal_integer_literal] = ACTIONS(996), - [sym_binary_integer_literal] = ACTIONS(996), - [sym_decimal_floating_point_literal] = ACTIONS(996), - [sym_hex_floating_point_literal] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(996), - [anon_sym_r] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_null] = ACTIONS(998), - [anon_sym_throw] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_AMP_EQ] = ACTIONS(996), - [anon_sym_PIPE_EQ] = ACTIONS(996), - [anon_sym_CARET_EQ] = ACTIONS(996), - [anon_sym_PERCENT_EQ] = ACTIONS(996), - [anon_sym_LT_LT_EQ] = ACTIONS(996), - [anon_sym_GT_GT_EQ] = ACTIONS(996), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(996), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_QMARK_QMARK] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_PIPE_PIPE] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(996), - [sym_equality_operator] = ACTIONS(996), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_GT_EQ] = ACTIONS(996), - [anon_sym_LT_EQ] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_LT_LT] = ACTIONS(998), - [anon_sym_GT_GT] = ACTIONS(998), - [anon_sym_GT_GT_GT] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_SLASH] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_TILDE_SLASH] = ACTIONS(996), - [sym_increment_operator] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_await] = ACTIONS(998), - [anon_sym_is] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_QMARK_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_assert] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(998), - [anon_sym_class] = ACTIONS(998), - [anon_sym_super] = ACTIONS(998), - [anon_sym_void] = ACTIONS(998), - [anon_sym_var] = ACTIONS(998), - [anon_sym_covariant] = ACTIONS(998), - [anon_sym_Function] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_new] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_final] = ACTIONS(998), - [anon_sym_external] = ACTIONS(998), - [anon_sym_this] = ACTIONS(998), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [186] = { - [sym_additive_operator] = STATE(649), - [aux_sym_additive_expression_repeat1] = STATE(184), - [ts_builtin_sym_end] = ACTIONS(1003), - [sym_identifier] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(1003), - [sym_decimal_integer_literal] = ACTIONS(1005), - [sym_hex_integer_literal] = ACTIONS(1005), - [sym_octal_integer_literal] = ACTIONS(1003), - [sym_binary_integer_literal] = ACTIONS(1003), - [sym_decimal_floating_point_literal] = ACTIONS(1003), - [sym_hex_floating_point_literal] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1003), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1003), - [anon_sym_r] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_throw] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_STAR_EQ] = ACTIONS(1003), - [anon_sym_SLASH_EQ] = ACTIONS(1003), - [anon_sym_AMP_EQ] = ACTIONS(1003), - [anon_sym_PIPE_EQ] = ACTIONS(1003), - [anon_sym_CARET_EQ] = ACTIONS(1003), - [anon_sym_PERCENT_EQ] = ACTIONS(1003), - [anon_sym_LT_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_QMARK_QMARK] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [sym_equality_operator] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1005), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_GT_GT_GT] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1005), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_PERCENT] = ACTIONS(1005), - [anon_sym_TILDE_SLASH] = ACTIONS(1003), - [sym_increment_operator] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_await] = ACTIONS(1005), - [anon_sym_is] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_QMARK_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_assert] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_abstract] = ACTIONS(1005), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_super] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1005), - [anon_sym_var] = ACTIONS(1005), - [anon_sym_covariant] = ACTIONS(1005), - [anon_sym_Function] = ACTIONS(1005), - [anon_sym_get] = ACTIONS(1005), - [anon_sym_set] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_final] = ACTIONS(1005), - [anon_sym_external] = ACTIONS(1005), - [anon_sym_this] = ACTIONS(1005), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [187] = { - [sym_shift_operator] = STATE(648), - [aux_sym_shift_expression_repeat1] = STATE(187), - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [sym_decimal_integer_literal] = ACTIONS(598), - [sym_hex_integer_literal] = ACTIONS(598), - [sym_octal_integer_literal] = ACTIONS(596), - [sym_binary_integer_literal] = ACTIONS(596), - [sym_decimal_floating_point_literal] = ACTIONS(596), - [sym_hex_floating_point_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), - [anon_sym_r] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_throw] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_PLUS_EQ] = ACTIONS(596), - [anon_sym_DASH_EQ] = ACTIONS(596), - [anon_sym_STAR_EQ] = ACTIONS(596), - [anon_sym_SLASH_EQ] = ACTIONS(596), - [anon_sym_AMP_EQ] = ACTIONS(596), - [anon_sym_PIPE_EQ] = ACTIONS(596), - [anon_sym_CARET_EQ] = ACTIONS(596), - [anon_sym_PERCENT_EQ] = ACTIONS(596), - [anon_sym_LT_LT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(596), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [sym_equality_operator] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_GT_GT_GT] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(598), - [anon_sym_TILDE_SLASH] = ACTIONS(596), - [sym_increment_operator] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_await] = ACTIONS(598), - [anon_sym_is] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(598), - [anon_sym_QMARK_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_switch] = ACTIONS(598), - [anon_sym_do] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_try] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_abstract] = ACTIONS(598), - [anon_sym_class] = ACTIONS(598), - [anon_sym_super] = ACTIONS(598), - [anon_sym_void] = ACTIONS(598), - [anon_sym_var] = ACTIONS(598), - [anon_sym_covariant] = ACTIONS(598), - [anon_sym_Function] = ACTIONS(598), - [anon_sym_get] = ACTIONS(598), - [anon_sym_set] = ACTIONS(598), - [anon_sym_new] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_final] = ACTIONS(598), - [anon_sym_external] = ACTIONS(598), - [anon_sym_this] = ACTIONS(598), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [188] = { - [sym_multiplicative_operator] = STATE(650), - [aux_sym_multiplicative_expression_repeat1] = STATE(188), - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [anon_sym_POUND] = ACTIONS(573), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [anon_sym_true] = ACTIONS(575), - [anon_sym_false] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [anon_sym_SQUOTE] = ACTIONS(575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(573), - [anon_sym_r] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(575), - [anon_sym_PLUS_EQ] = ACTIONS(573), - [anon_sym_DASH_EQ] = ACTIONS(573), - [anon_sym_STAR_EQ] = ACTIONS(573), - [anon_sym_SLASH_EQ] = ACTIONS(573), - [anon_sym_AMP_EQ] = ACTIONS(573), - [anon_sym_PIPE_EQ] = ACTIONS(573), - [anon_sym_CARET_EQ] = ACTIONS(573), - [anon_sym_PERCENT_EQ] = ACTIONS(573), - [anon_sym_LT_LT_EQ] = ACTIONS(573), - [anon_sym_GT_GT_EQ] = ACTIONS(573), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(573), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_QMARK_QMARK] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(573), - [sym_equality_operator] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(575), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(575), - [anon_sym_AMP] = ACTIONS(575), - [anon_sym_LT_LT] = ACTIONS(575), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_GT_GT_GT] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_PERCENT] = ACTIONS(1010), - [anon_sym_TILDE_SLASH] = ACTIONS(1013), - [sym_increment_operator] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(575), - [anon_sym_await] = ACTIONS(575), - [anon_sym_is] = ACTIONS(575), - [anon_sym_as] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_super] = ACTIONS(575), - [anon_sym_void] = ACTIONS(575), - [anon_sym_var] = ACTIONS(575), - [anon_sym_covariant] = ACTIONS(575), - [anon_sym_Function] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), - [anon_sym_new] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_external] = ACTIONS(575), - [anon_sym_this] = ACTIONS(575), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3312), + [sym__element] = STATE(3312), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3312), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3312), + [sym_for_element] = STATE(3312), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [189] = { - [sym_cascade_section] = STATE(189), - [aux_sym__expression_repeat1] = STATE(189), - [ts_builtin_sym_end] = ACTIONS(1016), - [sym_identifier] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(1016), - [sym_decimal_integer_literal] = ACTIONS(1018), - [sym_hex_integer_literal] = ACTIONS(1018), - [sym_octal_integer_literal] = ACTIONS(1016), - [sym_binary_integer_literal] = ACTIONS(1016), - [sym_decimal_floating_point_literal] = ACTIONS(1016), - [sym_hex_floating_point_literal] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1016), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1016), - [anon_sym_r] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1018), - [anon_sym_throw] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_AMP_EQ] = ACTIONS(1016), - [anon_sym_PIPE_EQ] = ACTIONS(1016), - [anon_sym_CARET_EQ] = ACTIONS(1016), - [anon_sym_PERCENT_EQ] = ACTIONS(1016), - [anon_sym_LT_LT_EQ] = ACTIONS(1016), - [anon_sym_GT_GT_EQ] = ACTIONS(1016), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1016), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_QMARK_QMARK] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1018), - [anon_sym_PIPE_PIPE] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1016), - [sym_equality_operator] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_GT_EQ] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_LT_LT] = ACTIONS(1018), - [anon_sym_GT_GT] = ACTIONS(1018), - [anon_sym_GT_GT_GT] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_PERCENT] = ACTIONS(1018), - [anon_sym_TILDE_SLASH] = ACTIONS(1016), - [sym_increment_operator] = ACTIONS(1016), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_is] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_QMARK_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1020), - [anon_sym_assert] = ACTIONS(1018), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_AT] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1018), - [anon_sym_abstract] = ACTIONS(1018), - [anon_sym_class] = ACTIONS(1018), - [anon_sym_super] = ACTIONS(1018), - [anon_sym_void] = ACTIONS(1018), - [anon_sym_var] = ACTIONS(1018), - [anon_sym_covariant] = ACTIONS(1018), - [anon_sym_Function] = ACTIONS(1018), - [anon_sym_get] = ACTIONS(1018), - [anon_sym_set] = ACTIONS(1018), - [anon_sym_new] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_final] = ACTIONS(1018), - [anon_sym_external] = ACTIONS(1018), - [anon_sym_this] = ACTIONS(1018), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3311), + [sym__element] = STATE(3311), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3311), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3311), + [sym_for_element] = STATE(3311), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [190] = { - [sym_multiplicative_operator] = STATE(650), - [aux_sym_multiplicative_expression_repeat1] = STATE(188), - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_identifier] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1023), - [sym_decimal_integer_literal] = ACTIONS(1025), - [sym_hex_integer_literal] = ACTIONS(1025), - [sym_octal_integer_literal] = ACTIONS(1023), - [sym_binary_integer_literal] = ACTIONS(1023), - [sym_decimal_floating_point_literal] = ACTIONS(1023), - [sym_hex_floating_point_literal] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1023), - [anon_sym_r] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1025), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(1025), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_QMARK_QMARK] = ACTIONS(1025), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [sym_equality_operator] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_LT_LT] = ACTIONS(1025), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_GT_GT_GT] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1025), - [anon_sym_TILDE_SLASH] = ACTIONS(1023), - [sym_increment_operator] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_is] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_QMARK_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_assert] = ACTIONS(1025), - [anon_sym_switch] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_abstract] = ACTIONS(1025), - [anon_sym_class] = ACTIONS(1025), - [anon_sym_super] = ACTIONS(1025), - [anon_sym_void] = ACTIONS(1025), - [anon_sym_var] = ACTIONS(1025), - [anon_sym_covariant] = ACTIONS(1025), - [anon_sym_Function] = ACTIONS(1025), - [anon_sym_get] = ACTIONS(1025), - [anon_sym_set] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_final] = ACTIONS(1025), - [anon_sym_external] = ACTIONS(1025), - [anon_sym_this] = ACTIONS(1025), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3129), + [sym__element] = STATE(3129), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3129), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3129), + [sym_for_element] = STATE(3129), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [191] = { - [sym_type_parameters] = STATE(3333), - [sym_parameter_type_list] = STATE(219), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(983), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(983), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(983), - [anon_sym_r] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_null] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(983), - [anon_sym_DASH_EQ] = ACTIONS(983), - [anon_sym_STAR_EQ] = ACTIONS(983), - [anon_sym_SLASH_EQ] = ACTIONS(983), - [anon_sym_AMP_EQ] = ACTIONS(983), - [anon_sym_PIPE_EQ] = ACTIONS(983), - [anon_sym_CARET_EQ] = ACTIONS(983), - [anon_sym_PERCENT_EQ] = ACTIONS(983), - [anon_sym_LT_LT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(983), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_QMARK_QMARK] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [sym_equality_operator] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_GT_GT_GT] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_TILDE_SLASH] = ACTIONS(983), - [sym_increment_operator] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_is] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_QMARK_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_super] = ACTIONS(985), - [anon_sym_void] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_covariant] = ACTIONS(985), - [anon_sym_Function] = ACTIONS(985), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(985), - [anon_sym_new] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_external] = ACTIONS(985), - [anon_sym_this] = ACTIONS(985), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [192] = { - [aux_sym_bitwise_and_expression_repeat1] = STATE(192), - [ts_builtin_sym_end] = ACTIONS(565), - [sym_identifier] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(565), - [sym_decimal_integer_literal] = ACTIONS(567), - [sym_hex_integer_literal] = ACTIONS(567), - [sym_octal_integer_literal] = ACTIONS(565), - [sym_binary_integer_literal] = ACTIONS(565), - [sym_decimal_floating_point_literal] = ACTIONS(565), - [sym_hex_floating_point_literal] = ACTIONS(567), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(565), - [anon_sym_r] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_null] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(565), - [anon_sym_DASH_EQ] = ACTIONS(565), - [anon_sym_STAR_EQ] = ACTIONS(565), - [anon_sym_SLASH_EQ] = ACTIONS(565), - [anon_sym_AMP_EQ] = ACTIONS(565), - [anon_sym_PIPE_EQ] = ACTIONS(565), - [anon_sym_CARET_EQ] = ACTIONS(565), - [anon_sym_PERCENT_EQ] = ACTIONS(565), - [anon_sym_LT_LT_EQ] = ACTIONS(565), - [anon_sym_GT_GT_EQ] = ACTIONS(565), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(565), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_QMARK_QMARK] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(565), - [anon_sym_AMP_AMP] = ACTIONS(565), - [sym_equality_operator] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_TILDE_SLASH] = ACTIONS(565), - [sym_increment_operator] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_await] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_DOT_DOT] = ACTIONS(565), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(567), - [anon_sym_do] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_try] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(567), - [anon_sym_class] = ACTIONS(567), - [anon_sym_super] = ACTIONS(567), - [anon_sym_void] = ACTIONS(567), - [anon_sym_var] = ACTIONS(567), - [anon_sym_covariant] = ACTIONS(567), - [anon_sym_Function] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_new] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_final] = ACTIONS(567), - [anon_sym_external] = ACTIONS(567), - [anon_sym_this] = ACTIONS(567), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [193] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [sym_cascade_section] = STATE(729), - [aux_sym__expression_repeat1] = STATE(729), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(534), - [sym_identifier] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(534), - [sym_decimal_integer_literal] = ACTIONS(536), - [sym_hex_integer_literal] = ACTIONS(536), - [sym_octal_integer_literal] = ACTIONS(534), - [sym_binary_integer_literal] = ACTIONS(534), - [sym_decimal_floating_point_literal] = ACTIONS(534), - [sym_hex_floating_point_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(536), - [anon_sym_false] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(534), - [anon_sym_DQUOTE] = ACTIONS(536), - [anon_sym_SQUOTE] = ACTIONS(536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(534), - [anon_sym_r] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(534), - [anon_sym_COMMA] = ACTIONS(534), - [anon_sym_null] = ACTIONS(536), - [anon_sym_throw] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(536), - [anon_sym_GT] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(534), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(534), - [anon_sym_BANG] = ACTIONS(536), - [anon_sym_TILDE] = ACTIONS(536), - [anon_sym_await] = ACTIONS(536), - [anon_sym_is] = ACTIONS(536), - [anon_sym_as] = ACTIONS(536), - [anon_sym_DOT] = ACTIONS(536), - [anon_sym_QMARK_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT] = ACTIONS(1052), - [anon_sym_assert] = ACTIONS(536), - [anon_sym_switch] = ACTIONS(536), - [anon_sym_do] = ACTIONS(536), - [anon_sym_while] = ACTIONS(536), - [anon_sym_break] = ACTIONS(536), - [anon_sym_continue] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(536), - [anon_sym_return] = ACTIONS(536), - [anon_sym_try] = ACTIONS(536), - [anon_sym_if] = ACTIONS(536), - [anon_sym_for] = ACTIONS(536), - [anon_sym_AT] = ACTIONS(534), - [anon_sym_enum] = ACTIONS(536), - [anon_sym_abstract] = ACTIONS(536), - [anon_sym_class] = ACTIONS(536), - [anon_sym_super] = ACTIONS(536), - [anon_sym_void] = ACTIONS(536), - [anon_sym_var] = ACTIONS(536), - [anon_sym_covariant] = ACTIONS(536), - [anon_sym_Function] = ACTIONS(536), - [anon_sym_get] = ACTIONS(536), - [anon_sym_set] = ACTIONS(536), - [anon_sym_new] = ACTIONS(536), - [anon_sym_const] = ACTIONS(536), - [anon_sym_final] = ACTIONS(536), - [anon_sym_external] = ACTIONS(536), - [anon_sym_this] = ACTIONS(536), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [194] = { - [aux_sym_logical_and_expression_repeat1] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(584), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), - [anon_sym_r] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_null] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(584), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(1055), - [sym_equality_operator] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_GT_GT_GT] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_TILDE_SLASH] = ACTIONS(584), - [sym_increment_operator] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_await] = ACTIONS(586), - [anon_sym_is] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_QMARK_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_super] = ACTIONS(586), - [anon_sym_void] = ACTIONS(586), - [anon_sym_var] = ACTIONS(586), - [anon_sym_covariant] = ACTIONS(586), - [anon_sym_Function] = ACTIONS(586), - [anon_sym_get] = ACTIONS(586), - [anon_sym_set] = ACTIONS(586), - [anon_sym_new] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_external] = ACTIONS(586), - [anon_sym_this] = ACTIONS(586), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(957), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [195] = { - [sym__type_dot_identifier] = STATE(215), - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(1058), - [sym_decimal_integer_literal] = ACTIONS(1060), - [sym_hex_integer_literal] = ACTIONS(1060), - [sym_octal_integer_literal] = ACTIONS(1058), - [sym_binary_integer_literal] = ACTIONS(1058), - [sym_decimal_floating_point_literal] = ACTIONS(1058), - [sym_hex_floating_point_literal] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1058), - [anon_sym_r] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1060), - [anon_sym_throw] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_AMP_EQ] = ACTIONS(1058), - [anon_sym_PIPE_EQ] = ACTIONS(1058), - [anon_sym_CARET_EQ] = ACTIONS(1058), - [anon_sym_PERCENT_EQ] = ACTIONS(1058), - [anon_sym_LT_LT_EQ] = ACTIONS(1058), - [anon_sym_GT_GT_EQ] = ACTIONS(1058), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1058), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_QMARK_QMARK] = ACTIONS(1060), - [anon_sym_QMARK] = ACTIONS(1060), - [anon_sym_PIPE_PIPE] = ACTIONS(1058), - [anon_sym_AMP_AMP] = ACTIONS(1058), - [sym_equality_operator] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_EQ] = ACTIONS(1058), - [anon_sym_LT_EQ] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_CARET] = ACTIONS(1060), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_LT_LT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1060), - [anon_sym_GT_GT_GT] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1060), - [anon_sym_TILDE_SLASH] = ACTIONS(1058), - [sym_increment_operator] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_await] = ACTIONS(1060), - [anon_sym_is] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_QMARK_DOT] = ACTIONS(1058), - [anon_sym_DOT_DOT] = ACTIONS(1058), - [anon_sym_assert] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_yield] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_abstract] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1060), - [anon_sym_super] = ACTIONS(1060), - [anon_sym_void] = ACTIONS(1060), - [anon_sym_var] = ACTIONS(1060), - [anon_sym_covariant] = ACTIONS(1060), - [anon_sym_Function] = ACTIONS(1060), - [anon_sym_get] = ACTIONS(1060), - [anon_sym_set] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_final] = ACTIONS(1060), - [anon_sym_external] = ACTIONS(1060), - [anon_sym_this] = ACTIONS(1060), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [196] = { - [aux_sym_bitwise_and_expression_repeat1] = STATE(192), - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(1062), - [sym_decimal_integer_literal] = ACTIONS(1064), - [sym_hex_integer_literal] = ACTIONS(1064), - [sym_octal_integer_literal] = ACTIONS(1062), - [sym_binary_integer_literal] = ACTIONS(1062), - [sym_decimal_floating_point_literal] = ACTIONS(1062), - [sym_hex_floating_point_literal] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1064), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1062), - [anon_sym_r] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1064), - [anon_sym_throw] = ACTIONS(1064), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_PLUS_EQ] = ACTIONS(1062), - [anon_sym_DASH_EQ] = ACTIONS(1062), - [anon_sym_STAR_EQ] = ACTIONS(1062), - [anon_sym_SLASH_EQ] = ACTIONS(1062), - [anon_sym_AMP_EQ] = ACTIONS(1062), - [anon_sym_PIPE_EQ] = ACTIONS(1062), - [anon_sym_CARET_EQ] = ACTIONS(1062), - [anon_sym_PERCENT_EQ] = ACTIONS(1062), - [anon_sym_LT_LT_EQ] = ACTIONS(1062), - [anon_sym_GT_GT_EQ] = ACTIONS(1062), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1062), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_QMARK_QMARK] = ACTIONS(1064), - [anon_sym_QMARK] = ACTIONS(1064), - [anon_sym_PIPE_PIPE] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(1062), - [sym_equality_operator] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1064), - [anon_sym_GT_EQ] = ACTIONS(1062), - [anon_sym_LT_EQ] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_CARET] = ACTIONS(1064), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_GT_GT] = ACTIONS(1064), - [anon_sym_GT_GT_GT] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_SLASH] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1064), - [anon_sym_TILDE_SLASH] = ACTIONS(1062), - [sym_increment_operator] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_await] = ACTIONS(1064), - [anon_sym_is] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [anon_sym_DOT] = ACTIONS(1064), - [anon_sym_QMARK_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_assert] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_yield] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_AT] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_abstract] = ACTIONS(1064), - [anon_sym_class] = ACTIONS(1064), - [anon_sym_super] = ACTIONS(1064), - [anon_sym_void] = ACTIONS(1064), - [anon_sym_var] = ACTIONS(1064), - [anon_sym_covariant] = ACTIONS(1064), - [anon_sym_Function] = ACTIONS(1064), - [anon_sym_get] = ACTIONS(1064), - [anon_sym_set] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_final] = ACTIONS(1064), - [anon_sym_external] = ACTIONS(1064), - [anon_sym_this] = ACTIONS(1064), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [197] = { - [aux_sym_bitwise_xor_expression_repeat1] = STATE(204), - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(1066), - [sym_decimal_integer_literal] = ACTIONS(1068), - [sym_hex_integer_literal] = ACTIONS(1068), - [sym_octal_integer_literal] = ACTIONS(1066), - [sym_binary_integer_literal] = ACTIONS(1066), - [sym_decimal_floating_point_literal] = ACTIONS(1066), - [sym_hex_floating_point_literal] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1068), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1066), - [anon_sym_r] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1068), - [anon_sym_throw] = ACTIONS(1068), - [anon_sym_EQ] = ACTIONS(1068), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_AMP_EQ] = ACTIONS(1066), - [anon_sym_PIPE_EQ] = ACTIONS(1066), - [anon_sym_CARET_EQ] = ACTIONS(1066), - [anon_sym_PERCENT_EQ] = ACTIONS(1066), - [anon_sym_LT_LT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1066), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_QMARK_QMARK] = ACTIONS(1068), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [sym_equality_operator] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_CARET] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_LT_LT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_GT_GT_GT] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1068), - [anon_sym_PERCENT] = ACTIONS(1068), - [anon_sym_TILDE_SLASH] = ACTIONS(1066), - [sym_increment_operator] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_await] = ACTIONS(1068), - [anon_sym_is] = ACTIONS(1068), - [anon_sym_as] = ACTIONS(1068), - [anon_sym_DOT] = ACTIONS(1068), - [anon_sym_QMARK_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1066), - [anon_sym_assert] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_yield] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_AT] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_abstract] = ACTIONS(1068), - [anon_sym_class] = ACTIONS(1068), - [anon_sym_super] = ACTIONS(1068), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_var] = ACTIONS(1068), - [anon_sym_covariant] = ACTIONS(1068), - [anon_sym_Function] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_new] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_final] = ACTIONS(1068), - [anon_sym_external] = ACTIONS(1068), - [anon_sym_this] = ACTIONS(1068), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3251), + [sym__element] = STATE(3251), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3251), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3251), + [sym_for_element] = STATE(3251), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [198] = { - [aux_sym_bitwise_or_expression_repeat1] = STATE(198), - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_POUND] = ACTIONS(569), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [anon_sym_true] = ACTIONS(571), - [anon_sym_false] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(569), - [anon_sym_r] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_null] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_EQ] = ACTIONS(571), - [anon_sym_PLUS_EQ] = ACTIONS(569), - [anon_sym_DASH_EQ] = ACTIONS(569), - [anon_sym_STAR_EQ] = ACTIONS(569), - [anon_sym_SLASH_EQ] = ACTIONS(569), - [anon_sym_AMP_EQ] = ACTIONS(569), - [anon_sym_PIPE_EQ] = ACTIONS(569), - [anon_sym_CARET_EQ] = ACTIONS(569), - [anon_sym_PERCENT_EQ] = ACTIONS(569), - [anon_sym_LT_LT_EQ] = ACTIONS(569), - [anon_sym_GT_GT_EQ] = ACTIONS(569), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(569), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(571), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_PIPE_PIPE] = ACTIONS(569), - [anon_sym_AMP_AMP] = ACTIONS(569), - [sym_equality_operator] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(571), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(571), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_GT_GT_GT] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(571), - [anon_sym_TILDE_SLASH] = ACTIONS(569), - [sym_increment_operator] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_await] = ACTIONS(571), - [anon_sym_is] = ACTIONS(571), - [anon_sym_as] = ACTIONS(571), - [anon_sym_DOT] = ACTIONS(571), - [anon_sym_QMARK_DOT] = ACTIONS(569), - [anon_sym_DOT_DOT] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_super] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_covariant] = ACTIONS(571), - [anon_sym_Function] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [anon_sym_new] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_external] = ACTIONS(571), - [anon_sym_this] = ACTIONS(571), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3262), + [sym__element] = STATE(3262), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3262), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3262), + [sym_for_element] = STATE(3262), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [199] = { - [sym__type_dot_identifier] = STATE(2453), - [ts_builtin_sym_end] = ACTIONS(1073), - [sym_identifier] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(1073), - [sym_decimal_integer_literal] = ACTIONS(1075), - [sym_hex_integer_literal] = ACTIONS(1075), - [sym_octal_integer_literal] = ACTIONS(1073), - [sym_binary_integer_literal] = ACTIONS(1073), - [sym_decimal_floating_point_literal] = ACTIONS(1073), - [sym_hex_floating_point_literal] = ACTIONS(1075), - [anon_sym_true] = ACTIONS(1075), - [anon_sym_false] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1073), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1073), - [anon_sym_r] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_COMMA] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1075), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_PLUS_EQ] = ACTIONS(1073), - [anon_sym_DASH_EQ] = ACTIONS(1073), - [anon_sym_STAR_EQ] = ACTIONS(1073), - [anon_sym_SLASH_EQ] = ACTIONS(1073), - [anon_sym_AMP_EQ] = ACTIONS(1073), - [anon_sym_PIPE_EQ] = ACTIONS(1073), - [anon_sym_CARET_EQ] = ACTIONS(1073), - [anon_sym_PERCENT_EQ] = ACTIONS(1073), - [anon_sym_LT_LT_EQ] = ACTIONS(1073), - [anon_sym_GT_GT_EQ] = ACTIONS(1073), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1073), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_QMARK_QMARK] = ACTIONS(1075), - [anon_sym_QMARK] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1073), - [anon_sym_AMP_AMP] = ACTIONS(1073), - [sym_equality_operator] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1075), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_GT_GT_GT] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_PERCENT] = ACTIONS(1075), - [anon_sym_TILDE_SLASH] = ACTIONS(1073), - [sym_increment_operator] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_is] = ACTIONS(1075), - [anon_sym_as] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1080), - [anon_sym_QMARK_DOT] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_assert] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_yield] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_try] = ACTIONS(1075), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_AT] = ACTIONS(1073), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_abstract] = ACTIONS(1075), - [anon_sym_class] = ACTIONS(1075), - [anon_sym_super] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1075), - [anon_sym_var] = ACTIONS(1075), - [anon_sym_covariant] = ACTIONS(1075), - [anon_sym_Function] = ACTIONS(1075), - [anon_sym_get] = ACTIONS(1075), - [anon_sym_set] = ACTIONS(1075), - [anon_sym_new] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_final] = ACTIONS(1075), - [anon_sym_external] = ACTIONS(1075), - [anon_sym_this] = ACTIONS(1075), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [200] = { - [aux_sym_logical_and_expression_repeat1] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1085), - [anon_sym_POUND] = ACTIONS(1083), - [sym_decimal_integer_literal] = ACTIONS(1085), - [sym_hex_integer_literal] = ACTIONS(1085), - [sym_octal_integer_literal] = ACTIONS(1083), - [sym_binary_integer_literal] = ACTIONS(1083), - [sym_decimal_floating_point_literal] = ACTIONS(1083), - [sym_hex_floating_point_literal] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1085), - [anon_sym_false] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), - [anon_sym_r] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1085), - [anon_sym_throw] = ACTIONS(1085), - [anon_sym_EQ] = ACTIONS(1085), - [anon_sym_PLUS_EQ] = ACTIONS(1083), - [anon_sym_DASH_EQ] = ACTIONS(1083), - [anon_sym_STAR_EQ] = ACTIONS(1083), - [anon_sym_SLASH_EQ] = ACTIONS(1083), - [anon_sym_AMP_EQ] = ACTIONS(1083), - [anon_sym_PIPE_EQ] = ACTIONS(1083), - [anon_sym_CARET_EQ] = ACTIONS(1083), - [anon_sym_PERCENT_EQ] = ACTIONS(1083), - [anon_sym_LT_LT_EQ] = ACTIONS(1083), - [anon_sym_GT_GT_EQ] = ACTIONS(1083), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1083), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_QMARK_QMARK] = ACTIONS(1085), - [anon_sym_QMARK] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1083), - [anon_sym_AMP_AMP] = ACTIONS(1083), - [sym_equality_operator] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1083), - [anon_sym_PIPE] = ACTIONS(1085), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1085), - [anon_sym_GT_GT] = ACTIONS(1085), - [anon_sym_GT_GT_GT] = ACTIONS(1085), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_SLASH] = ACTIONS(1085), - [anon_sym_PERCENT] = ACTIONS(1085), - [anon_sym_TILDE_SLASH] = ACTIONS(1083), - [sym_increment_operator] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_is] = ACTIONS(1085), - [anon_sym_as] = ACTIONS(1085), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1083), - [anon_sym_assert] = ACTIONS(1085), - [anon_sym_switch] = ACTIONS(1085), - [anon_sym_do] = ACTIONS(1085), - [anon_sym_while] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1085), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_yield] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1085), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_abstract] = ACTIONS(1085), - [anon_sym_class] = ACTIONS(1085), - [anon_sym_super] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1085), - [anon_sym_var] = ACTIONS(1085), - [anon_sym_covariant] = ACTIONS(1085), - [anon_sym_Function] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1085), - [anon_sym_final] = ACTIONS(1085), - [anon_sym_external] = ACTIONS(1085), - [anon_sym_this] = ACTIONS(1085), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3216), + [sym__element] = STATE(3216), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3216), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3216), + [sym_for_element] = STATE(3216), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [201] = { - [aux_sym_logical_or_expression_repeat1] = STATE(205), - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1089), - [anon_sym_POUND] = ACTIONS(1087), - [sym_decimal_integer_literal] = ACTIONS(1089), - [sym_hex_integer_literal] = ACTIONS(1089), - [sym_octal_integer_literal] = ACTIONS(1087), - [sym_binary_integer_literal] = ACTIONS(1087), - [sym_decimal_floating_point_literal] = ACTIONS(1087), - [sym_hex_floating_point_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1089), - [anon_sym_false] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1087), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1087), - [anon_sym_r] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_COMMA] = ACTIONS(1087), - [anon_sym_null] = ACTIONS(1089), - [anon_sym_throw] = ACTIONS(1089), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_PLUS_EQ] = ACTIONS(1087), - [anon_sym_DASH_EQ] = ACTIONS(1087), - [anon_sym_STAR_EQ] = ACTIONS(1087), - [anon_sym_SLASH_EQ] = ACTIONS(1087), - [anon_sym_AMP_EQ] = ACTIONS(1087), - [anon_sym_PIPE_EQ] = ACTIONS(1087), - [anon_sym_CARET_EQ] = ACTIONS(1087), - [anon_sym_PERCENT_EQ] = ACTIONS(1087), - [anon_sym_LT_LT_EQ] = ACTIONS(1087), - [anon_sym_GT_GT_EQ] = ACTIONS(1087), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1087), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_QMARK_QMARK] = ACTIONS(1089), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1087), - [anon_sym_AMP_AMP] = ACTIONS(1087), - [sym_equality_operator] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1089), - [anon_sym_GT_EQ] = ACTIONS(1087), - [anon_sym_LT_EQ] = ACTIONS(1087), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_CARET] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1089), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_GT_GT_GT] = ACTIONS(1089), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_SLASH] = ACTIONS(1089), - [anon_sym_PERCENT] = ACTIONS(1089), - [anon_sym_TILDE_SLASH] = ACTIONS(1087), - [sym_increment_operator] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_is] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1089), - [anon_sym_DOT] = ACTIONS(1089), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_assert] = ACTIONS(1089), - [anon_sym_switch] = ACTIONS(1089), - [anon_sym_do] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1089), - [anon_sym_break] = ACTIONS(1089), - [anon_sym_continue] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1089), - [anon_sym_return] = ACTIONS(1089), - [anon_sym_try] = ACTIONS(1089), - [anon_sym_if] = ACTIONS(1089), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1089), - [anon_sym_abstract] = ACTIONS(1089), - [anon_sym_class] = ACTIONS(1089), - [anon_sym_super] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_var] = ACTIONS(1089), - [anon_sym_covariant] = ACTIONS(1089), - [anon_sym_Function] = ACTIONS(1089), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_new] = ACTIONS(1089), - [anon_sym_const] = ACTIONS(1089), - [anon_sym_final] = ACTIONS(1089), - [anon_sym_external] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(1089), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3070), + [sym__element] = STATE(3070), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3070), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3070), + [sym_for_element] = STATE(3070), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [202] = { - [aux_sym_bitwise_or_expression_repeat1] = STATE(198), - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_identifier] = ACTIONS(1093), - [anon_sym_POUND] = ACTIONS(1091), - [sym_decimal_integer_literal] = ACTIONS(1093), - [sym_hex_integer_literal] = ACTIONS(1093), - [sym_octal_integer_literal] = ACTIONS(1091), - [sym_binary_integer_literal] = ACTIONS(1091), - [sym_decimal_floating_point_literal] = ACTIONS(1091), - [sym_hex_floating_point_literal] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1091), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1091), - [anon_sym_r] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1091), - [anon_sym_COMMA] = ACTIONS(1091), - [anon_sym_null] = ACTIONS(1093), - [anon_sym_throw] = ACTIONS(1093), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_PLUS_EQ] = ACTIONS(1091), - [anon_sym_DASH_EQ] = ACTIONS(1091), - [anon_sym_STAR_EQ] = ACTIONS(1091), - [anon_sym_SLASH_EQ] = ACTIONS(1091), - [anon_sym_AMP_EQ] = ACTIONS(1091), - [anon_sym_PIPE_EQ] = ACTIONS(1091), - [anon_sym_CARET_EQ] = ACTIONS(1091), - [anon_sym_PERCENT_EQ] = ACTIONS(1091), - [anon_sym_LT_LT_EQ] = ACTIONS(1091), - [anon_sym_GT_GT_EQ] = ACTIONS(1091), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1091), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_QMARK_QMARK] = ACTIONS(1093), - [anon_sym_QMARK] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [sym_equality_operator] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_GT_EQ] = ACTIONS(1091), - [anon_sym_LT_EQ] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_CARET] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1093), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_GT_GT_GT] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1093), - [anon_sym_PERCENT] = ACTIONS(1093), - [anon_sym_TILDE_SLASH] = ACTIONS(1091), - [sym_increment_operator] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1093), - [anon_sym_is] = ACTIONS(1093), - [anon_sym_as] = ACTIONS(1093), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_QMARK_DOT] = ACTIONS(1091), - [anon_sym_DOT_DOT] = ACTIONS(1091), - [anon_sym_assert] = ACTIONS(1093), - [anon_sym_switch] = ACTIONS(1093), - [anon_sym_do] = ACTIONS(1093), - [anon_sym_while] = ACTIONS(1093), - [anon_sym_break] = ACTIONS(1093), - [anon_sym_continue] = ACTIONS(1093), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_return] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(1093), - [anon_sym_if] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1093), - [anon_sym_AT] = ACTIONS(1091), - [anon_sym_enum] = ACTIONS(1093), - [anon_sym_abstract] = ACTIONS(1093), - [anon_sym_class] = ACTIONS(1093), - [anon_sym_super] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1093), - [anon_sym_var] = ACTIONS(1093), - [anon_sym_covariant] = ACTIONS(1093), - [anon_sym_Function] = ACTIONS(1093), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1093), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_const] = ACTIONS(1093), - [anon_sym_final] = ACTIONS(1093), - [anon_sym_external] = ACTIONS(1093), - [anon_sym_this] = ACTIONS(1093), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [aux_sym__if_null_expression] = STATE(206), - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_identifier] = ACTIONS(1097), - [anon_sym_POUND] = ACTIONS(1095), - [sym_decimal_integer_literal] = ACTIONS(1097), - [sym_hex_integer_literal] = ACTIONS(1097), - [sym_octal_integer_literal] = ACTIONS(1095), - [sym_binary_integer_literal] = ACTIONS(1095), - [sym_decimal_floating_point_literal] = ACTIONS(1095), - [sym_hex_floating_point_literal] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_SQUOTE] = ACTIONS(1097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1095), - [anon_sym_r] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_null] = ACTIONS(1097), - [anon_sym_throw] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1097), - [anon_sym_PLUS_EQ] = ACTIONS(1095), - [anon_sym_DASH_EQ] = ACTIONS(1095), - [anon_sym_STAR_EQ] = ACTIONS(1095), - [anon_sym_SLASH_EQ] = ACTIONS(1095), - [anon_sym_AMP_EQ] = ACTIONS(1095), - [anon_sym_PIPE_EQ] = ACTIONS(1095), - [anon_sym_CARET_EQ] = ACTIONS(1095), - [anon_sym_PERCENT_EQ] = ACTIONS(1095), - [anon_sym_LT_LT_EQ] = ACTIONS(1095), - [anon_sym_GT_GT_EQ] = ACTIONS(1095), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1095), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_QMARK_QMARK] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [sym_equality_operator] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_GT_EQ] = ACTIONS(1095), - [anon_sym_LT_EQ] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1097), - [anon_sym_LT_LT] = ACTIONS(1097), - [anon_sym_GT_GT] = ACTIONS(1097), - [anon_sym_GT_GT_GT] = ACTIONS(1097), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1097), - [anon_sym_TILDE_SLASH] = ACTIONS(1095), - [sym_increment_operator] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_await] = ACTIONS(1097), - [anon_sym_is] = ACTIONS(1097), - [anon_sym_as] = ACTIONS(1097), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_QMARK_DOT] = ACTIONS(1095), - [anon_sym_DOT_DOT] = ACTIONS(1095), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_switch] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1097), - [anon_sym_continue] = ACTIONS(1097), - [anon_sym_yield] = ACTIONS(1097), - [anon_sym_return] = ACTIONS(1097), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_AT] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1097), - [anon_sym_abstract] = ACTIONS(1097), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_super] = ACTIONS(1097), - [anon_sym_void] = ACTIONS(1097), - [anon_sym_var] = ACTIONS(1097), - [anon_sym_covariant] = ACTIONS(1097), - [anon_sym_Function] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_new] = ACTIONS(1097), - [anon_sym_const] = ACTIONS(1097), - [anon_sym_final] = ACTIONS(1097), - [anon_sym_external] = ACTIONS(1097), - [anon_sym_this] = ACTIONS(1097), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3036), + [sym__element] = STATE(3036), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3036), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3036), + [sym_for_element] = STATE(3036), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [203] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3133), + [sym__element] = STATE(3133), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3133), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3133), + [sym_for_element] = STATE(3133), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [204] = { - [aux_sym_bitwise_xor_expression_repeat1] = STATE(204), - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [sym_decimal_integer_literal] = ACTIONS(606), - [sym_hex_integer_literal] = ACTIONS(606), - [sym_octal_integer_literal] = ACTIONS(604), - [sym_binary_integer_literal] = ACTIONS(604), - [sym_decimal_floating_point_literal] = ACTIONS(604), - [sym_hex_floating_point_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), - [anon_sym_r] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_null] = ACTIONS(606), - [anon_sym_throw] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(606), - [anon_sym_PLUS_EQ] = ACTIONS(604), - [anon_sym_DASH_EQ] = ACTIONS(604), - [anon_sym_STAR_EQ] = ACTIONS(604), - [anon_sym_SLASH_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_CARET_EQ] = ACTIONS(604), - [anon_sym_PERCENT_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(604), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_QMARK_QMARK] = ACTIONS(606), - [anon_sym_QMARK] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_AMP_AMP] = ACTIONS(604), - [sym_equality_operator] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_GT_GT_GT] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(606), - [anon_sym_TILDE_SLASH] = ACTIONS(604), - [sym_increment_operator] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_await] = ACTIONS(606), - [anon_sym_is] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(606), - [anon_sym_QMARK_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(604), - [anon_sym_assert] = ACTIONS(606), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_do] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_try] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(604), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_abstract] = ACTIONS(606), - [anon_sym_class] = ACTIONS(606), - [anon_sym_super] = ACTIONS(606), - [anon_sym_void] = ACTIONS(606), - [anon_sym_var] = ACTIONS(606), - [anon_sym_covariant] = ACTIONS(606), - [anon_sym_Function] = ACTIONS(606), - [anon_sym_get] = ACTIONS(606), - [anon_sym_set] = ACTIONS(606), - [anon_sym_new] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_final] = ACTIONS(606), - [anon_sym_external] = ACTIONS(606), - [anon_sym_this] = ACTIONS(606), + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(209), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(209), + [ts_builtin_sym_end] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(971), + [sym_decimal_integer_literal] = ACTIONS(973), + [sym_hex_integer_literal] = ACTIONS(973), + [sym_octal_integer_literal] = ACTIONS(971), + [sym_binary_integer_literal] = ACTIONS(971), + [sym_decimal_floating_point_literal] = ACTIONS(971), + [sym_hex_floating_point_literal] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(971), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(971), + [anon_sym_r] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_null] = ACTIONS(973), + [anon_sym_throw] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_AMP_EQ] = ACTIONS(971), + [anon_sym_PIPE_EQ] = ACTIONS(971), + [anon_sym_CARET_EQ] = ACTIONS(971), + [anon_sym_PERCENT_EQ] = ACTIONS(971), + [anon_sym_LT_LT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(971), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_QMARK_QMARK] = ACTIONS(973), + [anon_sym_QMARK] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(971), + [sym_equality_operator] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(978), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_GT_GT_GT] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_TILDE_SLASH] = ACTIONS(971), + [sym_increment_operator] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_TILDE] = ACTIONS(973), + [anon_sym_await] = ACTIONS(973), + [anon_sym_is] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_QMARK_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_assert] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_try] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(971), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_abstract] = ACTIONS(973), + [anon_sym_class] = ACTIONS(973), + [anon_sym_super] = ACTIONS(973), + [anon_sym_void] = ACTIONS(973), + [anon_sym_var] = ACTIONS(973), + [anon_sym_covariant] = ACTIONS(973), + [anon_sym_Function] = ACTIONS(973), + [anon_sym_get] = ACTIONS(973), + [anon_sym_set] = ACTIONS(973), + [anon_sym_new] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_final] = ACTIONS(973), + [anon_sym_external] = ACTIONS(973), + [anon_sym_this] = ACTIONS(973), [sym_comment] = ACTIONS(3), }, [205] = { - [aux_sym_logical_or_expression_repeat1] = STATE(205), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3041), + [sym__element] = STATE(3041), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3041), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3041), + [sym_for_element] = STATE(3041), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [206] = { + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(204), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(204), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_identifier] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(981), + [sym_decimal_integer_literal] = ACTIONS(983), + [sym_hex_integer_literal] = ACTIONS(983), + [sym_octal_integer_literal] = ACTIONS(981), + [sym_binary_integer_literal] = ACTIONS(981), + [sym_decimal_floating_point_literal] = ACTIONS(981), + [sym_hex_floating_point_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(983), + [anon_sym_false] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(981), + [anon_sym_r] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_null] = ACTIONS(983), + [anon_sym_throw] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_STAR_EQ] = ACTIONS(981), + [anon_sym_SLASH_EQ] = ACTIONS(981), + [anon_sym_AMP_EQ] = ACTIONS(981), + [anon_sym_PIPE_EQ] = ACTIONS(981), + [anon_sym_CARET_EQ] = ACTIONS(981), + [anon_sym_PERCENT_EQ] = ACTIONS(981), + [anon_sym_LT_LT_EQ] = ACTIONS(981), + [anon_sym_GT_GT_EQ] = ACTIONS(981), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(981), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_QMARK_QMARK] = ACTIONS(983), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [sym_equality_operator] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_GT_GT_GT] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_TILDE_SLASH] = ACTIONS(981), + [sym_increment_operator] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_await] = ACTIONS(983), + [anon_sym_is] = ACTIONS(983), + [anon_sym_as] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_QMARK_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_assert] = ACTIONS(983), + [anon_sym_switch] = ACTIONS(983), + [anon_sym_do] = ACTIONS(983), + [anon_sym_while] = ACTIONS(983), + [anon_sym_break] = ACTIONS(983), + [anon_sym_continue] = ACTIONS(983), + [anon_sym_yield] = ACTIONS(983), + [anon_sym_return] = ACTIONS(983), + [anon_sym_try] = ACTIONS(983), + [anon_sym_if] = ACTIONS(983), + [anon_sym_for] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(983), + [anon_sym_abstract] = ACTIONS(983), + [anon_sym_class] = ACTIONS(983), + [anon_sym_super] = ACTIONS(983), + [anon_sym_void] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_covariant] = ACTIONS(983), + [anon_sym_Function] = ACTIONS(983), + [anon_sym_get] = ACTIONS(983), + [anon_sym_set] = ACTIONS(983), + [anon_sym_new] = ACTIONS(983), + [anon_sym_const] = ACTIONS(983), + [anon_sym_final] = ACTIONS(983), + [anon_sym_external] = ACTIONS(983), + [anon_sym_this] = ACTIONS(983), + [sym_comment] = ACTIONS(3), + }, + [207] = { + [sym_relational_operator] = STATE(713), + [sym_type_test] = STATE(2280), + [sym_is_operator] = STATE(2633), + [sym_type_cast] = STATE(2280), + [sym_as_operator] = STATE(2640), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(991), + [sym_decimal_integer_literal] = ACTIONS(993), + [sym_hex_integer_literal] = ACTIONS(993), + [sym_octal_integer_literal] = ACTIONS(991), + [sym_binary_integer_literal] = ACTIONS(991), + [sym_decimal_floating_point_literal] = ACTIONS(991), + [sym_hex_floating_point_literal] = ACTIONS(993), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(991), + [anon_sym_r] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_null] = ACTIONS(993), + [anon_sym_throw] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_AMP_EQ] = ACTIONS(991), + [anon_sym_PIPE_EQ] = ACTIONS(991), + [anon_sym_CARET_EQ] = ACTIONS(991), + [anon_sym_PERCENT_EQ] = ACTIONS(991), + [anon_sym_LT_LT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(991), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_QMARK_QMARK] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_AMP_AMP] = ACTIONS(991), + [sym_equality_operator] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_GT_GT_GT] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_TILDE_SLASH] = ACTIONS(991), + [sym_increment_operator] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_QMARK_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_assert] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_try] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_abstract] = ACTIONS(993), + [anon_sym_class] = ACTIONS(993), + [anon_sym_super] = ACTIONS(993), + [anon_sym_void] = ACTIONS(993), + [anon_sym_var] = ACTIONS(993), + [anon_sym_covariant] = ACTIONS(993), + [anon_sym_Function] = ACTIONS(993), + [anon_sym_get] = ACTIONS(993), + [anon_sym_set] = ACTIONS(993), + [anon_sym_new] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_final] = ACTIONS(993), + [anon_sym_external] = ACTIONS(993), + [anon_sym_this] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + }, + [208] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_pair] = STATE(3034), + [sym__element] = STATE(3034), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3004), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3004), + [sym_assignment_expression] = STATE(3004), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_spread_element] = STATE(3034), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_if_element] = STATE(3034), + [sym_for_element] = STATE(3034), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_for] = ACTIONS(510), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [209] = { + [sym_arguments] = STATE(252), + [sym_argument_part] = STATE(209), + [sym_type_arguments] = STATE(3456), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(209), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [anon_sym_POUND] = ACTIONS(1007), + [sym_decimal_integer_literal] = ACTIONS(1009), + [sym_hex_integer_literal] = ACTIONS(1009), + [sym_octal_integer_literal] = ACTIONS(1007), + [sym_binary_integer_literal] = ACTIONS(1007), + [sym_decimal_floating_point_literal] = ACTIONS(1007), + [sym_hex_floating_point_literal] = ACTIONS(1009), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1009), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1007), + [anon_sym_r] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1009), + [anon_sym_throw] = ACTIONS(1009), + [anon_sym_EQ] = ACTIONS(1009), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_AMP_EQ] = ACTIONS(1007), + [anon_sym_PIPE_EQ] = ACTIONS(1007), + [anon_sym_CARET_EQ] = ACTIONS(1007), + [anon_sym_PERCENT_EQ] = ACTIONS(1007), + [anon_sym_LT_LT_EQ] = ACTIONS(1007), + [anon_sym_GT_GT_EQ] = ACTIONS(1007), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1007), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_QMARK_QMARK] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1009), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [sym_equality_operator] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_EQ] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_CARET] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_GT_GT_GT] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_PERCENT] = ACTIONS(1009), + [anon_sym_TILDE_SLASH] = ACTIONS(1007), + [sym_increment_operator] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_is] = ACTIONS(1009), + [anon_sym_as] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_QMARK_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1007), + [anon_sym_assert] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(1009), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_super] = ACTIONS(1009), + [anon_sym_void] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_covariant] = ACTIONS(1009), + [anon_sym_Function] = ACTIONS(1009), + [anon_sym_get] = ACTIONS(1009), + [anon_sym_set] = ACTIONS(1009), + [anon_sym_new] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_final] = ACTIONS(1009), + [anon_sym_external] = ACTIONS(1009), + [anon_sym_this] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), + }, + [210] = { + [sym__cascade_subsection] = STATE(210), + [sym_unconditional_assignable_selector] = STATE(306), + [sym_assignable_selector] = STATE(206), + [aux_sym_cascade_section_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(1017), + [sym_identifier] = ACTIONS(1019), + [anon_sym_POUND] = ACTIONS(1017), + [sym_decimal_integer_literal] = ACTIONS(1019), + [sym_hex_integer_literal] = ACTIONS(1019), + [sym_octal_integer_literal] = ACTIONS(1017), + [sym_binary_integer_literal] = ACTIONS(1017), + [sym_decimal_floating_point_literal] = ACTIONS(1017), + [sym_hex_floating_point_literal] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1017), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1017), + [anon_sym_r] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1019), + [anon_sym_throw] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_QMARK_QMARK] = ACTIONS(1019), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_PIPE_PIPE] = ACTIONS(1017), + [anon_sym_AMP_AMP] = ACTIONS(1017), + [sym_equality_operator] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_GT] = ACTIONS(1019), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_CARET] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_LT_LT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1019), + [anon_sym_GT_GT_GT] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(1019), + [anon_sym_TILDE_SLASH] = ACTIONS(1017), + [sym_increment_operator] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_await] = ACTIONS(1019), + [anon_sym_is] = ACTIONS(1019), + [anon_sym_as] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_QMARK_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT] = ACTIONS(1017), + [anon_sym_assert] = ACTIONS(1019), + [anon_sym_switch] = ACTIONS(1019), + [anon_sym_do] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_yield] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_try] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1019), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_class] = ACTIONS(1019), + [anon_sym_super] = ACTIONS(1019), + [anon_sym_void] = ACTIONS(1019), + [anon_sym_var] = ACTIONS(1019), + [anon_sym_covariant] = ACTIONS(1019), + [anon_sym_Function] = ACTIONS(1019), + [anon_sym_get] = ACTIONS(1019), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_new] = ACTIONS(1019), + [anon_sym_const] = ACTIONS(1019), + [anon_sym_final] = ACTIONS(1019), + [anon_sym_external] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(1019), + [sym_comment] = ACTIONS(3), + }, + [211] = { + [aux_sym__function_type_tails] = STATE(211), + [sym__function_type_tail] = STATE(211), + [sym__function_builtin_identifier] = STATE(3060), + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(1030), + [sym_decimal_integer_literal] = ACTIONS(1032), + [sym_hex_integer_literal] = ACTIONS(1032), + [sym_octal_integer_literal] = ACTIONS(1030), + [sym_binary_integer_literal] = ACTIONS(1030), + [sym_decimal_floating_point_literal] = ACTIONS(1030), + [sym_hex_floating_point_literal] = ACTIONS(1032), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1030), + [anon_sym_r] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1032), + [anon_sym_throw] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_AMP_EQ] = ACTIONS(1030), + [anon_sym_PIPE_EQ] = ACTIONS(1030), + [anon_sym_CARET_EQ] = ACTIONS(1030), + [anon_sym_PERCENT_EQ] = ACTIONS(1030), + [anon_sym_LT_LT_EQ] = ACTIONS(1030), + [anon_sym_GT_GT_EQ] = ACTIONS(1030), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1030), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_QMARK_QMARK] = ACTIONS(1032), + [anon_sym_QMARK] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [sym_equality_operator] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1030), + [anon_sym_LT_EQ] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_GT_GT_GT] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1032), + [anon_sym_TILDE_SLASH] = ACTIONS(1030), + [sym_increment_operator] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_await] = ACTIONS(1032), + [anon_sym_is] = ACTIONS(1032), + [anon_sym_as] = ACTIONS(1032), + [anon_sym_DOT] = ACTIONS(1032), + [anon_sym_QMARK_DOT] = ACTIONS(1030), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_assert] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1032), + [anon_sym_class] = ACTIONS(1032), + [anon_sym_super] = ACTIONS(1032), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_var] = ACTIONS(1032), + [anon_sym_covariant] = ACTIONS(1032), + [anon_sym_Function] = ACTIONS(1034), + [anon_sym_get] = ACTIONS(1032), + [anon_sym_set] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_final] = ACTIONS(1032), + [anon_sym_external] = ACTIONS(1032), + [anon_sym_this] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [212] = { + [aux_sym__function_type_tails] = STATE(211), + [sym__function_type_tail] = STATE(211), + [sym__function_builtin_identifier] = STATE(3060), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1037), + [sym_decimal_integer_literal] = ACTIONS(1039), + [sym_hex_integer_literal] = ACTIONS(1039), + [sym_octal_integer_literal] = ACTIONS(1037), + [sym_binary_integer_literal] = ACTIONS(1037), + [sym_decimal_floating_point_literal] = ACTIONS(1037), + [sym_hex_floating_point_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1039), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1037), + [anon_sym_r] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1039), + [anon_sym_throw] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1039), + [anon_sym_PLUS_EQ] = ACTIONS(1037), + [anon_sym_DASH_EQ] = ACTIONS(1037), + [anon_sym_STAR_EQ] = ACTIONS(1037), + [anon_sym_SLASH_EQ] = ACTIONS(1037), + [anon_sym_AMP_EQ] = ACTIONS(1037), + [anon_sym_PIPE_EQ] = ACTIONS(1037), + [anon_sym_CARET_EQ] = ACTIONS(1037), + [anon_sym_PERCENT_EQ] = ACTIONS(1037), + [anon_sym_LT_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_GT_EQ] = ACTIONS(1037), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1037), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_QMARK_QMARK] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [sym_equality_operator] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_CARET] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_GT_GT_GT] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1039), + [anon_sym_PERCENT] = ACTIONS(1039), + [anon_sym_TILDE_SLASH] = ACTIONS(1037), + [sym_increment_operator] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1039), + [anon_sym_is] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1039), + [anon_sym_QMARK_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_assert] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_try] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_super] = ACTIONS(1039), + [anon_sym_void] = ACTIONS(1039), + [anon_sym_var] = ACTIONS(1039), + [anon_sym_covariant] = ACTIONS(1039), + [anon_sym_Function] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_new] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_final] = ACTIONS(1039), + [anon_sym_external] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + }, + [213] = { + [aux_sym__function_type_tails] = STATE(211), + [sym__function_type_tail] = STATE(211), + [sym__function_builtin_identifier] = STATE(3060), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1045), + [anon_sym_POUND] = ACTIONS(1043), + [sym_decimal_integer_literal] = ACTIONS(1045), + [sym_hex_integer_literal] = ACTIONS(1045), + [sym_octal_integer_literal] = ACTIONS(1043), + [sym_binary_integer_literal] = ACTIONS(1043), + [sym_decimal_floating_point_literal] = ACTIONS(1043), + [sym_hex_floating_point_literal] = ACTIONS(1045), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1043), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1043), + [anon_sym_r] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1045), + [anon_sym_throw] = ACTIONS(1045), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_QMARK_QMARK] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [sym_equality_operator] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_GT_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_TILDE_SLASH] = ACTIONS(1043), + [sym_increment_operator] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_is] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_QMARK_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(1043), + [anon_sym_assert] = ACTIONS(1045), + [anon_sym_switch] = ACTIONS(1045), + [anon_sym_do] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_abstract] = ACTIONS(1045), + [anon_sym_class] = ACTIONS(1045), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_void] = ACTIONS(1045), + [anon_sym_var] = ACTIONS(1045), + [anon_sym_covariant] = ACTIONS(1045), + [anon_sym_Function] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1045), + [anon_sym_set] = ACTIONS(1045), + [anon_sym_new] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_final] = ACTIONS(1045), + [anon_sym_external] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(1045), + [sym_comment] = ACTIONS(3), + }, + [214] = { + [sym_additive_operator] = STATE(601), + [aux_sym_additive_expression_repeat1] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1049), + [anon_sym_POUND] = ACTIONS(1047), + [sym_decimal_integer_literal] = ACTIONS(1049), + [sym_hex_integer_literal] = ACTIONS(1049), + [sym_octal_integer_literal] = ACTIONS(1047), + [sym_binary_integer_literal] = ACTIONS(1047), + [sym_decimal_floating_point_literal] = ACTIONS(1047), + [sym_hex_floating_point_literal] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1047), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1047), + [anon_sym_r] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1049), + [anon_sym_throw] = ACTIONS(1049), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_QMARK_QMARK] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1049), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [sym_equality_operator] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_GT_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_TILDE_SLASH] = ACTIONS(1047), + [sym_increment_operator] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_is] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_QMARK_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_switch] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_abstract] = ACTIONS(1049), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_super] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1049), + [anon_sym_var] = ACTIONS(1049), + [anon_sym_covariant] = ACTIONS(1049), + [anon_sym_Function] = ACTIONS(1049), + [anon_sym_get] = ACTIONS(1049), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_new] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_final] = ACTIONS(1049), + [anon_sym_external] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), + }, + [215] = { + [sym_multiplicative_operator] = STATE(598), + [aux_sym_multiplicative_expression_repeat1] = STATE(215), [ts_builtin_sym_end] = ACTIONS(588), [sym_identifier] = ACTIONS(590), [anon_sym_POUND] = ACTIONS(588), @@ -34455,7 +35912,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(588), [anon_sym_QMARK_QMARK] = ACTIONS(590), [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_PIPE_PIPE] = ACTIONS(588), [anon_sym_AMP_AMP] = ACTIONS(588), [sym_equality_operator] = ACTIONS(588), [anon_sym_LT] = ACTIONS(590), @@ -34470,10 +35927,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_GT] = ACTIONS(590), [anon_sym_PLUS] = ACTIONS(590), [anon_sym_DASH] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_TILDE_SLASH] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_PERCENT] = ACTIONS(1051), + [anon_sym_TILDE_SLASH] = ACTIONS(1054), [sym_increment_operator] = ACTIONS(588), [anon_sym_BANG] = ACTIONS(590), [anon_sym_TILDE] = ACTIONS(590), @@ -34512,9614 +35969,2512 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(590), [sym_comment] = ACTIONS(3), }, - [206] = { - [aux_sym__if_null_expression] = STATE(206), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [anon_sym_POUND] = ACTIONS(1105), - [sym_decimal_integer_literal] = ACTIONS(1107), - [sym_hex_integer_literal] = ACTIONS(1107), - [sym_octal_integer_literal] = ACTIONS(1105), - [sym_binary_integer_literal] = ACTIONS(1105), - [sym_decimal_floating_point_literal] = ACTIONS(1105), - [sym_hex_floating_point_literal] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1105), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_r] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_null] = ACTIONS(1107), - [anon_sym_throw] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_QMARK_QMARK] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [sym_equality_operator] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_GT_GT_GT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(1107), - [anon_sym_TILDE_SLASH] = ACTIONS(1105), - [sym_increment_operator] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_is] = ACTIONS(1107), - [anon_sym_as] = ACTIONS(1107), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_QMARK_DOT] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_switch] = ACTIONS(1107), - [anon_sym_do] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_abstract] = ACTIONS(1107), - [anon_sym_class] = ACTIONS(1107), - [anon_sym_super] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_covariant] = ACTIONS(1107), - [anon_sym_Function] = ACTIONS(1107), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1107), - [anon_sym_new] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_final] = ACTIONS(1107), - [anon_sym_external] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1107), + [216] = { + [sym_type_arguments] = STATE(286), + [sym__type_args] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1057), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1057), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1057), + [anon_sym_r] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1057), + [anon_sym_DASH_EQ] = ACTIONS(1057), + [anon_sym_STAR_EQ] = ACTIONS(1057), + [anon_sym_SLASH_EQ] = ACTIONS(1057), + [anon_sym_AMP_EQ] = ACTIONS(1057), + [anon_sym_PIPE_EQ] = ACTIONS(1057), + [anon_sym_CARET_EQ] = ACTIONS(1057), + [anon_sym_PERCENT_EQ] = ACTIONS(1057), + [anon_sym_LT_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_GT_EQ] = ACTIONS(1057), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1057), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_QMARK_QMARK] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [sym_equality_operator] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_GT_GT_GT] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_TILDE_SLASH] = ACTIONS(1057), + [sym_increment_operator] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1059), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_QMARK_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_super] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_var] = ACTIONS(1059), + [anon_sym_covariant] = ACTIONS(1059), + [anon_sym_Function] = ACTIONS(1059), + [anon_sym_get] = ACTIONS(1059), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_const] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_external] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(1059), [sym_comment] = ACTIONS(3), }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(1112), - [sym_identifier] = ACTIONS(1114), - [anon_sym_POUND] = ACTIONS(1112), - [sym_decimal_integer_literal] = ACTIONS(1114), - [sym_hex_integer_literal] = ACTIONS(1114), - [sym_octal_integer_literal] = ACTIONS(1112), - [sym_binary_integer_literal] = ACTIONS(1112), - [sym_decimal_floating_point_literal] = ACTIONS(1112), - [sym_hex_floating_point_literal] = ACTIONS(1114), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1112), - [anon_sym_r] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_null] = ACTIONS(1114), - [anon_sym_throw] = ACTIONS(1114), - [anon_sym_EQ] = ACTIONS(1114), - [anon_sym_PLUS_EQ] = ACTIONS(1112), - [anon_sym_DASH_EQ] = ACTIONS(1112), - [anon_sym_STAR_EQ] = ACTIONS(1112), - [anon_sym_SLASH_EQ] = ACTIONS(1112), - [anon_sym_AMP_EQ] = ACTIONS(1112), - [anon_sym_PIPE_EQ] = ACTIONS(1112), - [anon_sym_CARET_EQ] = ACTIONS(1112), - [anon_sym_PERCENT_EQ] = ACTIONS(1112), - [anon_sym_LT_LT_EQ] = ACTIONS(1112), - [anon_sym_GT_GT_EQ] = ACTIONS(1112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1112), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_QMARK_QMARK] = ACTIONS(1114), - [anon_sym_QMARK] = ACTIONS(1114), - [anon_sym_PIPE_PIPE] = ACTIONS(1112), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [sym_equality_operator] = ACTIONS(1112), - [anon_sym_LT] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1114), - [anon_sym_GT_EQ] = ACTIONS(1112), - [anon_sym_LT_EQ] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_LT_LT] = ACTIONS(1114), - [anon_sym_GT_GT] = ACTIONS(1114), - [anon_sym_GT_GT_GT] = ACTIONS(1114), - [anon_sym_PLUS] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_SLASH] = ACTIONS(1114), - [anon_sym_PERCENT] = ACTIONS(1114), - [anon_sym_TILDE_SLASH] = ACTIONS(1112), - [sym_increment_operator] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1114), - [anon_sym_is] = ACTIONS(1114), - [anon_sym_as] = ACTIONS(1114), - [anon_sym_DOT] = ACTIONS(1114), - [anon_sym_QMARK_DOT] = ACTIONS(1112), - [anon_sym_DOT_DOT] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1114), - [anon_sym_switch] = ACTIONS(1114), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_while] = ACTIONS(1114), - [anon_sym_break] = ACTIONS(1114), - [anon_sym_continue] = ACTIONS(1114), - [anon_sym_yield] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(1114), - [anon_sym_try] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1114), - [anon_sym_abstract] = ACTIONS(1114), - [anon_sym_class] = ACTIONS(1114), - [anon_sym_super] = ACTIONS(1114), - [anon_sym_void] = ACTIONS(1114), - [anon_sym_var] = ACTIONS(1114), - [anon_sym_covariant] = ACTIONS(1114), - [anon_sym_Function] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1114), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_final] = ACTIONS(1114), - [anon_sym_external] = ACTIONS(1114), - [anon_sym_this] = ACTIONS(1114), + [217] = { + [sym_shift_operator] = STATE(688), + [aux_sym_shift_expression_repeat1] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(598), + [sym_hex_integer_literal] = ACTIONS(598), + [sym_octal_integer_literal] = ACTIONS(596), + [sym_binary_integer_literal] = ACTIONS(596), + [sym_decimal_floating_point_literal] = ACTIONS(596), + [sym_hex_floating_point_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), + [anon_sym_r] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_null] = ACTIONS(598), + [anon_sym_throw] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(596), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_QMARK_QMARK] = ACTIONS(598), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [sym_equality_operator] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_GT_GT_GT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_TILDE_SLASH] = ACTIONS(596), + [sym_increment_operator] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_await] = ACTIONS(598), + [anon_sym_is] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(598), + [anon_sym_QMARK_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_do] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_try] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_abstract] = ACTIONS(598), + [anon_sym_class] = ACTIONS(598), + [anon_sym_super] = ACTIONS(598), + [anon_sym_void] = ACTIONS(598), + [anon_sym_var] = ACTIONS(598), + [anon_sym_covariant] = ACTIONS(598), + [anon_sym_Function] = ACTIONS(598), + [anon_sym_get] = ACTIONS(598), + [anon_sym_set] = ACTIONS(598), + [anon_sym_new] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_final] = ACTIONS(598), + [anon_sym_external] = ACTIONS(598), + [anon_sym_this] = ACTIONS(598), [sym_comment] = ACTIONS(3), }, - [208] = { - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_identifier] = ACTIONS(1118), - [anon_sym_POUND] = ACTIONS(1116), - [sym_decimal_integer_literal] = ACTIONS(1118), - [sym_hex_integer_literal] = ACTIONS(1118), - [sym_octal_integer_literal] = ACTIONS(1116), - [sym_binary_integer_literal] = ACTIONS(1116), - [sym_decimal_floating_point_literal] = ACTIONS(1116), - [sym_hex_floating_point_literal] = ACTIONS(1118), - [anon_sym_true] = ACTIONS(1118), - [anon_sym_false] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1116), - [anon_sym_r] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1118), - [anon_sym_throw] = ACTIONS(1118), - [anon_sym_EQ] = ACTIONS(1118), - [anon_sym_PLUS_EQ] = ACTIONS(1116), - [anon_sym_DASH_EQ] = ACTIONS(1116), - [anon_sym_STAR_EQ] = ACTIONS(1116), - [anon_sym_SLASH_EQ] = ACTIONS(1116), - [anon_sym_AMP_EQ] = ACTIONS(1116), - [anon_sym_PIPE_EQ] = ACTIONS(1116), - [anon_sym_CARET_EQ] = ACTIONS(1116), - [anon_sym_PERCENT_EQ] = ACTIONS(1116), - [anon_sym_LT_LT_EQ] = ACTIONS(1116), - [anon_sym_GT_GT_EQ] = ACTIONS(1116), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1116), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_QMARK_QMARK] = ACTIONS(1118), - [anon_sym_QMARK] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1116), - [anon_sym_AMP_AMP] = ACTIONS(1116), - [sym_equality_operator] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_GT] = ACTIONS(1118), - [anon_sym_GT_EQ] = ACTIONS(1116), - [anon_sym_LT_EQ] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_CARET] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1118), - [anon_sym_GT_GT] = ACTIONS(1118), - [anon_sym_GT_GT_GT] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_TILDE_SLASH] = ACTIONS(1116), - [sym_increment_operator] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_await] = ACTIONS(1118), - [anon_sym_is] = ACTIONS(1118), - [anon_sym_as] = ACTIONS(1118), - [anon_sym_DOT] = ACTIONS(1118), - [anon_sym_QMARK_DOT] = ACTIONS(1116), - [anon_sym_DOT_DOT] = ACTIONS(1116), - [anon_sym_assert] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_yield] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1118), - [anon_sym_try] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1118), - [anon_sym_abstract] = ACTIONS(1118), - [anon_sym_class] = ACTIONS(1118), - [anon_sym_super] = ACTIONS(1118), - [anon_sym_void] = ACTIONS(1118), - [anon_sym_var] = ACTIONS(1118), - [anon_sym_covariant] = ACTIONS(1118), - [anon_sym_Function] = ACTIONS(1118), - [anon_sym_get] = ACTIONS(1118), - [anon_sym_set] = ACTIONS(1118), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_const] = ACTIONS(1118), - [anon_sym_final] = ACTIONS(1118), - [anon_sym_external] = ACTIONS(1118), - [anon_sym_this] = ACTIONS(1118), + [218] = { + [sym_type_parameters] = STATE(3448), + [sym_parameter_type_list] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1057), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1057), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1057), + [anon_sym_r] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1057), + [anon_sym_DASH_EQ] = ACTIONS(1057), + [anon_sym_STAR_EQ] = ACTIONS(1057), + [anon_sym_SLASH_EQ] = ACTIONS(1057), + [anon_sym_AMP_EQ] = ACTIONS(1057), + [anon_sym_PIPE_EQ] = ACTIONS(1057), + [anon_sym_CARET_EQ] = ACTIONS(1057), + [anon_sym_PERCENT_EQ] = ACTIONS(1057), + [anon_sym_LT_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_GT_EQ] = ACTIONS(1057), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1057), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1057), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_QMARK_QMARK] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [sym_equality_operator] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_GT_GT_GT] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_TILDE_SLASH] = ACTIONS(1057), + [sym_increment_operator] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1059), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_QMARK_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_super] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_var] = ACTIONS(1059), + [anon_sym_covariant] = ACTIONS(1059), + [anon_sym_Function] = ACTIONS(1059), + [anon_sym_get] = ACTIONS(1059), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_const] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_external] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(1059), [sym_comment] = ACTIONS(3), }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_identifier] = ACTIONS(1122), - [anon_sym_POUND] = ACTIONS(1120), - [sym_decimal_integer_literal] = ACTIONS(1122), - [sym_hex_integer_literal] = ACTIONS(1122), - [sym_octal_integer_literal] = ACTIONS(1120), - [sym_binary_integer_literal] = ACTIONS(1120), - [sym_decimal_floating_point_literal] = ACTIONS(1120), - [sym_hex_floating_point_literal] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1122), - [anon_sym_false] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1120), - [anon_sym_r] = ACTIONS(1122), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_COMMA] = ACTIONS(1120), - [anon_sym_null] = ACTIONS(1122), - [anon_sym_throw] = ACTIONS(1122), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_PLUS_EQ] = ACTIONS(1120), - [anon_sym_DASH_EQ] = ACTIONS(1120), - [anon_sym_STAR_EQ] = ACTIONS(1120), - [anon_sym_SLASH_EQ] = ACTIONS(1120), - [anon_sym_AMP_EQ] = ACTIONS(1120), - [anon_sym_PIPE_EQ] = ACTIONS(1120), - [anon_sym_CARET_EQ] = ACTIONS(1120), - [anon_sym_PERCENT_EQ] = ACTIONS(1120), - [anon_sym_LT_LT_EQ] = ACTIONS(1120), - [anon_sym_GT_GT_EQ] = ACTIONS(1120), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1120), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(1120), - [anon_sym_QMARK_QMARK] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [sym_equality_operator] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_CARET] = ACTIONS(1122), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1122), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_GT_GT_GT] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1122), - [anon_sym_SLASH] = ACTIONS(1122), - [anon_sym_PERCENT] = ACTIONS(1122), - [anon_sym_TILDE_SLASH] = ACTIONS(1120), - [sym_increment_operator] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_await] = ACTIONS(1122), - [anon_sym_is] = ACTIONS(1122), - [anon_sym_as] = ACTIONS(1122), - [anon_sym_DOT] = ACTIONS(1122), - [anon_sym_QMARK_DOT] = ACTIONS(1120), - [anon_sym_DOT_DOT] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_yield] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_try] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_abstract] = ACTIONS(1122), - [anon_sym_class] = ACTIONS(1122), - [anon_sym_super] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_var] = ACTIONS(1122), - [anon_sym_covariant] = ACTIONS(1122), - [anon_sym_Function] = ACTIONS(1122), - [anon_sym_get] = ACTIONS(1122), - [anon_sym_set] = ACTIONS(1122), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_final] = ACTIONS(1122), - [anon_sym_external] = ACTIONS(1122), - [anon_sym_this] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(785), - [sym_decimal_integer_literal] = ACTIONS(787), - [sym_hex_integer_literal] = ACTIONS(787), - [sym_octal_integer_literal] = ACTIONS(785), - [sym_binary_integer_literal] = ACTIONS(785), - [sym_decimal_floating_point_literal] = ACTIONS(785), - [sym_hex_floating_point_literal] = ACTIONS(787), - [anon_sym_true] = ACTIONS(787), - [anon_sym_false] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(785), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), - [anon_sym_r] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [anon_sym_throw] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_PLUS_EQ] = ACTIONS(785), - [anon_sym_DASH_EQ] = ACTIONS(785), - [anon_sym_STAR_EQ] = ACTIONS(785), - [anon_sym_SLASH_EQ] = ACTIONS(785), - [anon_sym_AMP_EQ] = ACTIONS(785), - [anon_sym_PIPE_EQ] = ACTIONS(785), - [anon_sym_CARET_EQ] = ACTIONS(785), - [anon_sym_PERCENT_EQ] = ACTIONS(785), - [anon_sym_LT_LT_EQ] = ACTIONS(785), - [anon_sym_GT_GT_EQ] = ACTIONS(785), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(785), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_QMARK_QMARK] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [sym_equality_operator] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(787), - [anon_sym_GT_GT_GT] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(787), - [anon_sym_TILDE_SLASH] = ACTIONS(785), - [sym_increment_operator] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [anon_sym_await] = ACTIONS(787), - [anon_sym_is] = ACTIONS(787), - [anon_sym_as] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_QMARK_DOT] = ACTIONS(785), - [anon_sym_DOT_DOT] = ACTIONS(785), - [anon_sym_assert] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(787), - [anon_sym_do] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(787), - [anon_sym_yield] = ACTIONS(787), - [anon_sym_return] = ACTIONS(787), - [anon_sym_try] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(787), - [anon_sym_abstract] = ACTIONS(787), - [anon_sym_class] = ACTIONS(787), - [anon_sym_super] = ACTIONS(787), - [anon_sym_void] = ACTIONS(787), - [anon_sym_var] = ACTIONS(787), - [anon_sym_covariant] = ACTIONS(787), - [anon_sym_Function] = ACTIONS(787), - [anon_sym_get] = ACTIONS(787), - [anon_sym_set] = ACTIONS(787), - [anon_sym_new] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_final] = ACTIONS(787), - [anon_sym_external] = ACTIONS(787), - [anon_sym_this] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [anon_sym_POUND] = ACTIONS(1124), - [sym_decimal_integer_literal] = ACTIONS(1126), - [sym_hex_integer_literal] = ACTIONS(1126), - [sym_octal_integer_literal] = ACTIONS(1124), - [sym_binary_integer_literal] = ACTIONS(1124), - [sym_decimal_floating_point_literal] = ACTIONS(1124), - [sym_hex_floating_point_literal] = ACTIONS(1126), - [anon_sym_true] = ACTIONS(1126), - [anon_sym_false] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1124), - [anon_sym_r] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1126), - [anon_sym_throw] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_EQ] = ACTIONS(1131), - [anon_sym_DASH_EQ] = ACTIONS(1131), - [anon_sym_STAR_EQ] = ACTIONS(1131), - [anon_sym_SLASH_EQ] = ACTIONS(1131), - [anon_sym_AMP_EQ] = ACTIONS(1131), - [anon_sym_PIPE_EQ] = ACTIONS(1131), - [anon_sym_CARET_EQ] = ACTIONS(1131), - [anon_sym_PERCENT_EQ] = ACTIONS(1131), - [anon_sym_LT_LT_EQ] = ACTIONS(1131), - [anon_sym_GT_GT_EQ] = ACTIONS(1131), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1131), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_QMARK_QMARK] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1124), - [anon_sym_AMP_AMP] = ACTIONS(1124), - [sym_equality_operator] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_GT_EQ] = ACTIONS(1124), - [anon_sym_LT_EQ] = ACTIONS(1124), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_GT_GT_GT] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_TILDE_SLASH] = ACTIONS(1124), - [sym_increment_operator] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_await] = ACTIONS(1126), - [anon_sym_is] = ACTIONS(1126), - [anon_sym_as] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_QMARK_DOT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1124), - [anon_sym_assert] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_abstract] = ACTIONS(1126), - [anon_sym_class] = ACTIONS(1126), - [anon_sym_super] = ACTIONS(1126), - [anon_sym_void] = ACTIONS(1126), - [anon_sym_var] = ACTIONS(1126), - [anon_sym_covariant] = ACTIONS(1126), - [anon_sym_Function] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_new] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1126), - [anon_sym_external] = ACTIONS(1126), - [anon_sym_this] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [sym_decimal_integer_literal] = ACTIONS(1136), - [sym_hex_integer_literal] = ACTIONS(1136), - [sym_octal_integer_literal] = ACTIONS(1134), - [sym_binary_integer_literal] = ACTIONS(1134), - [sym_decimal_floating_point_literal] = ACTIONS(1134), - [sym_hex_floating_point_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1134), - [anon_sym_r] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_null] = ACTIONS(1136), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1134), - [anon_sym_DASH_EQ] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1134), - [anon_sym_SLASH_EQ] = ACTIONS(1134), - [anon_sym_AMP_EQ] = ACTIONS(1134), - [anon_sym_PIPE_EQ] = ACTIONS(1134), - [anon_sym_CARET_EQ] = ACTIONS(1134), - [anon_sym_PERCENT_EQ] = ACTIONS(1134), - [anon_sym_LT_LT_EQ] = ACTIONS(1134), - [anon_sym_GT_GT_EQ] = ACTIONS(1134), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1134), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_QMARK_QMARK] = ACTIONS(1136), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1134), - [sym_equality_operator] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_EQ] = ACTIONS(1134), - [anon_sym_LT_EQ] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1136), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_GT_GT_GT] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_SLASH] = ACTIONS(1136), - [anon_sym_PERCENT] = ACTIONS(1136), - [anon_sym_TILDE_SLASH] = ACTIONS(1134), - [sym_increment_operator] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_is] = ACTIONS(1136), - [anon_sym_as] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1136), - [anon_sym_QMARK_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_assert] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_abstract] = ACTIONS(1136), - [anon_sym_class] = ACTIONS(1136), - [anon_sym_super] = ACTIONS(1136), - [anon_sym_void] = ACTIONS(1136), - [anon_sym_var] = ACTIONS(1136), - [anon_sym_covariant] = ACTIONS(1136), - [anon_sym_Function] = ACTIONS(1136), - [anon_sym_get] = ACTIONS(1136), - [anon_sym_set] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_final] = ACTIONS(1136), - [anon_sym_external] = ACTIONS(1136), - [anon_sym_this] = ACTIONS(1136), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [sym_decimal_integer_literal] = ACTIONS(1140), - [sym_hex_integer_literal] = ACTIONS(1140), - [sym_octal_integer_literal] = ACTIONS(1138), - [sym_binary_integer_literal] = ACTIONS(1138), - [sym_decimal_floating_point_literal] = ACTIONS(1138), - [sym_hex_floating_point_literal] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1138), - [anon_sym_r] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_COMMA] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(1140), - [anon_sym_throw] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1140), - [anon_sym_PLUS_EQ] = ACTIONS(1138), - [anon_sym_DASH_EQ] = ACTIONS(1138), - [anon_sym_STAR_EQ] = ACTIONS(1138), - [anon_sym_SLASH_EQ] = ACTIONS(1138), - [anon_sym_AMP_EQ] = ACTIONS(1138), - [anon_sym_PIPE_EQ] = ACTIONS(1138), - [anon_sym_CARET_EQ] = ACTIONS(1138), - [anon_sym_PERCENT_EQ] = ACTIONS(1138), - [anon_sym_LT_LT_EQ] = ACTIONS(1138), - [anon_sym_GT_GT_EQ] = ACTIONS(1138), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1138), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1138), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_QMARK_QMARK] = ACTIONS(1140), - [anon_sym_QMARK] = ACTIONS(1140), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [sym_equality_operator] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_GT_EQ] = ACTIONS(1138), - [anon_sym_LT_EQ] = ACTIONS(1138), - [anon_sym_PIPE] = ACTIONS(1140), - [anon_sym_CARET] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_LT_LT] = ACTIONS(1140), - [anon_sym_GT_GT] = ACTIONS(1140), - [anon_sym_GT_GT_GT] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_SLASH] = ACTIONS(1140), - [anon_sym_PERCENT] = ACTIONS(1140), - [anon_sym_TILDE_SLASH] = ACTIONS(1138), - [sym_increment_operator] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_await] = ACTIONS(1140), - [anon_sym_is] = ACTIONS(1140), - [anon_sym_as] = ACTIONS(1140), - [anon_sym_DOT] = ACTIONS(1140), - [anon_sym_QMARK_DOT] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1138), - [anon_sym_assert] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_try] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_super] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1140), - [anon_sym_var] = ACTIONS(1140), - [anon_sym_covariant] = ACTIONS(1140), - [anon_sym_Function] = ACTIONS(1140), - [anon_sym_get] = ACTIONS(1140), - [anon_sym_set] = ACTIONS(1140), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_external] = ACTIONS(1140), - [anon_sym_this] = ACTIONS(1140), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_identifier] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(1142), - [sym_decimal_integer_literal] = ACTIONS(1144), - [sym_hex_integer_literal] = ACTIONS(1144), - [sym_octal_integer_literal] = ACTIONS(1142), - [sym_binary_integer_literal] = ACTIONS(1142), - [sym_decimal_floating_point_literal] = ACTIONS(1142), - [sym_hex_floating_point_literal] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1144), - [anon_sym_false] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1142), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1142), - [anon_sym_r] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_COMMA] = ACTIONS(1142), - [anon_sym_null] = ACTIONS(1144), - [anon_sym_throw] = ACTIONS(1144), - [anon_sym_EQ] = ACTIONS(1144), - [anon_sym_PLUS_EQ] = ACTIONS(1142), - [anon_sym_DASH_EQ] = ACTIONS(1142), - [anon_sym_STAR_EQ] = ACTIONS(1142), - [anon_sym_SLASH_EQ] = ACTIONS(1142), - [anon_sym_AMP_EQ] = ACTIONS(1142), - [anon_sym_PIPE_EQ] = ACTIONS(1142), - [anon_sym_CARET_EQ] = ACTIONS(1142), - [anon_sym_PERCENT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_GT_EQ] = ACTIONS(1142), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1142), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1142), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_QMARK_QMARK] = ACTIONS(1144), - [anon_sym_QMARK] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1142), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [sym_equality_operator] = ACTIONS(1142), - [anon_sym_LT] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1144), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_GT_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1144), - [anon_sym_TILDE_SLASH] = ACTIONS(1142), - [sym_increment_operator] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_is] = ACTIONS(1144), - [anon_sym_as] = ACTIONS(1144), - [anon_sym_DOT] = ACTIONS(1144), - [anon_sym_QMARK_DOT] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_try] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_abstract] = ACTIONS(1144), - [anon_sym_class] = ACTIONS(1144), - [anon_sym_super] = ACTIONS(1144), - [anon_sym_void] = ACTIONS(1144), - [anon_sym_var] = ACTIONS(1144), - [anon_sym_covariant] = ACTIONS(1144), - [anon_sym_Function] = ACTIONS(1144), - [anon_sym_get] = ACTIONS(1144), - [anon_sym_set] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_final] = ACTIONS(1144), - [anon_sym_external] = ACTIONS(1144), - [anon_sym_this] = ACTIONS(1144), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [sym_decimal_integer_literal] = ACTIONS(1148), - [sym_hex_integer_literal] = ACTIONS(1148), - [sym_octal_integer_literal] = ACTIONS(1146), - [sym_binary_integer_literal] = ACTIONS(1146), - [sym_decimal_floating_point_literal] = ACTIONS(1146), - [sym_hex_floating_point_literal] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1146), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1146), - [anon_sym_r] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_throw] = ACTIONS(1148), - [anon_sym_EQ] = ACTIONS(1148), - [anon_sym_PLUS_EQ] = ACTIONS(1146), - [anon_sym_DASH_EQ] = ACTIONS(1146), - [anon_sym_STAR_EQ] = ACTIONS(1146), - [anon_sym_SLASH_EQ] = ACTIONS(1146), - [anon_sym_AMP_EQ] = ACTIONS(1146), - [anon_sym_PIPE_EQ] = ACTIONS(1146), - [anon_sym_CARET_EQ] = ACTIONS(1146), - [anon_sym_PERCENT_EQ] = ACTIONS(1146), - [anon_sym_LT_LT_EQ] = ACTIONS(1146), - [anon_sym_GT_GT_EQ] = ACTIONS(1146), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1146), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1146), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_QMARK_QMARK] = ACTIONS(1148), - [anon_sym_QMARK] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [sym_equality_operator] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1146), - [anon_sym_LT_EQ] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_GT_GT_GT] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_PERCENT] = ACTIONS(1148), - [anon_sym_TILDE_SLASH] = ACTIONS(1146), - [sym_increment_operator] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_await] = ACTIONS(1148), - [anon_sym_is] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1148), - [anon_sym_QMARK_DOT] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1148), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_super] = ACTIONS(1148), - [anon_sym_void] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [anon_sym_covariant] = ACTIONS(1148), - [anon_sym_Function] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_external] = ACTIONS(1148), - [anon_sym_this] = ACTIONS(1148), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [sym_decimal_integer_literal] = ACTIONS(1152), - [sym_hex_integer_literal] = ACTIONS(1152), - [sym_octal_integer_literal] = ACTIONS(1150), - [sym_binary_integer_literal] = ACTIONS(1150), - [sym_decimal_floating_point_literal] = ACTIONS(1150), - [sym_hex_floating_point_literal] = ACTIONS(1152), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1150), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1150), - [anon_sym_r] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1152), - [anon_sym_throw] = ACTIONS(1152), - [anon_sym_EQ] = ACTIONS(1152), - [anon_sym_PLUS_EQ] = ACTIONS(1150), - [anon_sym_DASH_EQ] = ACTIONS(1150), - [anon_sym_STAR_EQ] = ACTIONS(1150), - [anon_sym_SLASH_EQ] = ACTIONS(1150), - [anon_sym_AMP_EQ] = ACTIONS(1150), - [anon_sym_PIPE_EQ] = ACTIONS(1150), - [anon_sym_CARET_EQ] = ACTIONS(1150), - [anon_sym_PERCENT_EQ] = ACTIONS(1150), - [anon_sym_LT_LT_EQ] = ACTIONS(1150), - [anon_sym_GT_GT_EQ] = ACTIONS(1150), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1150), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_QMARK_QMARK] = ACTIONS(1152), - [anon_sym_QMARK] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [sym_equality_operator] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_CARET] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1152), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_GT_GT_GT] = ACTIONS(1152), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(1152), - [anon_sym_PERCENT] = ACTIONS(1152), - [anon_sym_TILDE_SLASH] = ACTIONS(1150), - [sym_increment_operator] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_await] = ACTIONS(1152), - [anon_sym_is] = ACTIONS(1152), - [anon_sym_as] = ACTIONS(1152), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_QMARK_DOT] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_assert] = ACTIONS(1152), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_class] = ACTIONS(1152), - [anon_sym_super] = ACTIONS(1152), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_var] = ACTIONS(1152), - [anon_sym_covariant] = ACTIONS(1152), - [anon_sym_Function] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_new] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_final] = ACTIONS(1152), - [anon_sym_external] = ACTIONS(1152), - [anon_sym_this] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [sym_decimal_integer_literal] = ACTIONS(1156), - [sym_hex_integer_literal] = ACTIONS(1156), - [sym_octal_integer_literal] = ACTIONS(1154), - [sym_binary_integer_literal] = ACTIONS(1154), - [sym_decimal_floating_point_literal] = ACTIONS(1154), - [sym_hex_floating_point_literal] = ACTIONS(1156), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1154), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1154), - [anon_sym_r] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_throw] = ACTIONS(1156), - [anon_sym_EQ] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1154), - [anon_sym_DASH_EQ] = ACTIONS(1154), - [anon_sym_STAR_EQ] = ACTIONS(1154), - [anon_sym_SLASH_EQ] = ACTIONS(1154), - [anon_sym_AMP_EQ] = ACTIONS(1154), - [anon_sym_PIPE_EQ] = ACTIONS(1154), - [anon_sym_CARET_EQ] = ACTIONS(1154), - [anon_sym_PERCENT_EQ] = ACTIONS(1154), - [anon_sym_LT_LT_EQ] = ACTIONS(1154), - [anon_sym_GT_GT_EQ] = ACTIONS(1154), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1154), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_QMARK_QMARK] = ACTIONS(1156), - [anon_sym_QMARK] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1154), - [anon_sym_AMP_AMP] = ACTIONS(1154), - [sym_equality_operator] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_CARET] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1156), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_GT_GT_GT] = ACTIONS(1156), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1156), - [anon_sym_PERCENT] = ACTIONS(1156), - [anon_sym_TILDE_SLASH] = ACTIONS(1154), - [sym_increment_operator] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_is] = ACTIONS(1156), - [anon_sym_as] = ACTIONS(1156), - [anon_sym_DOT] = ACTIONS(1156), - [anon_sym_QMARK_DOT] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_assert] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_AT] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_abstract] = ACTIONS(1156), - [anon_sym_class] = ACTIONS(1156), - [anon_sym_super] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_var] = ACTIONS(1156), - [anon_sym_covariant] = ACTIONS(1156), - [anon_sym_Function] = ACTIONS(1156), - [anon_sym_get] = ACTIONS(1156), - [anon_sym_set] = ACTIONS(1156), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_final] = ACTIONS(1156), - [anon_sym_external] = ACTIONS(1156), - [anon_sym_this] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [sym_decimal_integer_literal] = ACTIONS(1160), - [sym_hex_integer_literal] = ACTIONS(1160), - [sym_octal_integer_literal] = ACTIONS(1158), - [sym_binary_integer_literal] = ACTIONS(1158), - [sym_decimal_floating_point_literal] = ACTIONS(1158), - [sym_hex_floating_point_literal] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1158), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1158), - [anon_sym_r] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_throw] = ACTIONS(1160), - [anon_sym_EQ] = ACTIONS(1160), - [anon_sym_PLUS_EQ] = ACTIONS(1158), - [anon_sym_DASH_EQ] = ACTIONS(1158), - [anon_sym_STAR_EQ] = ACTIONS(1158), - [anon_sym_SLASH_EQ] = ACTIONS(1158), - [anon_sym_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_EQ] = ACTIONS(1158), - [anon_sym_CARET_EQ] = ACTIONS(1158), - [anon_sym_PERCENT_EQ] = ACTIONS(1158), - [anon_sym_LT_LT_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_QMARK_QMARK] = ACTIONS(1160), - [anon_sym_QMARK] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(1158), - [anon_sym_AMP_AMP] = ACTIONS(1158), - [sym_equality_operator] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_CARET] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1160), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_GT_GT_GT] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_PERCENT] = ACTIONS(1160), - [anon_sym_TILDE_SLASH] = ACTIONS(1158), - [sym_increment_operator] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_await] = ACTIONS(1160), - [anon_sym_is] = ACTIONS(1160), - [anon_sym_as] = ACTIONS(1160), - [anon_sym_DOT] = ACTIONS(1160), - [anon_sym_QMARK_DOT] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_assert] = ACTIONS(1160), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_try] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(1160), - [anon_sym_super] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_var] = ACTIONS(1160), - [anon_sym_covariant] = ACTIONS(1160), - [anon_sym_Function] = ACTIONS(1160), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_new] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_final] = ACTIONS(1160), - [anon_sym_external] = ACTIONS(1160), - [anon_sym_this] = ACTIONS(1160), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [sym_decimal_integer_literal] = ACTIONS(1164), - [sym_hex_integer_literal] = ACTIONS(1164), - [sym_octal_integer_literal] = ACTIONS(1162), - [sym_binary_integer_literal] = ACTIONS(1162), - [sym_decimal_floating_point_literal] = ACTIONS(1162), - [sym_hex_floating_point_literal] = ACTIONS(1164), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1162), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1162), - [anon_sym_r] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_COMMA] = ACTIONS(1162), - [anon_sym_null] = ACTIONS(1164), - [anon_sym_throw] = ACTIONS(1164), - [anon_sym_EQ] = ACTIONS(1164), - [anon_sym_PLUS_EQ] = ACTIONS(1162), - [anon_sym_DASH_EQ] = ACTIONS(1162), - [anon_sym_STAR_EQ] = ACTIONS(1162), - [anon_sym_SLASH_EQ] = ACTIONS(1162), - [anon_sym_AMP_EQ] = ACTIONS(1162), - [anon_sym_PIPE_EQ] = ACTIONS(1162), - [anon_sym_CARET_EQ] = ACTIONS(1162), - [anon_sym_PERCENT_EQ] = ACTIONS(1162), - [anon_sym_LT_LT_EQ] = ACTIONS(1162), - [anon_sym_GT_GT_EQ] = ACTIONS(1162), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1162), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_QMARK_QMARK] = ACTIONS(1164), - [anon_sym_QMARK] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [sym_equality_operator] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1164), - [anon_sym_GT_EQ] = ACTIONS(1162), - [anon_sym_LT_EQ] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_CARET] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1164), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_GT_GT_GT] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_SLASH] = ACTIONS(1164), - [anon_sym_PERCENT] = ACTIONS(1164), - [anon_sym_TILDE_SLASH] = ACTIONS(1162), - [sym_increment_operator] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_is] = ACTIONS(1164), - [anon_sym_as] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1164), - [anon_sym_QMARK_DOT] = ACTIONS(1162), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_assert] = ACTIONS(1164), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_AT] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_abstract] = ACTIONS(1164), - [anon_sym_class] = ACTIONS(1164), - [anon_sym_super] = ACTIONS(1164), - [anon_sym_void] = ACTIONS(1164), - [anon_sym_var] = ACTIONS(1164), - [anon_sym_covariant] = ACTIONS(1164), - [anon_sym_Function] = ACTIONS(1164), - [anon_sym_get] = ACTIONS(1164), - [anon_sym_set] = ACTIONS(1164), - [anon_sym_new] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_final] = ACTIONS(1164), - [anon_sym_external] = ACTIONS(1164), - [anon_sym_this] = ACTIONS(1164), + [219] = { + [sym_cascade_section] = STATE(220), + [aux_sym__expression_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(1070), + [sym_decimal_integer_literal] = ACTIONS(1072), + [sym_hex_integer_literal] = ACTIONS(1072), + [sym_octal_integer_literal] = ACTIONS(1070), + [sym_binary_integer_literal] = ACTIONS(1070), + [sym_decimal_floating_point_literal] = ACTIONS(1070), + [sym_hex_floating_point_literal] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_SQUOTE] = ACTIONS(1072), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1070), + [anon_sym_r] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_EQ] = ACTIONS(1072), + [anon_sym_PLUS_EQ] = ACTIONS(1070), + [anon_sym_DASH_EQ] = ACTIONS(1070), + [anon_sym_STAR_EQ] = ACTIONS(1070), + [anon_sym_SLASH_EQ] = ACTIONS(1070), + [anon_sym_AMP_EQ] = ACTIONS(1070), + [anon_sym_PIPE_EQ] = ACTIONS(1070), + [anon_sym_CARET_EQ] = ACTIONS(1070), + [anon_sym_PERCENT_EQ] = ACTIONS(1070), + [anon_sym_LT_LT_EQ] = ACTIONS(1070), + [anon_sym_GT_GT_EQ] = ACTIONS(1070), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1070), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_QMARK_QMARK] = ACTIONS(1072), + [anon_sym_QMARK] = ACTIONS(1072), + [anon_sym_PIPE_PIPE] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(1070), + [sym_equality_operator] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1072), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_CARET] = ACTIONS(1072), + [anon_sym_AMP] = ACTIONS(1072), + [anon_sym_LT_LT] = ACTIONS(1072), + [anon_sym_GT_GT] = ACTIONS(1072), + [anon_sym_GT_GT_GT] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_SLASH] = ACTIONS(1072), + [anon_sym_PERCENT] = ACTIONS(1072), + [anon_sym_TILDE_SLASH] = ACTIONS(1070), + [sym_increment_operator] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_await] = ACTIONS(1072), + [anon_sym_is] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_DOT] = ACTIONS(1072), + [anon_sym_QMARK_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_assert] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_yield] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_AT] = ACTIONS(1070), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_abstract] = ACTIONS(1072), + [anon_sym_class] = ACTIONS(1072), + [anon_sym_super] = ACTIONS(1072), + [anon_sym_void] = ACTIONS(1072), + [anon_sym_var] = ACTIONS(1072), + [anon_sym_covariant] = ACTIONS(1072), + [anon_sym_Function] = ACTIONS(1072), + [anon_sym_get] = ACTIONS(1072), + [anon_sym_set] = ACTIONS(1072), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_final] = ACTIONS(1072), + [anon_sym_external] = ACTIONS(1072), + [anon_sym_this] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [sym_decimal_integer_literal] = ACTIONS(1168), - [sym_hex_integer_literal] = ACTIONS(1168), - [sym_octal_integer_literal] = ACTIONS(1166), - [sym_binary_integer_literal] = ACTIONS(1166), - [sym_decimal_floating_point_literal] = ACTIONS(1166), - [sym_hex_floating_point_literal] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1166), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1166), - [anon_sym_r] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_throw] = ACTIONS(1168), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_PLUS_EQ] = ACTIONS(1166), - [anon_sym_DASH_EQ] = ACTIONS(1166), - [anon_sym_STAR_EQ] = ACTIONS(1166), - [anon_sym_SLASH_EQ] = ACTIONS(1166), - [anon_sym_AMP_EQ] = ACTIONS(1166), - [anon_sym_PIPE_EQ] = ACTIONS(1166), - [anon_sym_CARET_EQ] = ACTIONS(1166), - [anon_sym_PERCENT_EQ] = ACTIONS(1166), - [anon_sym_LT_LT_EQ] = ACTIONS(1166), - [anon_sym_GT_GT_EQ] = ACTIONS(1166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_QMARK_QMARK] = ACTIONS(1168), - [anon_sym_QMARK] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1166), - [sym_equality_operator] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1166), - [anon_sym_LT_EQ] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_LT_LT] = ACTIONS(1168), - [anon_sym_GT_GT] = ACTIONS(1168), - [anon_sym_GT_GT_GT] = ACTIONS(1168), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_TILDE_SLASH] = ACTIONS(1166), - [sym_increment_operator] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_await] = ACTIONS(1168), - [anon_sym_is] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_DOT] = ACTIONS(1168), - [anon_sym_QMARK_DOT] = ACTIONS(1166), - [anon_sym_DOT_DOT] = ACTIONS(1166), - [anon_sym_assert] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_yield] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_AT] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_abstract] = ACTIONS(1168), - [anon_sym_class] = ACTIONS(1168), - [anon_sym_super] = ACTIONS(1168), - [anon_sym_void] = ACTIONS(1168), - [anon_sym_var] = ACTIONS(1168), - [anon_sym_covariant] = ACTIONS(1168), - [anon_sym_Function] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_final] = ACTIONS(1168), - [anon_sym_external] = ACTIONS(1168), - [anon_sym_this] = ACTIONS(1168), + [sym_cascade_section] = STATE(220), + [aux_sym__expression_repeat1] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(1077), + [sym_identifier] = ACTIONS(1079), + [anon_sym_POUND] = ACTIONS(1077), + [sym_decimal_integer_literal] = ACTIONS(1079), + [sym_hex_integer_literal] = ACTIONS(1079), + [sym_octal_integer_literal] = ACTIONS(1077), + [sym_binary_integer_literal] = ACTIONS(1077), + [sym_decimal_floating_point_literal] = ACTIONS(1077), + [sym_hex_floating_point_literal] = ACTIONS(1079), + [anon_sym_true] = ACTIONS(1079), + [anon_sym_false] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1077), + [anon_sym_r] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1077), + [anon_sym_COMMA] = ACTIONS(1077), + [anon_sym_null] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1079), + [anon_sym_EQ] = ACTIONS(1079), + [anon_sym_PLUS_EQ] = ACTIONS(1077), + [anon_sym_DASH_EQ] = ACTIONS(1077), + [anon_sym_STAR_EQ] = ACTIONS(1077), + [anon_sym_SLASH_EQ] = ACTIONS(1077), + [anon_sym_AMP_EQ] = ACTIONS(1077), + [anon_sym_PIPE_EQ] = ACTIONS(1077), + [anon_sym_CARET_EQ] = ACTIONS(1077), + [anon_sym_PERCENT_EQ] = ACTIONS(1077), + [anon_sym_LT_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_GT_EQ] = ACTIONS(1077), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1077), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(1077), + [anon_sym_QMARK_QMARK] = ACTIONS(1079), + [anon_sym_QMARK] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1077), + [anon_sym_AMP_AMP] = ACTIONS(1077), + [sym_equality_operator] = ACTIONS(1077), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_PIPE] = ACTIONS(1079), + [anon_sym_CARET] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1079), + [anon_sym_GT_GT] = ACTIONS(1079), + [anon_sym_GT_GT_GT] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_SLASH] = ACTIONS(1079), + [anon_sym_PERCENT] = ACTIONS(1079), + [anon_sym_TILDE_SLASH] = ACTIONS(1077), + [sym_increment_operator] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_is] = ACTIONS(1079), + [anon_sym_as] = ACTIONS(1079), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_QMARK_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1081), + [anon_sym_assert] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_try] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(1077), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_abstract] = ACTIONS(1079), + [anon_sym_class] = ACTIONS(1079), + [anon_sym_super] = ACTIONS(1079), + [anon_sym_void] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_covariant] = ACTIONS(1079), + [anon_sym_Function] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_new] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_final] = ACTIONS(1079), + [anon_sym_external] = ACTIONS(1079), + [anon_sym_this] = ACTIONS(1079), [sym_comment] = ACTIONS(3), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [sym_decimal_integer_literal] = ACTIONS(1172), - [sym_hex_integer_literal] = ACTIONS(1172), - [sym_octal_integer_literal] = ACTIONS(1170), - [sym_binary_integer_literal] = ACTIONS(1170), - [sym_decimal_floating_point_literal] = ACTIONS(1170), - [sym_hex_floating_point_literal] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1170), - [anon_sym_r] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_throw] = ACTIONS(1172), - [anon_sym_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1170), - [anon_sym_DASH_EQ] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1170), - [anon_sym_SLASH_EQ] = ACTIONS(1170), - [anon_sym_AMP_EQ] = ACTIONS(1170), - [anon_sym_PIPE_EQ] = ACTIONS(1170), - [anon_sym_CARET_EQ] = ACTIONS(1170), - [anon_sym_PERCENT_EQ] = ACTIONS(1170), - [anon_sym_LT_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_GT_EQ] = ACTIONS(1170), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1170), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_QMARK_QMARK] = ACTIONS(1172), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_PIPE_PIPE] = ACTIONS(1170), - [anon_sym_AMP_AMP] = ACTIONS(1170), - [sym_equality_operator] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_LT_LT] = ACTIONS(1172), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_GT_GT_GT] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_PERCENT] = ACTIONS(1172), - [anon_sym_TILDE_SLASH] = ACTIONS(1170), - [sym_increment_operator] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_is] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_DOT] = ACTIONS(1172), - [anon_sym_QMARK_DOT] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1170), - [anon_sym_assert] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_yield] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_abstract] = ACTIONS(1172), - [anon_sym_class] = ACTIONS(1172), - [anon_sym_super] = ACTIONS(1172), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_var] = ACTIONS(1172), - [anon_sym_covariant] = ACTIONS(1172), - [anon_sym_Function] = ACTIONS(1172), - [anon_sym_get] = ACTIONS(1172), - [anon_sym_set] = ACTIONS(1172), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_final] = ACTIONS(1172), - [anon_sym_external] = ACTIONS(1172), - [anon_sym_this] = ACTIONS(1172), + [sym_multiplicative_operator] = STATE(598), + [aux_sym_multiplicative_expression_repeat1] = STATE(215), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(1084), + [sym_decimal_integer_literal] = ACTIONS(1086), + [sym_hex_integer_literal] = ACTIONS(1086), + [sym_octal_integer_literal] = ACTIONS(1084), + [sym_binary_integer_literal] = ACTIONS(1084), + [sym_decimal_floating_point_literal] = ACTIONS(1084), + [sym_hex_floating_point_literal] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1084), + [anon_sym_r] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_throw] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_PLUS_EQ] = ACTIONS(1084), + [anon_sym_DASH_EQ] = ACTIONS(1084), + [anon_sym_STAR_EQ] = ACTIONS(1084), + [anon_sym_SLASH_EQ] = ACTIONS(1084), + [anon_sym_AMP_EQ] = ACTIONS(1084), + [anon_sym_PIPE_EQ] = ACTIONS(1084), + [anon_sym_CARET_EQ] = ACTIONS(1084), + [anon_sym_PERCENT_EQ] = ACTIONS(1084), + [anon_sym_LT_LT_EQ] = ACTIONS(1084), + [anon_sym_GT_GT_EQ] = ACTIONS(1084), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1084), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_QMARK_QMARK] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1084), + [anon_sym_AMP_AMP] = ACTIONS(1084), + [sym_equality_operator] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_GT_GT_GT] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1086), + [anon_sym_TILDE_SLASH] = ACTIONS(1084), + [sym_increment_operator] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_await] = ACTIONS(1086), + [anon_sym_is] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_QMARK_DOT] = ACTIONS(1084), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_assert] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_abstract] = ACTIONS(1086), + [anon_sym_class] = ACTIONS(1086), + [anon_sym_super] = ACTIONS(1086), + [anon_sym_void] = ACTIONS(1086), + [anon_sym_var] = ACTIONS(1086), + [anon_sym_covariant] = ACTIONS(1086), + [anon_sym_Function] = ACTIONS(1086), + [anon_sym_get] = ACTIONS(1086), + [anon_sym_set] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_final] = ACTIONS(1086), + [anon_sym_external] = ACTIONS(1086), + [anon_sym_this] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [sym_decimal_integer_literal] = ACTIONS(1176), - [sym_hex_integer_literal] = ACTIONS(1176), - [sym_octal_integer_literal] = ACTIONS(1174), - [sym_binary_integer_literal] = ACTIONS(1174), - [sym_decimal_floating_point_literal] = ACTIONS(1174), - [sym_hex_floating_point_literal] = ACTIONS(1176), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1174), - [anon_sym_r] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1176), - [anon_sym_throw] = ACTIONS(1176), - [anon_sym_EQ] = ACTIONS(1176), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_QMARK_QMARK] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), - [anon_sym_AMP_AMP] = ACTIONS(1174), - [sym_equality_operator] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_GT] = ACTIONS(1176), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_CARET] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_LT_LT] = ACTIONS(1176), - [anon_sym_GT_GT] = ACTIONS(1176), - [anon_sym_GT_GT_GT] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_PERCENT] = ACTIONS(1176), - [anon_sym_TILDE_SLASH] = ACTIONS(1174), - [sym_increment_operator] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_await] = ACTIONS(1176), - [anon_sym_is] = ACTIONS(1176), - [anon_sym_as] = ACTIONS(1176), - [anon_sym_DOT] = ACTIONS(1176), - [anon_sym_QMARK_DOT] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_assert] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_yield] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_abstract] = ACTIONS(1176), - [anon_sym_class] = ACTIONS(1176), - [anon_sym_super] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1176), - [anon_sym_var] = ACTIONS(1176), - [anon_sym_covariant] = ACTIONS(1176), - [anon_sym_Function] = ACTIONS(1176), - [anon_sym_get] = ACTIONS(1176), - [anon_sym_set] = ACTIONS(1176), - [anon_sym_new] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_final] = ACTIONS(1176), - [anon_sym_external] = ACTIONS(1176), - [anon_sym_this] = ACTIONS(1176), + [sym_additive_operator] = STATE(601), + [aux_sym_additive_expression_repeat1] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [sym_decimal_integer_literal] = ACTIONS(594), + [sym_hex_integer_literal] = ACTIONS(594), + [sym_octal_integer_literal] = ACTIONS(592), + [sym_binary_integer_literal] = ACTIONS(592), + [sym_decimal_floating_point_literal] = ACTIONS(592), + [sym_hex_floating_point_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(592), + [anon_sym_r] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_null] = ACTIONS(594), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(592), + [anon_sym_DASH_EQ] = ACTIONS(592), + [anon_sym_STAR_EQ] = ACTIONS(592), + [anon_sym_SLASH_EQ] = ACTIONS(592), + [anon_sym_AMP_EQ] = ACTIONS(592), + [anon_sym_PIPE_EQ] = ACTIONS(592), + [anon_sym_CARET_EQ] = ACTIONS(592), + [anon_sym_PERCENT_EQ] = ACTIONS(592), + [anon_sym_LT_LT_EQ] = ACTIONS(592), + [anon_sym_GT_GT_EQ] = ACTIONS(592), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(592), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_QMARK_QMARK] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(592), + [sym_equality_operator] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_GT_GT_GT] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_TILDE_SLASH] = ACTIONS(592), + [sym_increment_operator] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_await] = ACTIONS(594), + [anon_sym_is] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_assert] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_do] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_try] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(594), + [anon_sym_abstract] = ACTIONS(594), + [anon_sym_class] = ACTIONS(594), + [anon_sym_super] = ACTIONS(594), + [anon_sym_void] = ACTIONS(594), + [anon_sym_var] = ACTIONS(594), + [anon_sym_covariant] = ACTIONS(594), + [anon_sym_Function] = ACTIONS(594), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_new] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_final] = ACTIONS(594), + [anon_sym_external] = ACTIONS(594), + [anon_sym_this] = ACTIONS(594), [sym_comment] = ACTIONS(3), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [sym_decimal_integer_literal] = ACTIONS(1180), - [sym_hex_integer_literal] = ACTIONS(1180), - [sym_octal_integer_literal] = ACTIONS(1178), - [sym_binary_integer_literal] = ACTIONS(1178), - [sym_decimal_floating_point_literal] = ACTIONS(1178), - [sym_hex_floating_point_literal] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1178), - [anon_sym_r] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_null] = ACTIONS(1180), - [anon_sym_throw] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1180), - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_STAR_EQ] = ACTIONS(1178), - [anon_sym_SLASH_EQ] = ACTIONS(1178), - [anon_sym_AMP_EQ] = ACTIONS(1178), - [anon_sym_PIPE_EQ] = ACTIONS(1178), - [anon_sym_CARET_EQ] = ACTIONS(1178), - [anon_sym_PERCENT_EQ] = ACTIONS(1178), - [anon_sym_LT_LT_EQ] = ACTIONS(1178), - [anon_sym_GT_GT_EQ] = ACTIONS(1178), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1178), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_QMARK_QMARK] = ACTIONS(1180), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [sym_equality_operator] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_GT_GT_GT] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_TILDE_SLASH] = ACTIONS(1178), - [sym_increment_operator] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_await] = ACTIONS(1180), - [anon_sym_is] = ACTIONS(1180), - [anon_sym_as] = ACTIONS(1180), - [anon_sym_DOT] = ACTIONS(1180), - [anon_sym_QMARK_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_assert] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_try] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_AT] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_abstract] = ACTIONS(1180), - [anon_sym_class] = ACTIONS(1180), - [anon_sym_super] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1180), - [anon_sym_covariant] = ACTIONS(1180), - [anon_sym_Function] = ACTIONS(1180), - [anon_sym_get] = ACTIONS(1180), - [anon_sym_set] = ACTIONS(1180), - [anon_sym_new] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_final] = ACTIONS(1180), - [anon_sym_external] = ACTIONS(1180), - [anon_sym_this] = ACTIONS(1180), + [sym_shift_operator] = STATE(688), + [aux_sym_shift_expression_repeat1] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1091), + [sym_decimal_integer_literal] = ACTIONS(1093), + [sym_hex_integer_literal] = ACTIONS(1093), + [sym_octal_integer_literal] = ACTIONS(1091), + [sym_binary_integer_literal] = ACTIONS(1091), + [sym_decimal_floating_point_literal] = ACTIONS(1091), + [sym_hex_floating_point_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1091), + [anon_sym_r] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_throw] = ACTIONS(1093), + [anon_sym_EQ] = ACTIONS(1093), + [anon_sym_PLUS_EQ] = ACTIONS(1091), + [anon_sym_DASH_EQ] = ACTIONS(1091), + [anon_sym_STAR_EQ] = ACTIONS(1091), + [anon_sym_SLASH_EQ] = ACTIONS(1091), + [anon_sym_AMP_EQ] = ACTIONS(1091), + [anon_sym_PIPE_EQ] = ACTIONS(1091), + [anon_sym_CARET_EQ] = ACTIONS(1091), + [anon_sym_PERCENT_EQ] = ACTIONS(1091), + [anon_sym_LT_LT_EQ] = ACTIONS(1091), + [anon_sym_GT_GT_EQ] = ACTIONS(1091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1091), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_QMARK_QMARK] = ACTIONS(1093), + [anon_sym_QMARK] = ACTIONS(1093), + [anon_sym_PIPE_PIPE] = ACTIONS(1091), + [anon_sym_AMP_AMP] = ACTIONS(1091), + [sym_equality_operator] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1093), + [anon_sym_GT_GT] = ACTIONS(1093), + [anon_sym_GT_GT_GT] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_PERCENT] = ACTIONS(1093), + [anon_sym_TILDE_SLASH] = ACTIONS(1091), + [sym_increment_operator] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_is] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_QMARK_DOT] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1091), + [anon_sym_assert] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_AT] = ACTIONS(1091), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_abstract] = ACTIONS(1093), + [anon_sym_class] = ACTIONS(1093), + [anon_sym_super] = ACTIONS(1093), + [anon_sym_void] = ACTIONS(1093), + [anon_sym_var] = ACTIONS(1093), + [anon_sym_covariant] = ACTIONS(1093), + [anon_sym_Function] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_final] = ACTIONS(1093), + [anon_sym_external] = ACTIONS(1093), + [anon_sym_this] = ACTIONS(1093), [sym_comment] = ACTIONS(3), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_PLUS_EQ] = ACTIONS(1182), - [anon_sym_DASH_EQ] = ACTIONS(1182), - [anon_sym_STAR_EQ] = ACTIONS(1182), - [anon_sym_SLASH_EQ] = ACTIONS(1182), - [anon_sym_AMP_EQ] = ACTIONS(1182), - [anon_sym_PIPE_EQ] = ACTIONS(1182), - [anon_sym_CARET_EQ] = ACTIONS(1182), - [anon_sym_PERCENT_EQ] = ACTIONS(1182), - [anon_sym_LT_LT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), + [aux_sym_bitwise_and_expression_repeat1] = STATE(248), + [ts_builtin_sym_end] = ACTIONS(1095), + [sym_identifier] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(1095), + [sym_decimal_integer_literal] = ACTIONS(1097), + [sym_hex_integer_literal] = ACTIONS(1097), + [sym_octal_integer_literal] = ACTIONS(1095), + [sym_binary_integer_literal] = ACTIONS(1095), + [sym_decimal_floating_point_literal] = ACTIONS(1095), + [sym_hex_floating_point_literal] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1097), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1095), + [anon_sym_r] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_throw] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1097), + [anon_sym_PLUS_EQ] = ACTIONS(1095), + [anon_sym_DASH_EQ] = ACTIONS(1095), + [anon_sym_STAR_EQ] = ACTIONS(1095), + [anon_sym_SLASH_EQ] = ACTIONS(1095), + [anon_sym_AMP_EQ] = ACTIONS(1095), + [anon_sym_PIPE_EQ] = ACTIONS(1095), + [anon_sym_CARET_EQ] = ACTIONS(1095), + [anon_sym_PERCENT_EQ] = ACTIONS(1095), + [anon_sym_LT_LT_EQ] = ACTIONS(1095), + [anon_sym_GT_GT_EQ] = ACTIONS(1095), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1095), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_QMARK_QMARK] = ACTIONS(1097), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_PIPE_PIPE] = ACTIONS(1095), + [anon_sym_AMP_AMP] = ACTIONS(1095), + [sym_equality_operator] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1095), + [anon_sym_LT_EQ] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1097), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1097), + [anon_sym_LT_LT] = ACTIONS(1097), + [anon_sym_GT_GT] = ACTIONS(1097), + [anon_sym_GT_GT_GT] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_TILDE_SLASH] = ACTIONS(1095), + [sym_increment_operator] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1097), + [anon_sym_await] = ACTIONS(1097), + [anon_sym_is] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_QMARK_DOT] = ACTIONS(1095), + [anon_sym_DOT_DOT] = ACTIONS(1095), + [anon_sym_assert] = ACTIONS(1097), + [anon_sym_switch] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_yield] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_AT] = ACTIONS(1095), + [anon_sym_enum] = ACTIONS(1097), + [anon_sym_abstract] = ACTIONS(1097), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_super] = ACTIONS(1097), + [anon_sym_void] = ACTIONS(1097), + [anon_sym_var] = ACTIONS(1097), + [anon_sym_covariant] = ACTIONS(1097), + [anon_sym_Function] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_final] = ACTIONS(1097), + [anon_sym_external] = ACTIONS(1097), + [anon_sym_this] = ACTIONS(1097), [sym_comment] = ACTIONS(3), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1192), - [sym_decimal_integer_literal] = ACTIONS(1194), - [sym_hex_integer_literal] = ACTIONS(1194), - [sym_octal_integer_literal] = ACTIONS(1192), - [sym_binary_integer_literal] = ACTIONS(1192), - [sym_decimal_floating_point_literal] = ACTIONS(1192), - [sym_hex_floating_point_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1192), - [anon_sym_r] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_throw] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1194), - [anon_sym_PLUS_EQ] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1192), - [anon_sym_STAR_EQ] = ACTIONS(1192), - [anon_sym_SLASH_EQ] = ACTIONS(1192), - [anon_sym_AMP_EQ] = ACTIONS(1192), - [anon_sym_PIPE_EQ] = ACTIONS(1192), - [anon_sym_CARET_EQ] = ACTIONS(1192), - [anon_sym_PERCENT_EQ] = ACTIONS(1192), - [anon_sym_LT_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_GT_EQ] = ACTIONS(1192), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1192), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_QMARK_QMARK] = ACTIONS(1194), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [sym_equality_operator] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_GT_GT_GT] = ACTIONS(1194), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_TILDE_SLASH] = ACTIONS(1192), - [sym_increment_operator] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_await] = ACTIONS(1194), - [anon_sym_is] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_QMARK_DOT] = ACTIONS(1192), - [anon_sym_DOT_DOT] = ACTIONS(1192), - [anon_sym_assert] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_abstract] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(1194), - [anon_sym_super] = ACTIONS(1194), - [anon_sym_void] = ACTIONS(1194), - [anon_sym_var] = ACTIONS(1194), - [anon_sym_covariant] = ACTIONS(1194), - [anon_sym_Function] = ACTIONS(1194), - [anon_sym_get] = ACTIONS(1194), - [anon_sym_set] = ACTIONS(1194), - [anon_sym_new] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_final] = ACTIONS(1194), - [anon_sym_external] = ACTIONS(1194), - [anon_sym_this] = ACTIONS(1194), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3516), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_PLUS_EQ] = ACTIONS(1182), - [anon_sym_DASH_EQ] = ACTIONS(1182), - [anon_sym_STAR_EQ] = ACTIONS(1182), - [anon_sym_SLASH_EQ] = ACTIONS(1182), - [anon_sym_AMP_EQ] = ACTIONS(1182), - [anon_sym_PIPE_EQ] = ACTIONS(1182), - [anon_sym_CARET_EQ] = ACTIONS(1182), - [anon_sym_PERCENT_EQ] = ACTIONS(1182), - [anon_sym_LT_LT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_QMARK_QMARK] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), + [aux_sym_bitwise_or_expression_repeat1] = STATE(242), + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_identifier] = ACTIONS(1105), + [anon_sym_POUND] = ACTIONS(1103), + [sym_decimal_integer_literal] = ACTIONS(1105), + [sym_hex_integer_literal] = ACTIONS(1105), + [sym_octal_integer_literal] = ACTIONS(1103), + [sym_binary_integer_literal] = ACTIONS(1103), + [sym_decimal_floating_point_literal] = ACTIONS(1103), + [sym_hex_floating_point_literal] = ACTIONS(1105), + [anon_sym_true] = ACTIONS(1105), + [anon_sym_false] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1103), + [anon_sym_r] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_throw] = ACTIONS(1105), + [anon_sym_EQ] = ACTIONS(1105), + [anon_sym_PLUS_EQ] = ACTIONS(1103), + [anon_sym_DASH_EQ] = ACTIONS(1103), + [anon_sym_STAR_EQ] = ACTIONS(1103), + [anon_sym_SLASH_EQ] = ACTIONS(1103), + [anon_sym_AMP_EQ] = ACTIONS(1103), + [anon_sym_PIPE_EQ] = ACTIONS(1103), + [anon_sym_CARET_EQ] = ACTIONS(1103), + [anon_sym_PERCENT_EQ] = ACTIONS(1103), + [anon_sym_LT_LT_EQ] = ACTIONS(1103), + [anon_sym_GT_GT_EQ] = ACTIONS(1103), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1103), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_QMARK_QMARK] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1103), + [sym_equality_operator] = ACTIONS(1103), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_EQ] = ACTIONS(1103), + [anon_sym_LT_EQ] = ACTIONS(1103), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_GT_GT_GT] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1105), + [anon_sym_TILDE_SLASH] = ACTIONS(1103), + [sym_increment_operator] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1105), + [anon_sym_await] = ACTIONS(1105), + [anon_sym_is] = ACTIONS(1105), + [anon_sym_as] = ACTIONS(1105), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_QMARK_DOT] = ACTIONS(1103), + [anon_sym_DOT_DOT] = ACTIONS(1103), + [anon_sym_assert] = ACTIONS(1105), + [anon_sym_switch] = ACTIONS(1105), + [anon_sym_do] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_yield] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_try] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_abstract] = ACTIONS(1105), + [anon_sym_class] = ACTIONS(1105), + [anon_sym_super] = ACTIONS(1105), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_covariant] = ACTIONS(1105), + [anon_sym_Function] = ACTIONS(1105), + [anon_sym_get] = ACTIONS(1105), + [anon_sym_set] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1105), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_final] = ACTIONS(1105), + [anon_sym_external] = ACTIONS(1105), + [anon_sym_this] = ACTIONS(1105), [sym_comment] = ACTIONS(3), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [sym_decimal_integer_literal] = ACTIONS(1204), - [sym_hex_integer_literal] = ACTIONS(1204), - [sym_octal_integer_literal] = ACTIONS(1202), - [sym_binary_integer_literal] = ACTIONS(1202), - [sym_decimal_floating_point_literal] = ACTIONS(1202), - [sym_hex_floating_point_literal] = ACTIONS(1204), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1202), - [anon_sym_r] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_COMMA] = ACTIONS(1202), - [anon_sym_null] = ACTIONS(1204), - [anon_sym_throw] = ACTIONS(1204), - [anon_sym_EQ] = ACTIONS(1204), - [anon_sym_PLUS_EQ] = ACTIONS(1202), - [anon_sym_DASH_EQ] = ACTIONS(1202), - [anon_sym_STAR_EQ] = ACTIONS(1202), - [anon_sym_SLASH_EQ] = ACTIONS(1202), - [anon_sym_AMP_EQ] = ACTIONS(1202), - [anon_sym_PIPE_EQ] = ACTIONS(1202), - [anon_sym_CARET_EQ] = ACTIONS(1202), - [anon_sym_PERCENT_EQ] = ACTIONS(1202), - [anon_sym_LT_LT_EQ] = ACTIONS(1202), - [anon_sym_GT_GT_EQ] = ACTIONS(1202), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1202), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_QMARK_QMARK] = ACTIONS(1204), - [anon_sym_QMARK] = ACTIONS(1204), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_AMP_AMP] = ACTIONS(1202), - [sym_equality_operator] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_GT] = ACTIONS(1204), - [anon_sym_GT_EQ] = ACTIONS(1202), - [anon_sym_LT_EQ] = ACTIONS(1202), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_CARET] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_LT_LT] = ACTIONS(1204), - [anon_sym_GT_GT] = ACTIONS(1204), - [anon_sym_GT_GT_GT] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(1204), - [anon_sym_PERCENT] = ACTIONS(1204), - [anon_sym_TILDE_SLASH] = ACTIONS(1202), - [sym_increment_operator] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_await] = ACTIONS(1204), - [anon_sym_is] = ACTIONS(1204), - [anon_sym_as] = ACTIONS(1204), - [anon_sym_DOT] = ACTIONS(1204), - [anon_sym_QMARK_DOT] = ACTIONS(1202), - [anon_sym_DOT_DOT] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_yield] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_try] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_AT] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_abstract] = ACTIONS(1204), - [anon_sym_class] = ACTIONS(1204), - [anon_sym_super] = ACTIONS(1204), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_var] = ACTIONS(1204), - [anon_sym_covariant] = ACTIONS(1204), - [anon_sym_Function] = ACTIONS(1204), - [anon_sym_get] = ACTIONS(1204), - [anon_sym_set] = ACTIONS(1204), - [anon_sym_new] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_final] = ACTIONS(1204), - [anon_sym_external] = ACTIONS(1204), - [anon_sym_this] = ACTIONS(1204), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3489), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [sym_decimal_integer_literal] = ACTIONS(1208), - [sym_hex_integer_literal] = ACTIONS(1208), - [sym_octal_integer_literal] = ACTIONS(1206), - [sym_binary_integer_literal] = ACTIONS(1206), - [sym_decimal_floating_point_literal] = ACTIONS(1206), - [sym_hex_floating_point_literal] = ACTIONS(1208), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1206), - [anon_sym_r] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_null] = ACTIONS(1208), - [anon_sym_throw] = ACTIONS(1208), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_QMARK_QMARK] = ACTIONS(1210), - [anon_sym_QMARK] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1213), - [anon_sym_AMP_AMP] = ACTIONS(1213), - [sym_equality_operator] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_CARET] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_LT_LT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(1210), - [anon_sym_GT_GT_GT] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_SLASH] = ACTIONS(1210), - [anon_sym_PERCENT] = ACTIONS(1210), - [anon_sym_TILDE_SLASH] = ACTIONS(1213), - [sym_increment_operator] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_await] = ACTIONS(1208), - [anon_sym_is] = ACTIONS(1208), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_QMARK_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_AT] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_abstract] = ACTIONS(1208), - [anon_sym_class] = ACTIONS(1208), - [anon_sym_super] = ACTIONS(1208), - [anon_sym_void] = ACTIONS(1208), - [anon_sym_var] = ACTIONS(1208), - [anon_sym_covariant] = ACTIONS(1208), - [anon_sym_Function] = ACTIONS(1208), - [anon_sym_get] = ACTIONS(1208), - [anon_sym_set] = ACTIONS(1208), - [anon_sym_new] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_final] = ACTIONS(1208), - [anon_sym_external] = ACTIONS(1208), - [anon_sym_this] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(1216), - [sym_decimal_integer_literal] = ACTIONS(1218), - [sym_hex_integer_literal] = ACTIONS(1218), - [sym_octal_integer_literal] = ACTIONS(1216), - [sym_binary_integer_literal] = ACTIONS(1216), - [sym_decimal_floating_point_literal] = ACTIONS(1216), - [sym_hex_floating_point_literal] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1218), - [anon_sym_false] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1216), - [anon_sym_r] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_COMMA] = ACTIONS(1216), - [anon_sym_null] = ACTIONS(1218), - [anon_sym_throw] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1218), - [anon_sym_PLUS_EQ] = ACTIONS(1216), - [anon_sym_DASH_EQ] = ACTIONS(1216), - [anon_sym_STAR_EQ] = ACTIONS(1216), - [anon_sym_SLASH_EQ] = ACTIONS(1216), - [anon_sym_AMP_EQ] = ACTIONS(1216), - [anon_sym_PIPE_EQ] = ACTIONS(1216), - [anon_sym_CARET_EQ] = ACTIONS(1216), - [anon_sym_PERCENT_EQ] = ACTIONS(1216), - [anon_sym_LT_LT_EQ] = ACTIONS(1216), - [anon_sym_GT_GT_EQ] = ACTIONS(1216), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1216), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1216), - [anon_sym_QMARK_QMARK] = ACTIONS(1218), - [anon_sym_QMARK] = ACTIONS(1218), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [sym_equality_operator] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1218), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_GT_EQ] = ACTIONS(1216), - [anon_sym_LT_EQ] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_LT_LT] = ACTIONS(1218), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(1218), - [anon_sym_PERCENT] = ACTIONS(1218), - [anon_sym_TILDE_SLASH] = ACTIONS(1216), - [sym_increment_operator] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_await] = ACTIONS(1218), - [anon_sym_is] = ACTIONS(1218), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_QMARK_DOT] = ACTIONS(1216), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [anon_sym_assert] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_yield] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_try] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_abstract] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(1218), - [anon_sym_super] = ACTIONS(1218), - [anon_sym_void] = ACTIONS(1218), - [anon_sym_var] = ACTIONS(1218), - [anon_sym_covariant] = ACTIONS(1218), - [anon_sym_Function] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_new] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_final] = ACTIONS(1218), - [anon_sym_external] = ACTIONS(1218), - [anon_sym_this] = ACTIONS(1218), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3505), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [229] = { + [sym__type_dot_identifier] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1111), + [sym_decimal_integer_literal] = ACTIONS(1113), + [sym_hex_integer_literal] = ACTIONS(1113), + [sym_octal_integer_literal] = ACTIONS(1111), + [sym_binary_integer_literal] = ACTIONS(1111), + [sym_decimal_floating_point_literal] = ACTIONS(1111), + [sym_hex_floating_point_literal] = ACTIONS(1113), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1111), + [anon_sym_r] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_null] = ACTIONS(1113), + [anon_sym_throw] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_AMP_EQ] = ACTIONS(1111), + [anon_sym_PIPE_EQ] = ACTIONS(1111), + [anon_sym_CARET_EQ] = ACTIONS(1111), + [anon_sym_PERCENT_EQ] = ACTIONS(1111), + [anon_sym_LT_LT_EQ] = ACTIONS(1111), + [anon_sym_GT_GT_EQ] = ACTIONS(1111), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1111), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_QMARK_QMARK] = ACTIONS(1113), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [sym_equality_operator] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1113), + [anon_sym_GT_GT] = ACTIONS(1113), + [anon_sym_GT_GT_GT] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1113), + [anon_sym_TILDE_SLASH] = ACTIONS(1111), + [sym_increment_operator] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_is] = ACTIONS(1113), + [anon_sym_as] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_QMARK_DOT] = ACTIONS(1111), + [anon_sym_DOT_DOT] = ACTIONS(1111), + [anon_sym_assert] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1111), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_abstract] = ACTIONS(1113), + [anon_sym_class] = ACTIONS(1113), + [anon_sym_super] = ACTIONS(1113), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_var] = ACTIONS(1113), + [anon_sym_covariant] = ACTIONS(1113), + [anon_sym_Function] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_final] = ACTIONS(1113), + [anon_sym_external] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(1113), [sym_comment] = ACTIONS(3), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(1220), - [sym_decimal_integer_literal] = ACTIONS(1222), - [sym_hex_integer_literal] = ACTIONS(1222), - [sym_octal_integer_literal] = ACTIONS(1220), - [sym_binary_integer_literal] = ACTIONS(1220), - [sym_decimal_floating_point_literal] = ACTIONS(1220), - [sym_hex_floating_point_literal] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1220), - [anon_sym_r] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_throw] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_AMP_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1220), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_GT_EQ] = ACTIONS(1220), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1220), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_QMARK] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [sym_equality_operator] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_TILDE_SLASH] = ACTIONS(1220), - [sym_increment_operator] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_await] = ACTIONS(1222), - [anon_sym_is] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_QMARK_DOT] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_abstract] = ACTIONS(1222), - [anon_sym_class] = ACTIONS(1222), - [anon_sym_super] = ACTIONS(1222), - [anon_sym_void] = ACTIONS(1222), - [anon_sym_var] = ACTIONS(1222), - [anon_sym_covariant] = ACTIONS(1222), - [anon_sym_Function] = ACTIONS(1222), - [anon_sym_get] = ACTIONS(1222), - [anon_sym_set] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_final] = ACTIONS(1222), - [anon_sym_external] = ACTIONS(1222), - [anon_sym_this] = ACTIONS(1222), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3458), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1115), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1226), - [anon_sym_POUND] = ACTIONS(1224), - [sym_decimal_integer_literal] = ACTIONS(1226), - [sym_hex_integer_literal] = ACTIONS(1226), - [sym_octal_integer_literal] = ACTIONS(1224), - [sym_binary_integer_literal] = ACTIONS(1224), - [sym_decimal_floating_point_literal] = ACTIONS(1224), - [sym_hex_floating_point_literal] = ACTIONS(1226), - [anon_sym_true] = ACTIONS(1226), - [anon_sym_false] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1224), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1224), - [anon_sym_r] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1226), - [anon_sym_throw] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1226), - [anon_sym_PLUS_EQ] = ACTIONS(1224), - [anon_sym_DASH_EQ] = ACTIONS(1224), - [anon_sym_STAR_EQ] = ACTIONS(1224), - [anon_sym_SLASH_EQ] = ACTIONS(1224), - [anon_sym_AMP_EQ] = ACTIONS(1224), - [anon_sym_PIPE_EQ] = ACTIONS(1224), - [anon_sym_CARET_EQ] = ACTIONS(1224), - [anon_sym_PERCENT_EQ] = ACTIONS(1224), - [anon_sym_LT_LT_EQ] = ACTIONS(1224), - [anon_sym_GT_GT_EQ] = ACTIONS(1224), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1224), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_QMARK_QMARK] = ACTIONS(1226), - [anon_sym_QMARK] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [sym_equality_operator] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1226), - [anon_sym_GT] = ACTIONS(1226), - [anon_sym_GT_EQ] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1226), - [anon_sym_CARET] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_LT_LT] = ACTIONS(1226), - [anon_sym_GT_GT] = ACTIONS(1226), - [anon_sym_GT_GT_GT] = ACTIONS(1226), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_SLASH] = ACTIONS(1226), - [anon_sym_PERCENT] = ACTIONS(1226), - [anon_sym_TILDE_SLASH] = ACTIONS(1224), - [sym_increment_operator] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_await] = ACTIONS(1226), - [anon_sym_is] = ACTIONS(1226), - [anon_sym_as] = ACTIONS(1226), - [anon_sym_DOT] = ACTIONS(1226), - [anon_sym_QMARK_DOT] = ACTIONS(1224), - [anon_sym_DOT_DOT] = ACTIONS(1224), - [anon_sym_assert] = ACTIONS(1226), - [anon_sym_switch] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_try] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_AT] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_abstract] = ACTIONS(1226), - [anon_sym_class] = ACTIONS(1226), - [anon_sym_super] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1226), - [anon_sym_var] = ACTIONS(1226), - [anon_sym_covariant] = ACTIONS(1226), - [anon_sym_Function] = ACTIONS(1226), - [anon_sym_get] = ACTIONS(1226), - [anon_sym_set] = ACTIONS(1226), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_final] = ACTIONS(1226), - [anon_sym_external] = ACTIONS(1226), - [anon_sym_this] = ACTIONS(1226), + [aux_sym_logical_and_expression_repeat1] = STATE(245), + [ts_builtin_sym_end] = ACTIONS(1117), + [sym_identifier] = ACTIONS(1119), + [anon_sym_POUND] = ACTIONS(1117), + [sym_decimal_integer_literal] = ACTIONS(1119), + [sym_hex_integer_literal] = ACTIONS(1119), + [sym_octal_integer_literal] = ACTIONS(1117), + [sym_binary_integer_literal] = ACTIONS(1117), + [sym_decimal_floating_point_literal] = ACTIONS(1117), + [sym_hex_floating_point_literal] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1117), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1117), + [anon_sym_r] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1117), + [anon_sym_null] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1119), + [anon_sym_PLUS_EQ] = ACTIONS(1117), + [anon_sym_DASH_EQ] = ACTIONS(1117), + [anon_sym_STAR_EQ] = ACTIONS(1117), + [anon_sym_SLASH_EQ] = ACTIONS(1117), + [anon_sym_AMP_EQ] = ACTIONS(1117), + [anon_sym_PIPE_EQ] = ACTIONS(1117), + [anon_sym_CARET_EQ] = ACTIONS(1117), + [anon_sym_PERCENT_EQ] = ACTIONS(1117), + [anon_sym_LT_LT_EQ] = ACTIONS(1117), + [anon_sym_GT_GT_EQ] = ACTIONS(1117), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1117), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_QMARK_QMARK] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(1119), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_AMP_AMP] = ACTIONS(1117), + [sym_equality_operator] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_EQ] = ACTIONS(1117), + [anon_sym_LT_EQ] = ACTIONS(1117), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_CARET] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1119), + [anon_sym_GT_GT] = ACTIONS(1119), + [anon_sym_GT_GT_GT] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1119), + [anon_sym_PERCENT] = ACTIONS(1119), + [anon_sym_TILDE_SLASH] = ACTIONS(1117), + [sym_increment_operator] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_is] = ACTIONS(1119), + [anon_sym_as] = ACTIONS(1119), + [anon_sym_DOT] = ACTIONS(1119), + [anon_sym_QMARK_DOT] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_assert] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1119), + [anon_sym_continue] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1119), + [anon_sym_return] = ACTIONS(1119), + [anon_sym_try] = ACTIONS(1119), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1119), + [anon_sym_abstract] = ACTIONS(1119), + [anon_sym_class] = ACTIONS(1119), + [anon_sym_super] = ACTIONS(1119), + [anon_sym_void] = ACTIONS(1119), + [anon_sym_var] = ACTIONS(1119), + [anon_sym_covariant] = ACTIONS(1119), + [anon_sym_Function] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_const] = ACTIONS(1119), + [anon_sym_final] = ACTIONS(1119), + [anon_sym_external] = ACTIONS(1119), + [anon_sym_this] = ACTIONS(1119), [sym_comment] = ACTIONS(3), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(1228), - [sym_decimal_integer_literal] = ACTIONS(1230), - [sym_hex_integer_literal] = ACTIONS(1230), - [sym_octal_integer_literal] = ACTIONS(1228), - [sym_binary_integer_literal] = ACTIONS(1228), - [sym_decimal_floating_point_literal] = ACTIONS(1228), - [sym_hex_floating_point_literal] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1228), - [anon_sym_r] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1230), - [anon_sym_throw] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1230), - [anon_sym_PLUS_EQ] = ACTIONS(1228), - [anon_sym_DASH_EQ] = ACTIONS(1228), - [anon_sym_STAR_EQ] = ACTIONS(1228), - [anon_sym_SLASH_EQ] = ACTIONS(1228), - [anon_sym_AMP_EQ] = ACTIONS(1228), - [anon_sym_PIPE_EQ] = ACTIONS(1228), - [anon_sym_CARET_EQ] = ACTIONS(1228), - [anon_sym_PERCENT_EQ] = ACTIONS(1228), - [anon_sym_LT_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_GT_EQ] = ACTIONS(1228), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1228), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_QMARK_QMARK] = ACTIONS(1230), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [sym_equality_operator] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1230), - [anon_sym_CARET] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_LT_LT] = ACTIONS(1230), - [anon_sym_GT_GT] = ACTIONS(1230), - [anon_sym_GT_GT_GT] = ACTIONS(1230), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_SLASH] = ACTIONS(1230), - [anon_sym_PERCENT] = ACTIONS(1230), - [anon_sym_TILDE_SLASH] = ACTIONS(1228), - [sym_increment_operator] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_is] = ACTIONS(1230), - [anon_sym_as] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1230), - [anon_sym_QMARK_DOT] = ACTIONS(1228), - [anon_sym_DOT_DOT] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_abstract] = ACTIONS(1230), - [anon_sym_class] = ACTIONS(1230), - [anon_sym_super] = ACTIONS(1230), - [anon_sym_void] = ACTIONS(1230), - [anon_sym_var] = ACTIONS(1230), - [anon_sym_covariant] = ACTIONS(1230), - [anon_sym_Function] = ACTIONS(1230), - [anon_sym_get] = ACTIONS(1230), - [anon_sym_set] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_final] = ACTIONS(1230), - [anon_sym_external] = ACTIONS(1230), - [anon_sym_this] = ACTIONS(1230), + [aux_sym_logical_or_expression_repeat1] = STATE(244), + [ts_builtin_sym_end] = ACTIONS(1121), + [sym_identifier] = ACTIONS(1123), + [anon_sym_POUND] = ACTIONS(1121), + [sym_decimal_integer_literal] = ACTIONS(1123), + [sym_hex_integer_literal] = ACTIONS(1123), + [sym_octal_integer_literal] = ACTIONS(1121), + [sym_binary_integer_literal] = ACTIONS(1121), + [sym_decimal_floating_point_literal] = ACTIONS(1121), + [sym_hex_floating_point_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1123), + [anon_sym_false] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1121), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1121), + [anon_sym_r] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1123), + [anon_sym_EQ] = ACTIONS(1123), + [anon_sym_PLUS_EQ] = ACTIONS(1121), + [anon_sym_DASH_EQ] = ACTIONS(1121), + [anon_sym_STAR_EQ] = ACTIONS(1121), + [anon_sym_SLASH_EQ] = ACTIONS(1121), + [anon_sym_AMP_EQ] = ACTIONS(1121), + [anon_sym_PIPE_EQ] = ACTIONS(1121), + [anon_sym_CARET_EQ] = ACTIONS(1121), + [anon_sym_PERCENT_EQ] = ACTIONS(1121), + [anon_sym_LT_LT_EQ] = ACTIONS(1121), + [anon_sym_GT_GT_EQ] = ACTIONS(1121), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1121), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_QMARK_QMARK] = ACTIONS(1123), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1121), + [anon_sym_AMP_AMP] = ACTIONS(1121), + [sym_equality_operator] = ACTIONS(1121), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_EQ] = ACTIONS(1121), + [anon_sym_LT_EQ] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_CARET] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_LT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_GT_GT_GT] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_SLASH] = ACTIONS(1123), + [anon_sym_PERCENT] = ACTIONS(1123), + [anon_sym_TILDE_SLASH] = ACTIONS(1121), + [sym_increment_operator] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_await] = ACTIONS(1123), + [anon_sym_is] = ACTIONS(1123), + [anon_sym_as] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_QMARK_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_assert] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_yield] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_try] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_abstract] = ACTIONS(1123), + [anon_sym_class] = ACTIONS(1123), + [anon_sym_super] = ACTIONS(1123), + [anon_sym_void] = ACTIONS(1123), + [anon_sym_var] = ACTIONS(1123), + [anon_sym_covariant] = ACTIONS(1123), + [anon_sym_Function] = ACTIONS(1123), + [anon_sym_get] = ACTIONS(1123), + [anon_sym_set] = ACTIONS(1123), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_final] = ACTIONS(1123), + [anon_sym_external] = ACTIONS(1123), + [anon_sym_this] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_POUND] = ACTIONS(1232), - [sym_decimal_integer_literal] = ACTIONS(1234), - [sym_hex_integer_literal] = ACTIONS(1234), - [sym_octal_integer_literal] = ACTIONS(1232), - [sym_binary_integer_literal] = ACTIONS(1232), - [sym_decimal_floating_point_literal] = ACTIONS(1232), - [sym_hex_floating_point_literal] = ACTIONS(1234), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1232), - [anon_sym_r] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_null] = ACTIONS(1234), - [anon_sym_throw] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_QMARK_QMARK] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [sym_equality_operator] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_GT_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_TILDE_SLASH] = ACTIONS(1232), - [sym_increment_operator] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_await] = ACTIONS(1234), - [anon_sym_is] = ACTIONS(1234), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_assert] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_AT] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_abstract] = ACTIONS(1234), - [anon_sym_class] = ACTIONS(1234), - [anon_sym_super] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(1234), - [anon_sym_var] = ACTIONS(1234), - [anon_sym_covariant] = ACTIONS(1234), - [anon_sym_Function] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_final] = ACTIONS(1234), - [anon_sym_external] = ACTIONS(1234), - [anon_sym_this] = ACTIONS(1234), + [aux_sym__if_null_expression] = STATE(243), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1125), + [sym_decimal_integer_literal] = ACTIONS(1127), + [sym_hex_integer_literal] = ACTIONS(1127), + [sym_octal_integer_literal] = ACTIONS(1125), + [sym_binary_integer_literal] = ACTIONS(1125), + [sym_decimal_floating_point_literal] = ACTIONS(1125), + [sym_hex_floating_point_literal] = ACTIONS(1127), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1125), + [anon_sym_r] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1125), + [anon_sym_null] = ACTIONS(1127), + [anon_sym_throw] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_PLUS_EQ] = ACTIONS(1125), + [anon_sym_DASH_EQ] = ACTIONS(1125), + [anon_sym_STAR_EQ] = ACTIONS(1125), + [anon_sym_SLASH_EQ] = ACTIONS(1125), + [anon_sym_AMP_EQ] = ACTIONS(1125), + [anon_sym_PIPE_EQ] = ACTIONS(1125), + [anon_sym_CARET_EQ] = ACTIONS(1125), + [anon_sym_PERCENT_EQ] = ACTIONS(1125), + [anon_sym_LT_LT_EQ] = ACTIONS(1125), + [anon_sym_GT_GT_EQ] = ACTIONS(1125), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1125), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1125), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_QMARK_QMARK] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(1127), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [sym_equality_operator] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [anon_sym_GT_EQ] = ACTIONS(1125), + [anon_sym_LT_EQ] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_LT_LT] = ACTIONS(1127), + [anon_sym_GT_GT] = ACTIONS(1127), + [anon_sym_GT_GT_GT] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1127), + [anon_sym_TILDE_SLASH] = ACTIONS(1125), + [sym_increment_operator] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1127), + [anon_sym_is] = ACTIONS(1127), + [anon_sym_as] = ACTIONS(1127), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_QMARK_DOT] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_assert] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_yield] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_try] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_abstract] = ACTIONS(1127), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_super] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1127), + [anon_sym_var] = ACTIONS(1127), + [anon_sym_covariant] = ACTIONS(1127), + [anon_sym_Function] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_final] = ACTIONS(1127), + [anon_sym_external] = ACTIONS(1127), + [anon_sym_this] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_POUND] = ACTIONS(1236), - [sym_decimal_integer_literal] = ACTIONS(1238), - [sym_hex_integer_literal] = ACTIONS(1238), - [sym_octal_integer_literal] = ACTIONS(1236), - [sym_binary_integer_literal] = ACTIONS(1236), - [sym_decimal_floating_point_literal] = ACTIONS(1236), - [sym_hex_floating_point_literal] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1236), - [anon_sym_r] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_null] = ACTIONS(1238), - [anon_sym_throw] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_QMARK_QMARK] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1238), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [sym_equality_operator] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_GT_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_TILDE_SLASH] = ACTIONS(1236), - [sym_increment_operator] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_is] = ACTIONS(1238), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_QMARK_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_assert] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_abstract] = ACTIONS(1238), - [anon_sym_class] = ACTIONS(1238), - [anon_sym_super] = ACTIONS(1238), - [anon_sym_void] = ACTIONS(1238), - [anon_sym_var] = ACTIONS(1238), - [anon_sym_covariant] = ACTIONS(1238), - [anon_sym_Function] = ACTIONS(1238), - [anon_sym_get] = ACTIONS(1238), - [anon_sym_set] = ACTIONS(1238), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_final] = ACTIONS(1238), - [anon_sym_external] = ACTIONS(1238), - [anon_sym_this] = ACTIONS(1238), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3444), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1129), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1240), - [sym_decimal_integer_literal] = ACTIONS(1242), - [sym_hex_integer_literal] = ACTIONS(1242), - [sym_octal_integer_literal] = ACTIONS(1240), - [sym_binary_integer_literal] = ACTIONS(1240), - [sym_decimal_floating_point_literal] = ACTIONS(1240), - [sym_hex_floating_point_literal] = ACTIONS(1242), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1240), - [anon_sym_r] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [anon_sym_null] = ACTIONS(1242), - [anon_sym_throw] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_QMARK_QMARK] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [sym_equality_operator] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_GT_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_TILDE_SLASH] = ACTIONS(1240), - [sym_increment_operator] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_is] = ACTIONS(1242), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_QMARK_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_assert] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_abstract] = ACTIONS(1242), - [anon_sym_class] = ACTIONS(1242), - [anon_sym_super] = ACTIONS(1242), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_var] = ACTIONS(1242), - [anon_sym_covariant] = ACTIONS(1242), - [anon_sym_Function] = ACTIONS(1242), - [anon_sym_get] = ACTIONS(1242), - [anon_sym_set] = ACTIONS(1242), - [anon_sym_new] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_final] = ACTIONS(1242), - [anon_sym_external] = ACTIONS(1242), - [anon_sym_this] = ACTIONS(1242), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3459), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_POUND] = ACTIONS(1244), - [sym_decimal_integer_literal] = ACTIONS(1246), - [sym_hex_integer_literal] = ACTIONS(1246), - [sym_octal_integer_literal] = ACTIONS(1244), - [sym_binary_integer_literal] = ACTIONS(1244), - [sym_decimal_floating_point_literal] = ACTIONS(1244), - [sym_hex_floating_point_literal] = ACTIONS(1246), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1244), - [anon_sym_r] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [anon_sym_null] = ACTIONS(1246), - [anon_sym_throw] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_QMARK_QMARK] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [sym_equality_operator] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_GT_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_TILDE_SLASH] = ACTIONS(1244), - [sym_increment_operator] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_await] = ACTIONS(1246), - [anon_sym_is] = ACTIONS(1246), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_QMARK_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_assert] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_abstract] = ACTIONS(1246), - [anon_sym_class] = ACTIONS(1246), - [anon_sym_super] = ACTIONS(1246), - [anon_sym_void] = ACTIONS(1246), - [anon_sym_var] = ACTIONS(1246), - [anon_sym_covariant] = ACTIONS(1246), - [anon_sym_Function] = ACTIONS(1246), - [anon_sym_get] = ACTIONS(1246), - [anon_sym_set] = ACTIONS(1246), - [anon_sym_new] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_final] = ACTIONS(1246), - [anon_sym_external] = ACTIONS(1246), - [anon_sym_this] = ACTIONS(1246), + [sym__type_dot_identifier] = STATE(2490), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1133), + [sym_decimal_integer_literal] = ACTIONS(1135), + [sym_hex_integer_literal] = ACTIONS(1135), + [sym_octal_integer_literal] = ACTIONS(1133), + [sym_binary_integer_literal] = ACTIONS(1133), + [sym_decimal_floating_point_literal] = ACTIONS(1133), + [sym_hex_floating_point_literal] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_r] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_throw] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_PLUS_EQ] = ACTIONS(1133), + [anon_sym_DASH_EQ] = ACTIONS(1133), + [anon_sym_STAR_EQ] = ACTIONS(1133), + [anon_sym_SLASH_EQ] = ACTIONS(1133), + [anon_sym_AMP_EQ] = ACTIONS(1133), + [anon_sym_PIPE_EQ] = ACTIONS(1133), + [anon_sym_CARET_EQ] = ACTIONS(1133), + [anon_sym_PERCENT_EQ] = ACTIONS(1133), + [anon_sym_LT_LT_EQ] = ACTIONS(1133), + [anon_sym_GT_GT_EQ] = ACTIONS(1133), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1133), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_QMARK_QMARK] = ACTIONS(1135), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [sym_equality_operator] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1135), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_GT_GT_GT] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_PERCENT] = ACTIONS(1135), + [anon_sym_TILDE_SLASH] = ACTIONS(1133), + [sym_increment_operator] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1135), + [anon_sym_is] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_DOT] = ACTIONS(1140), + [anon_sym_QMARK_DOT] = ACTIONS(1133), + [anon_sym_DOT_DOT] = ACTIONS(1133), + [anon_sym_assert] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_abstract] = ACTIONS(1135), + [anon_sym_class] = ACTIONS(1135), + [anon_sym_super] = ACTIONS(1135), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_var] = ACTIONS(1135), + [anon_sym_covariant] = ACTIONS(1135), + [anon_sym_Function] = ACTIONS(1135), + [anon_sym_get] = ACTIONS(1135), + [anon_sym_set] = ACTIONS(1135), + [anon_sym_new] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_final] = ACTIONS(1135), + [anon_sym_external] = ACTIONS(1135), + [anon_sym_this] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_POUND] = ACTIONS(1248), - [sym_decimal_integer_literal] = ACTIONS(1250), - [sym_hex_integer_literal] = ACTIONS(1250), - [sym_octal_integer_literal] = ACTIONS(1248), - [sym_binary_integer_literal] = ACTIONS(1248), - [sym_decimal_floating_point_literal] = ACTIONS(1248), - [sym_hex_floating_point_literal] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1248), - [anon_sym_r] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [anon_sym_null] = ACTIONS(1250), - [anon_sym_throw] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_STAR_EQ] = ACTIONS(1248), - [anon_sym_SLASH_EQ] = ACTIONS(1248), - [anon_sym_AMP_EQ] = ACTIONS(1248), - [anon_sym_PIPE_EQ] = ACTIONS(1248), - [anon_sym_CARET_EQ] = ACTIONS(1248), - [anon_sym_PERCENT_EQ] = ACTIONS(1248), - [anon_sym_LT_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_QMARK_QMARK] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [sym_equality_operator] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_GT_GT_GT] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_TILDE_SLASH] = ACTIONS(1248), - [sym_increment_operator] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_await] = ACTIONS(1250), - [anon_sym_is] = ACTIONS(1250), - [anon_sym_as] = ACTIONS(1250), - [anon_sym_DOT] = ACTIONS(1250), - [anon_sym_QMARK_DOT] = ACTIONS(1248), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_assert] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_abstract] = ACTIONS(1250), - [anon_sym_class] = ACTIONS(1250), - [anon_sym_super] = ACTIONS(1250), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_var] = ACTIONS(1250), - [anon_sym_covariant] = ACTIONS(1250), - [anon_sym_Function] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_new] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_final] = ACTIONS(1250), - [anon_sym_external] = ACTIONS(1250), - [anon_sym_this] = ACTIONS(1250), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1143), + [sym_decimal_integer_literal] = ACTIONS(1145), + [sym_hex_integer_literal] = ACTIONS(1145), + [sym_octal_integer_literal] = ACTIONS(1143), + [sym_binary_integer_literal] = ACTIONS(1143), + [sym_decimal_floating_point_literal] = ACTIONS(1143), + [sym_hex_floating_point_literal] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1143), + [anon_sym_r] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1145), + [anon_sym_throw] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(1145), + [anon_sym_PLUS_EQ] = ACTIONS(1143), + [anon_sym_DASH_EQ] = ACTIONS(1143), + [anon_sym_STAR_EQ] = ACTIONS(1143), + [anon_sym_SLASH_EQ] = ACTIONS(1143), + [anon_sym_AMP_EQ] = ACTIONS(1143), + [anon_sym_PIPE_EQ] = ACTIONS(1143), + [anon_sym_CARET_EQ] = ACTIONS(1143), + [anon_sym_PERCENT_EQ] = ACTIONS(1143), + [anon_sym_LT_LT_EQ] = ACTIONS(1143), + [anon_sym_GT_GT_EQ] = ACTIONS(1143), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1143), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_QMARK_QMARK] = ACTIONS(1145), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_PIPE_PIPE] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [sym_equality_operator] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_GT_GT_GT] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1145), + [anon_sym_TILDE_SLASH] = ACTIONS(1143), + [sym_increment_operator] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_is] = ACTIONS(1145), + [anon_sym_as] = ACTIONS(1145), + [anon_sym_DOT] = ACTIONS(1145), + [anon_sym_QMARK_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_assert] = ACTIONS(1145), + [anon_sym_switch] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_yield] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_abstract] = ACTIONS(1145), + [anon_sym_class] = ACTIONS(1145), + [anon_sym_super] = ACTIONS(1145), + [anon_sym_void] = ACTIONS(1145), + [anon_sym_var] = ACTIONS(1145), + [anon_sym_covariant] = ACTIONS(1145), + [anon_sym_Function] = ACTIONS(1145), + [anon_sym_get] = ACTIONS(1145), + [anon_sym_set] = ACTIONS(1145), + [anon_sym_new] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_final] = ACTIONS(1145), + [anon_sym_external] = ACTIONS(1145), + [anon_sym_this] = ACTIONS(1145), [sym_comment] = ACTIONS(3), }, [238] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1254), - [anon_sym_POUND] = ACTIONS(1252), - [sym_decimal_integer_literal] = ACTIONS(1254), - [sym_hex_integer_literal] = ACTIONS(1254), - [sym_octal_integer_literal] = ACTIONS(1252), - [sym_binary_integer_literal] = ACTIONS(1252), - [sym_decimal_floating_point_literal] = ACTIONS(1252), - [sym_hex_floating_point_literal] = ACTIONS(1254), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1252), - [anon_sym_r] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1254), - [anon_sym_throw] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_AMP_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1252), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_QMARK_QMARK] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [sym_equality_operator] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1254), - [anon_sym_GT_GT_GT] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_TILDE_SLASH] = ACTIONS(1252), - [sym_increment_operator] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_await] = ACTIONS(1254), - [anon_sym_is] = ACTIONS(1254), - [anon_sym_as] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(1252), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_yield] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_abstract] = ACTIONS(1254), - [anon_sym_class] = ACTIONS(1254), - [anon_sym_super] = ACTIONS(1254), - [anon_sym_void] = ACTIONS(1254), - [anon_sym_var] = ACTIONS(1254), - [anon_sym_covariant] = ACTIONS(1254), - [anon_sym_Function] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_final] = ACTIONS(1254), - [anon_sym_external] = ACTIONS(1254), - [anon_sym_this] = ACTIONS(1254), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3382), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), - [anon_sym_POUND] = ACTIONS(1256), - [sym_decimal_integer_literal] = ACTIONS(1258), - [sym_hex_integer_literal] = ACTIONS(1258), - [sym_octal_integer_literal] = ACTIONS(1256), - [sym_binary_integer_literal] = ACTIONS(1256), - [sym_decimal_floating_point_literal] = ACTIONS(1256), - [sym_hex_floating_point_literal] = ACTIONS(1258), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1256), - [anon_sym_r] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [anon_sym_throw] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1256), - [anon_sym_DASH_EQ] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1256), - [anon_sym_SLASH_EQ] = ACTIONS(1256), - [anon_sym_AMP_EQ] = ACTIONS(1256), - [anon_sym_PIPE_EQ] = ACTIONS(1256), - [anon_sym_CARET_EQ] = ACTIONS(1256), - [anon_sym_PERCENT_EQ] = ACTIONS(1256), - [anon_sym_LT_LT_EQ] = ACTIONS(1256), - [anon_sym_GT_GT_EQ] = ACTIONS(1256), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1256), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_QMARK_QMARK] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [sym_equality_operator] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_GT_GT_GT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_TILDE_SLASH] = ACTIONS(1256), - [sym_increment_operator] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_is] = ACTIONS(1258), - [anon_sym_as] = ACTIONS(1258), - [anon_sym_DOT] = ACTIONS(1258), - [anon_sym_QMARK_DOT] = ACTIONS(1256), - [anon_sym_DOT_DOT] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_try] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_AT] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_abstract] = ACTIONS(1258), - [anon_sym_class] = ACTIONS(1258), - [anon_sym_super] = ACTIONS(1258), - [anon_sym_void] = ACTIONS(1258), - [anon_sym_var] = ACTIONS(1258), - [anon_sym_covariant] = ACTIONS(1258), - [anon_sym_Function] = ACTIONS(1258), - [anon_sym_get] = ACTIONS(1258), - [anon_sym_set] = ACTIONS(1258), - [anon_sym_new] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_final] = ACTIONS(1258), - [anon_sym_external] = ACTIONS(1258), - [anon_sym_this] = ACTIONS(1258), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3393), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [240] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [anon_sym_POUND] = ACTIONS(1260), - [sym_decimal_integer_literal] = ACTIONS(1262), - [sym_hex_integer_literal] = ACTIONS(1262), - [sym_octal_integer_literal] = ACTIONS(1260), - [sym_binary_integer_literal] = ACTIONS(1260), - [sym_decimal_floating_point_literal] = ACTIONS(1260), - [sym_hex_floating_point_literal] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1260), - [anon_sym_r] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_COMMA] = ACTIONS(1260), - [anon_sym_null] = ACTIONS(1262), - [anon_sym_throw] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1260), - [anon_sym_DASH_EQ] = ACTIONS(1260), - [anon_sym_STAR_EQ] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1260), - [anon_sym_AMP_EQ] = ACTIONS(1260), - [anon_sym_PIPE_EQ] = ACTIONS(1260), - [anon_sym_CARET_EQ] = ACTIONS(1260), - [anon_sym_PERCENT_EQ] = ACTIONS(1260), - [anon_sym_LT_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_GT_EQ] = ACTIONS(1260), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1260), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_QMARK_QMARK] = ACTIONS(1262), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [sym_equality_operator] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1262), - [anon_sym_GT_GT] = ACTIONS(1262), - [anon_sym_GT_GT_GT] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1262), - [anon_sym_PERCENT] = ACTIONS(1262), - [anon_sym_TILDE_SLASH] = ACTIONS(1260), - [sym_increment_operator] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_await] = ACTIONS(1262), - [anon_sym_is] = ACTIONS(1262), - [anon_sym_as] = ACTIONS(1262), - [anon_sym_DOT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(1260), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_assert] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_yield] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_try] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_abstract] = ACTIONS(1262), - [anon_sym_class] = ACTIONS(1262), - [anon_sym_super] = ACTIONS(1262), - [anon_sym_void] = ACTIONS(1262), - [anon_sym_var] = ACTIONS(1262), - [anon_sym_covariant] = ACTIONS(1262), - [anon_sym_Function] = ACTIONS(1262), - [anon_sym_get] = ACTIONS(1262), - [anon_sym_set] = ACTIONS(1262), - [anon_sym_new] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_final] = ACTIONS(1262), - [anon_sym_external] = ACTIONS(1262), - [anon_sym_this] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [anon_sym_POUND] = ACTIONS(1264), - [sym_decimal_integer_literal] = ACTIONS(1266), - [sym_hex_integer_literal] = ACTIONS(1266), - [sym_octal_integer_literal] = ACTIONS(1264), - [sym_binary_integer_literal] = ACTIONS(1264), - [sym_decimal_floating_point_literal] = ACTIONS(1264), - [sym_hex_floating_point_literal] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1264), - [anon_sym_r] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_null] = ACTIONS(1266), - [anon_sym_throw] = ACTIONS(1266), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_AMP_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1264), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PERCENT_EQ] = ACTIONS(1264), - [anon_sym_LT_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_GT_EQ] = ACTIONS(1264), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1264), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_QMARK_QMARK] = ACTIONS(1266), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [sym_equality_operator] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_LT_LT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(1266), - [anon_sym_GT_GT_GT] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1266), - [anon_sym_PERCENT] = ACTIONS(1266), - [anon_sym_TILDE_SLASH] = ACTIONS(1264), - [sym_increment_operator] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_await] = ACTIONS(1266), - [anon_sym_is] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(1266), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_QMARK_DOT] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_assert] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_yield] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_try] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_abstract] = ACTIONS(1266), - [anon_sym_class] = ACTIONS(1266), - [anon_sym_super] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1266), - [anon_sym_var] = ACTIONS(1266), - [anon_sym_covariant] = ACTIONS(1266), - [anon_sym_Function] = ACTIONS(1266), - [anon_sym_get] = ACTIONS(1266), - [anon_sym_set] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_final] = ACTIONS(1266), - [anon_sym_external] = ACTIONS(1266), - [anon_sym_this] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [anon_sym_POUND] = ACTIONS(1268), - [sym_decimal_integer_literal] = ACTIONS(1270), - [sym_hex_integer_literal] = ACTIONS(1270), - [sym_octal_integer_literal] = ACTIONS(1268), - [sym_binary_integer_literal] = ACTIONS(1268), - [sym_decimal_floating_point_literal] = ACTIONS(1268), - [sym_hex_floating_point_literal] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1268), - [anon_sym_r] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_null] = ACTIONS(1270), - [anon_sym_throw] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [sym_equality_operator] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_GT_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_TILDE_SLASH] = ACTIONS(1268), - [sym_increment_operator] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_is] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_DOT] = ACTIONS(1270), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1268), - [anon_sym_assert] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_try] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_abstract] = ACTIONS(1270), - [anon_sym_class] = ACTIONS(1270), - [anon_sym_super] = ACTIONS(1270), - [anon_sym_void] = ACTIONS(1270), - [anon_sym_var] = ACTIONS(1270), - [anon_sym_covariant] = ACTIONS(1270), - [anon_sym_Function] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_new] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_final] = ACTIONS(1270), - [anon_sym_external] = ACTIONS(1270), - [anon_sym_this] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(637), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(637), - [anon_sym_r] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_null] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(639), - [anon_sym_PLUS_EQ] = ACTIONS(637), - [anon_sym_DASH_EQ] = ACTIONS(637), - [anon_sym_STAR_EQ] = ACTIONS(637), - [anon_sym_SLASH_EQ] = ACTIONS(637), - [anon_sym_AMP_EQ] = ACTIONS(637), - [anon_sym_PIPE_EQ] = ACTIONS(637), - [anon_sym_CARET_EQ] = ACTIONS(637), - [anon_sym_PERCENT_EQ] = ACTIONS(637), - [anon_sym_LT_LT_EQ] = ACTIONS(637), - [anon_sym_GT_GT_EQ] = ACTIONS(637), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(637), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_QMARK_QMARK] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [sym_equality_operator] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_GT_GT_GT] = ACTIONS(639), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(639), - [anon_sym_TILDE_SLASH] = ACTIONS(637), - [sym_increment_operator] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_await] = ACTIONS(639), - [anon_sym_is] = ACTIONS(639), - [anon_sym_as] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_QMARK_DOT] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_super] = ACTIONS(639), - [anon_sym_void] = ACTIONS(639), - [anon_sym_var] = ACTIONS(639), - [anon_sym_covariant] = ACTIONS(639), - [anon_sym_Function] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_new] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_external] = ACTIONS(639), - [anon_sym_this] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), - [anon_sym_POUND] = ACTIONS(1272), - [sym_decimal_integer_literal] = ACTIONS(1274), - [sym_hex_integer_literal] = ACTIONS(1274), - [sym_octal_integer_literal] = ACTIONS(1272), - [sym_binary_integer_literal] = ACTIONS(1272), - [sym_decimal_floating_point_literal] = ACTIONS(1272), - [sym_hex_floating_point_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1272), - [anon_sym_r] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_null] = ACTIONS(1274), - [anon_sym_throw] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_QMARK_QMARK] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [sym_equality_operator] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1274), - [anon_sym_GT_GT] = ACTIONS(1274), - [anon_sym_GT_GT_GT] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_TILDE_SLASH] = ACTIONS(1272), - [sym_increment_operator] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_await] = ACTIONS(1274), - [anon_sym_is] = ACTIONS(1274), - [anon_sym_as] = ACTIONS(1274), - [anon_sym_DOT] = ACTIONS(1274), - [anon_sym_QMARK_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_assert] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_AT] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_abstract] = ACTIONS(1274), - [anon_sym_class] = ACTIONS(1274), - [anon_sym_super] = ACTIONS(1274), - [anon_sym_void] = ACTIONS(1274), - [anon_sym_var] = ACTIONS(1274), - [anon_sym_covariant] = ACTIONS(1274), - [anon_sym_Function] = ACTIONS(1274), - [anon_sym_get] = ACTIONS(1274), - [anon_sym_set] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_final] = ACTIONS(1274), - [anon_sym_external] = ACTIONS(1274), - [anon_sym_this] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1276), - [sym_decimal_integer_literal] = ACTIONS(1278), - [sym_hex_integer_literal] = ACTIONS(1278), - [sym_octal_integer_literal] = ACTIONS(1276), - [sym_binary_integer_literal] = ACTIONS(1276), - [sym_decimal_floating_point_literal] = ACTIONS(1276), - [sym_hex_floating_point_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1276), - [anon_sym_r] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1276), - [anon_sym_null] = ACTIONS(1278), - [anon_sym_throw] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_QMARK_QMARK] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [sym_equality_operator] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_GT] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1278), - [anon_sym_GT_GT] = ACTIONS(1278), - [anon_sym_GT_GT_GT] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1278), - [anon_sym_PERCENT] = ACTIONS(1278), - [anon_sym_TILDE_SLASH] = ACTIONS(1276), - [sym_increment_operator] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_await] = ACTIONS(1278), - [anon_sym_is] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_DOT] = ACTIONS(1278), - [anon_sym_QMARK_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_assert] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_abstract] = ACTIONS(1278), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_super] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1278), - [anon_sym_var] = ACTIONS(1278), - [anon_sym_covariant] = ACTIONS(1278), - [anon_sym_Function] = ACTIONS(1278), - [anon_sym_get] = ACTIONS(1278), - [anon_sym_set] = ACTIONS(1278), - [anon_sym_new] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_final] = ACTIONS(1278), - [anon_sym_external] = ACTIONS(1278), - [anon_sym_this] = ACTIONS(1278), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1280), - [sym_decimal_integer_literal] = ACTIONS(1282), - [sym_hex_integer_literal] = ACTIONS(1282), - [sym_octal_integer_literal] = ACTIONS(1280), - [sym_binary_integer_literal] = ACTIONS(1280), - [sym_decimal_floating_point_literal] = ACTIONS(1280), - [sym_hex_floating_point_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1280), - [anon_sym_r] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_throw] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_AMP_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1280), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_QMARK_QMARK] = ACTIONS(1282), - [anon_sym_QMARK] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [sym_equality_operator] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_LT_LT] = ACTIONS(1282), - [anon_sym_GT_GT] = ACTIONS(1282), - [anon_sym_GT_GT_GT] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_PERCENT] = ACTIONS(1282), - [anon_sym_TILDE_SLASH] = ACTIONS(1280), - [sym_increment_operator] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_is] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_QMARK_DOT] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_assert] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_abstract] = ACTIONS(1282), - [anon_sym_class] = ACTIONS(1282), - [anon_sym_super] = ACTIONS(1282), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_var] = ACTIONS(1282), - [anon_sym_covariant] = ACTIONS(1282), - [anon_sym_Function] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_final] = ACTIONS(1282), - [anon_sym_external] = ACTIONS(1282), - [anon_sym_this] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(1284), - [sym_decimal_integer_literal] = ACTIONS(1286), - [sym_hex_integer_literal] = ACTIONS(1286), - [sym_octal_integer_literal] = ACTIONS(1284), - [sym_binary_integer_literal] = ACTIONS(1284), - [sym_decimal_floating_point_literal] = ACTIONS(1284), - [sym_hex_floating_point_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1284), - [anon_sym_r] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_throw] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_QMARK_QMARK] = ACTIONS(1286), - [anon_sym_QMARK] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [sym_equality_operator] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1286), - [anon_sym_GT_GT] = ACTIONS(1286), - [anon_sym_GT_GT_GT] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_PERCENT] = ACTIONS(1286), - [anon_sym_TILDE_SLASH] = ACTIONS(1284), - [sym_increment_operator] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_await] = ACTIONS(1286), - [anon_sym_is] = ACTIONS(1286), - [anon_sym_as] = ACTIONS(1286), - [anon_sym_DOT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(1284), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_assert] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_AT] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_abstract] = ACTIONS(1286), - [anon_sym_class] = ACTIONS(1286), - [anon_sym_super] = ACTIONS(1286), - [anon_sym_void] = ACTIONS(1286), - [anon_sym_var] = ACTIONS(1286), - [anon_sym_covariant] = ACTIONS(1286), - [anon_sym_Function] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_new] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_final] = ACTIONS(1286), - [anon_sym_external] = ACTIONS(1286), - [anon_sym_this] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_POUND] = ACTIONS(1288), - [sym_decimal_integer_literal] = ACTIONS(1290), - [sym_hex_integer_literal] = ACTIONS(1290), - [sym_octal_integer_literal] = ACTIONS(1288), - [sym_binary_integer_literal] = ACTIONS(1288), - [sym_decimal_floating_point_literal] = ACTIONS(1288), - [sym_hex_floating_point_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1288), - [anon_sym_r] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1290), - [anon_sym_throw] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_QMARK_QMARK] = ACTIONS(1290), - [anon_sym_QMARK] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [sym_equality_operator] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_GT_GT_GT] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(1290), - [anon_sym_TILDE_SLASH] = ACTIONS(1288), - [sym_increment_operator] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_await] = ACTIONS(1290), - [anon_sym_is] = ACTIONS(1290), - [anon_sym_as] = ACTIONS(1290), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_QMARK_DOT] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_AT] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_abstract] = ACTIONS(1290), - [anon_sym_class] = ACTIONS(1290), - [anon_sym_super] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_var] = ACTIONS(1290), - [anon_sym_covariant] = ACTIONS(1290), - [anon_sym_Function] = ACTIONS(1290), - [anon_sym_get] = ACTIONS(1290), - [anon_sym_set] = ACTIONS(1290), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_final] = ACTIONS(1290), - [anon_sym_external] = ACTIONS(1290), - [anon_sym_this] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(1292), - [sym_decimal_integer_literal] = ACTIONS(1294), - [sym_hex_integer_literal] = ACTIONS(1294), - [sym_octal_integer_literal] = ACTIONS(1292), - [sym_binary_integer_literal] = ACTIONS(1292), - [sym_decimal_floating_point_literal] = ACTIONS(1292), - [sym_hex_floating_point_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1292), - [anon_sym_r] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_throw] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_QMARK_QMARK] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [sym_equality_operator] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_GT_GT_GT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_TILDE_SLASH] = ACTIONS(1292), - [sym_increment_operator] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_is] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_QMARK_DOT] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1292), - [anon_sym_assert] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_AT] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_abstract] = ACTIONS(1294), - [anon_sym_class] = ACTIONS(1294), - [anon_sym_super] = ACTIONS(1294), - [anon_sym_void] = ACTIONS(1294), - [anon_sym_var] = ACTIONS(1294), - [anon_sym_covariant] = ACTIONS(1294), - [anon_sym_Function] = ACTIONS(1294), - [anon_sym_get] = ACTIONS(1294), - [anon_sym_set] = ACTIONS(1294), - [anon_sym_new] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_final] = ACTIONS(1294), - [anon_sym_external] = ACTIONS(1294), - [anon_sym_this] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(1296), - [sym_decimal_integer_literal] = ACTIONS(1298), - [sym_hex_integer_literal] = ACTIONS(1298), - [sym_octal_integer_literal] = ACTIONS(1296), - [sym_binary_integer_literal] = ACTIONS(1296), - [sym_decimal_floating_point_literal] = ACTIONS(1296), - [sym_hex_floating_point_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1296), - [anon_sym_r] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_throw] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_QMARK_QMARK] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [sym_equality_operator] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_GT_GT_GT] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_TILDE_SLASH] = ACTIONS(1296), - [sym_increment_operator] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_await] = ACTIONS(1298), - [anon_sym_is] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_QMARK_DOT] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_assert] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_abstract] = ACTIONS(1298), - [anon_sym_class] = ACTIONS(1298), - [anon_sym_super] = ACTIONS(1298), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_var] = ACTIONS(1298), - [anon_sym_covariant] = ACTIONS(1298), - [anon_sym_Function] = ACTIONS(1298), - [anon_sym_get] = ACTIONS(1298), - [anon_sym_set] = ACTIONS(1298), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_final] = ACTIONS(1298), - [anon_sym_external] = ACTIONS(1298), - [anon_sym_this] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(1300), - [sym_decimal_integer_literal] = ACTIONS(1302), - [sym_hex_integer_literal] = ACTIONS(1302), - [sym_octal_integer_literal] = ACTIONS(1300), - [sym_binary_integer_literal] = ACTIONS(1300), - [sym_decimal_floating_point_literal] = ACTIONS(1300), - [sym_hex_floating_point_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1300), - [anon_sym_r] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_throw] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [sym_equality_operator] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_TILDE_SLASH] = ACTIONS(1300), - [sym_increment_operator] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_await] = ACTIONS(1302), - [anon_sym_is] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_QMARK_DOT] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_assert] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_abstract] = ACTIONS(1302), - [anon_sym_class] = ACTIONS(1302), - [anon_sym_super] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1302), - [anon_sym_var] = ACTIONS(1302), - [anon_sym_covariant] = ACTIONS(1302), - [anon_sym_Function] = ACTIONS(1302), - [anon_sym_get] = ACTIONS(1302), - [anon_sym_set] = ACTIONS(1302), - [anon_sym_new] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_final] = ACTIONS(1302), - [anon_sym_external] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [sym_decimal_integer_literal] = ACTIONS(1306), - [sym_hex_integer_literal] = ACTIONS(1306), - [sym_octal_integer_literal] = ACTIONS(1304), - [sym_binary_integer_literal] = ACTIONS(1304), - [sym_decimal_floating_point_literal] = ACTIONS(1304), - [sym_hex_floating_point_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1304), - [anon_sym_r] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_null] = ACTIONS(1306), - [anon_sym_throw] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_QMARK_QMARK] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [sym_equality_operator] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_GT_GT_GT] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_SLASH] = ACTIONS(1306), - [anon_sym_PERCENT] = ACTIONS(1306), - [anon_sym_TILDE_SLASH] = ACTIONS(1304), - [sym_increment_operator] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_await] = ACTIONS(1306), - [anon_sym_is] = ACTIONS(1306), - [anon_sym_as] = ACTIONS(1306), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_QMARK_DOT] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_assert] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_try] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_abstract] = ACTIONS(1306), - [anon_sym_class] = ACTIONS(1306), - [anon_sym_super] = ACTIONS(1306), - [anon_sym_void] = ACTIONS(1306), - [anon_sym_var] = ACTIONS(1306), - [anon_sym_covariant] = ACTIONS(1306), - [anon_sym_Function] = ACTIONS(1306), - [anon_sym_get] = ACTIONS(1306), - [anon_sym_set] = ACTIONS(1306), - [anon_sym_new] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_final] = ACTIONS(1306), - [anon_sym_external] = ACTIONS(1306), - [anon_sym_this] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [sym_decimal_integer_literal] = ACTIONS(1310), - [sym_hex_integer_literal] = ACTIONS(1310), - [sym_octal_integer_literal] = ACTIONS(1308), - [sym_binary_integer_literal] = ACTIONS(1308), - [sym_decimal_floating_point_literal] = ACTIONS(1308), - [sym_hex_floating_point_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1308), - [anon_sym_r] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1310), - [anon_sym_throw] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_QMARK_QMARK] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [sym_equality_operator] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_GT_GT_GT] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_TILDE_SLASH] = ACTIONS(1308), - [sym_increment_operator] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_await] = ACTIONS(1310), - [anon_sym_is] = ACTIONS(1310), - [anon_sym_as] = ACTIONS(1310), - [anon_sym_DOT] = ACTIONS(1310), - [anon_sym_QMARK_DOT] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_assert] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_try] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_AT] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_abstract] = ACTIONS(1310), - [anon_sym_class] = ACTIONS(1310), - [anon_sym_super] = ACTIONS(1310), - [anon_sym_void] = ACTIONS(1310), - [anon_sym_var] = ACTIONS(1310), - [anon_sym_covariant] = ACTIONS(1310), - [anon_sym_Function] = ACTIONS(1310), - [anon_sym_get] = ACTIONS(1310), - [anon_sym_set] = ACTIONS(1310), - [anon_sym_new] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_final] = ACTIONS(1310), - [anon_sym_external] = ACTIONS(1310), - [anon_sym_this] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [sym_decimal_integer_literal] = ACTIONS(1314), - [sym_hex_integer_literal] = ACTIONS(1314), - [sym_octal_integer_literal] = ACTIONS(1312), - [sym_binary_integer_literal] = ACTIONS(1312), - [sym_decimal_floating_point_literal] = ACTIONS(1312), - [sym_hex_floating_point_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1312), - [anon_sym_r] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1314), - [anon_sym_throw] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_STAR_EQ] = ACTIONS(1312), - [anon_sym_SLASH_EQ] = ACTIONS(1312), - [anon_sym_AMP_EQ] = ACTIONS(1312), - [anon_sym_PIPE_EQ] = ACTIONS(1312), - [anon_sym_CARET_EQ] = ACTIONS(1312), - [anon_sym_PERCENT_EQ] = ACTIONS(1312), - [anon_sym_LT_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_GT_EQ] = ACTIONS(1312), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1312), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_QMARK_QMARK] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [sym_equality_operator] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_GT_GT_GT] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1314), - [anon_sym_TILDE_SLASH] = ACTIONS(1312), - [sym_increment_operator] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_is] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_DOT] = ACTIONS(1314), - [anon_sym_QMARK_DOT] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_abstract] = ACTIONS(1314), - [anon_sym_class] = ACTIONS(1314), - [anon_sym_super] = ACTIONS(1314), - [anon_sym_void] = ACTIONS(1314), - [anon_sym_var] = ACTIONS(1314), - [anon_sym_covariant] = ACTIONS(1314), - [anon_sym_Function] = ACTIONS(1314), - [anon_sym_get] = ACTIONS(1314), - [anon_sym_set] = ACTIONS(1314), - [anon_sym_new] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_final] = ACTIONS(1314), - [anon_sym_external] = ACTIONS(1314), - [anon_sym_this] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_POUND] = ACTIONS(1316), - [sym_decimal_integer_literal] = ACTIONS(1318), - [sym_hex_integer_literal] = ACTIONS(1318), - [sym_octal_integer_literal] = ACTIONS(1316), - [sym_binary_integer_literal] = ACTIONS(1316), - [sym_decimal_floating_point_literal] = ACTIONS(1316), - [sym_hex_floating_point_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1316), - [anon_sym_r] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1318), - [anon_sym_throw] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_AMP_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1316), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_GT_EQ] = ACTIONS(1316), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1316), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_QMARK_QMARK] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [sym_equality_operator] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_GT_GT_GT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_TILDE_SLASH] = ACTIONS(1316), - [sym_increment_operator] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_await] = ACTIONS(1318), - [anon_sym_is] = ACTIONS(1318), - [anon_sym_as] = ACTIONS(1318), - [anon_sym_DOT] = ACTIONS(1318), - [anon_sym_QMARK_DOT] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_assert] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_abstract] = ACTIONS(1318), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_super] = ACTIONS(1318), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_var] = ACTIONS(1318), - [anon_sym_covariant] = ACTIONS(1318), - [anon_sym_Function] = ACTIONS(1318), - [anon_sym_get] = ACTIONS(1318), - [anon_sym_set] = ACTIONS(1318), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_final] = ACTIONS(1318), - [anon_sym_external] = ACTIONS(1318), - [anon_sym_this] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_POUND] = ACTIONS(1320), - [sym_decimal_integer_literal] = ACTIONS(1322), - [sym_hex_integer_literal] = ACTIONS(1322), - [sym_octal_integer_literal] = ACTIONS(1320), - [sym_binary_integer_literal] = ACTIONS(1320), - [sym_decimal_floating_point_literal] = ACTIONS(1320), - [sym_hex_floating_point_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1320), - [anon_sym_r] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_COMMA] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1322), - [anon_sym_throw] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_AMP_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1320), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1320), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_QMARK_QMARK] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [sym_equality_operator] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_GT_GT_GT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_TILDE_SLASH] = ACTIONS(1320), - [sym_increment_operator] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_await] = ACTIONS(1322), - [anon_sym_is] = ACTIONS(1322), - [anon_sym_as] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_QMARK_DOT] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_assert] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_AT] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_abstract] = ACTIONS(1322), - [anon_sym_class] = ACTIONS(1322), - [anon_sym_super] = ACTIONS(1322), - [anon_sym_void] = ACTIONS(1322), - [anon_sym_var] = ACTIONS(1322), - [anon_sym_covariant] = ACTIONS(1322), - [anon_sym_Function] = ACTIONS(1322), - [anon_sym_get] = ACTIONS(1322), - [anon_sym_set] = ACTIONS(1322), - [anon_sym_new] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_final] = ACTIONS(1322), - [anon_sym_external] = ACTIONS(1322), - [anon_sym_this] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [sym_decimal_integer_literal] = ACTIONS(1326), - [sym_hex_integer_literal] = ACTIONS(1326), - [sym_octal_integer_literal] = ACTIONS(1324), - [sym_binary_integer_literal] = ACTIONS(1324), - [sym_decimal_floating_point_literal] = ACTIONS(1324), - [sym_hex_floating_point_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1324), - [anon_sym_r] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_null] = ACTIONS(1326), - [anon_sym_throw] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_AMP_EQ] = ACTIONS(1324), - [anon_sym_PIPE_EQ] = ACTIONS(1324), - [anon_sym_CARET_EQ] = ACTIONS(1324), - [anon_sym_PERCENT_EQ] = ACTIONS(1324), - [anon_sym_LT_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_GT_EQ] = ACTIONS(1324), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_QMARK_QMARK] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [sym_equality_operator] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_GT_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_TILDE_SLASH] = ACTIONS(1324), - [sym_increment_operator] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(1326), - [anon_sym_as] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(1326), - [anon_sym_QMARK_DOT] = ACTIONS(1324), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_assert] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_try] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_abstract] = ACTIONS(1326), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_super] = ACTIONS(1326), - [anon_sym_void] = ACTIONS(1326), - [anon_sym_var] = ACTIONS(1326), - [anon_sym_covariant] = ACTIONS(1326), - [anon_sym_Function] = ACTIONS(1326), - [anon_sym_get] = ACTIONS(1326), - [anon_sym_set] = ACTIONS(1326), - [anon_sym_new] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_final] = ACTIONS(1326), - [anon_sym_external] = ACTIONS(1326), - [anon_sym_this] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_POUND] = ACTIONS(1328), - [sym_decimal_integer_literal] = ACTIONS(1330), - [sym_hex_integer_literal] = ACTIONS(1330), - [sym_octal_integer_literal] = ACTIONS(1328), - [sym_binary_integer_literal] = ACTIONS(1328), - [sym_decimal_floating_point_literal] = ACTIONS(1328), - [sym_hex_floating_point_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1328), - [anon_sym_r] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_COMMA] = ACTIONS(1328), - [anon_sym_null] = ACTIONS(1330), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [anon_sym_DASH_EQ] = ACTIONS(1328), - [anon_sym_STAR_EQ] = ACTIONS(1328), - [anon_sym_SLASH_EQ] = ACTIONS(1328), - [anon_sym_AMP_EQ] = ACTIONS(1328), - [anon_sym_PIPE_EQ] = ACTIONS(1328), - [anon_sym_CARET_EQ] = ACTIONS(1328), - [anon_sym_PERCENT_EQ] = ACTIONS(1328), - [anon_sym_LT_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_GT_EQ] = ACTIONS(1328), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1328), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_QMARK_QMARK] = ACTIONS(1330), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [sym_equality_operator] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_GT] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_LT_LT] = ACTIONS(1330), - [anon_sym_GT_GT] = ACTIONS(1330), - [anon_sym_GT_GT_GT] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1330), - [anon_sym_PERCENT] = ACTIONS(1330), - [anon_sym_TILDE_SLASH] = ACTIONS(1328), - [sym_increment_operator] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_await] = ACTIONS(1330), - [anon_sym_is] = ACTIONS(1330), - [anon_sym_as] = ACTIONS(1330), - [anon_sym_DOT] = ACTIONS(1330), - [anon_sym_QMARK_DOT] = ACTIONS(1328), - [anon_sym_DOT_DOT] = ACTIONS(1328), - [anon_sym_assert] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_try] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_AT] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_abstract] = ACTIONS(1330), - [anon_sym_class] = ACTIONS(1330), - [anon_sym_super] = ACTIONS(1330), - [anon_sym_void] = ACTIONS(1330), - [anon_sym_var] = ACTIONS(1330), - [anon_sym_covariant] = ACTIONS(1330), - [anon_sym_Function] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_new] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_final] = ACTIONS(1330), - [anon_sym_external] = ACTIONS(1330), - [anon_sym_this] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1334), - [anon_sym_POUND] = ACTIONS(1332), - [sym_decimal_integer_literal] = ACTIONS(1334), - [sym_hex_integer_literal] = ACTIONS(1334), - [sym_octal_integer_literal] = ACTIONS(1332), - [sym_binary_integer_literal] = ACTIONS(1332), - [sym_decimal_floating_point_literal] = ACTIONS(1332), - [sym_hex_floating_point_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1332), - [anon_sym_r] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1334), - [anon_sym_throw] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1334), - [anon_sym_PLUS_EQ] = ACTIONS(1332), - [anon_sym_DASH_EQ] = ACTIONS(1332), - [anon_sym_STAR_EQ] = ACTIONS(1332), - [anon_sym_SLASH_EQ] = ACTIONS(1332), - [anon_sym_AMP_EQ] = ACTIONS(1332), - [anon_sym_PIPE_EQ] = ACTIONS(1332), - [anon_sym_CARET_EQ] = ACTIONS(1332), - [anon_sym_PERCENT_EQ] = ACTIONS(1332), - [anon_sym_LT_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_GT_EQ] = ACTIONS(1332), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1332), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_QMARK_QMARK] = ACTIONS(1334), - [anon_sym_QMARK] = ACTIONS(1334), - [anon_sym_PIPE_PIPE] = ACTIONS(1332), - [anon_sym_AMP_AMP] = ACTIONS(1332), - [sym_equality_operator] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_CARET] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_LT_LT] = ACTIONS(1334), - [anon_sym_GT_GT] = ACTIONS(1334), - [anon_sym_GT_GT_GT] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym_PERCENT] = ACTIONS(1334), - [anon_sym_TILDE_SLASH] = ACTIONS(1332), - [sym_increment_operator] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_await] = ACTIONS(1334), - [anon_sym_is] = ACTIONS(1334), - [anon_sym_as] = ACTIONS(1334), - [anon_sym_DOT] = ACTIONS(1334), - [anon_sym_QMARK_DOT] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_assert] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_try] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_AT] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_class] = ACTIONS(1334), - [anon_sym_super] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1334), - [anon_sym_var] = ACTIONS(1334), - [anon_sym_covariant] = ACTIONS(1334), - [anon_sym_Function] = ACTIONS(1334), - [anon_sym_get] = ACTIONS(1334), - [anon_sym_set] = ACTIONS(1334), - [anon_sym_new] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_final] = ACTIONS(1334), - [anon_sym_external] = ACTIONS(1334), - [anon_sym_this] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1336), - [sym_decimal_integer_literal] = ACTIONS(1338), - [sym_hex_integer_literal] = ACTIONS(1338), - [sym_octal_integer_literal] = ACTIONS(1336), - [sym_binary_integer_literal] = ACTIONS(1336), - [sym_decimal_floating_point_literal] = ACTIONS(1336), - [sym_hex_floating_point_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1336), - [anon_sym_r] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_throw] = ACTIONS(1338), - [anon_sym_EQ] = ACTIONS(1338), - [anon_sym_PLUS_EQ] = ACTIONS(1336), - [anon_sym_DASH_EQ] = ACTIONS(1336), - [anon_sym_STAR_EQ] = ACTIONS(1336), - [anon_sym_SLASH_EQ] = ACTIONS(1336), - [anon_sym_AMP_EQ] = ACTIONS(1336), - [anon_sym_PIPE_EQ] = ACTIONS(1336), - [anon_sym_CARET_EQ] = ACTIONS(1336), - [anon_sym_PERCENT_EQ] = ACTIONS(1336), - [anon_sym_LT_LT_EQ] = ACTIONS(1336), - [anon_sym_GT_GT_EQ] = ACTIONS(1336), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1336), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_QMARK_QMARK] = ACTIONS(1338), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1336), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [sym_equality_operator] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_LT_LT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_GT_GT_GT] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_PERCENT] = ACTIONS(1338), - [anon_sym_TILDE_SLASH] = ACTIONS(1336), - [sym_increment_operator] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_is] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_QMARK_DOT] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_assert] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_AT] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_abstract] = ACTIONS(1338), - [anon_sym_class] = ACTIONS(1338), - [anon_sym_super] = ACTIONS(1338), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_var] = ACTIONS(1338), - [anon_sym_covariant] = ACTIONS(1338), - [anon_sym_Function] = ACTIONS(1338), - [anon_sym_get] = ACTIONS(1338), - [anon_sym_set] = ACTIONS(1338), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_final] = ACTIONS(1338), - [anon_sym_external] = ACTIONS(1338), - [anon_sym_this] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1340), - [sym_decimal_integer_literal] = ACTIONS(1342), - [sym_hex_integer_literal] = ACTIONS(1342), - [sym_octal_integer_literal] = ACTIONS(1340), - [sym_binary_integer_literal] = ACTIONS(1340), - [sym_decimal_floating_point_literal] = ACTIONS(1340), - [sym_hex_floating_point_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1340), - [anon_sym_r] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(1340), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_throw] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1340), - [anon_sym_DASH_EQ] = ACTIONS(1340), - [anon_sym_STAR_EQ] = ACTIONS(1340), - [anon_sym_SLASH_EQ] = ACTIONS(1340), - [anon_sym_AMP_EQ] = ACTIONS(1340), - [anon_sym_PIPE_EQ] = ACTIONS(1340), - [anon_sym_CARET_EQ] = ACTIONS(1340), - [anon_sym_PERCENT_EQ] = ACTIONS(1340), - [anon_sym_LT_LT_EQ] = ACTIONS(1340), - [anon_sym_GT_GT_EQ] = ACTIONS(1340), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1340), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_QMARK_QMARK] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [sym_equality_operator] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1340), - [anon_sym_LT_EQ] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_GT_GT_GT] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_TILDE_SLASH] = ACTIONS(1340), - [sym_increment_operator] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_is] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_QMARK_DOT] = ACTIONS(1340), - [anon_sym_DOT_DOT] = ACTIONS(1340), - [anon_sym_assert] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_class] = ACTIONS(1342), - [anon_sym_super] = ACTIONS(1342), - [anon_sym_void] = ACTIONS(1342), - [anon_sym_var] = ACTIONS(1342), - [anon_sym_covariant] = ACTIONS(1342), - [anon_sym_Function] = ACTIONS(1342), - [anon_sym_get] = ACTIONS(1342), - [anon_sym_set] = ACTIONS(1342), - [anon_sym_new] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_final] = ACTIONS(1342), - [anon_sym_external] = ACTIONS(1342), - [anon_sym_this] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1344), - [sym_decimal_integer_literal] = ACTIONS(1346), - [sym_hex_integer_literal] = ACTIONS(1346), - [sym_octal_integer_literal] = ACTIONS(1344), - [sym_binary_integer_literal] = ACTIONS(1344), - [sym_decimal_floating_point_literal] = ACTIONS(1344), - [sym_hex_floating_point_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1344), - [anon_sym_r] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_throw] = ACTIONS(1346), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1344), - [anon_sym_DASH_EQ] = ACTIONS(1344), - [anon_sym_STAR_EQ] = ACTIONS(1344), - [anon_sym_SLASH_EQ] = ACTIONS(1344), - [anon_sym_AMP_EQ] = ACTIONS(1344), - [anon_sym_PIPE_EQ] = ACTIONS(1344), - [anon_sym_CARET_EQ] = ACTIONS(1344), - [anon_sym_PERCENT_EQ] = ACTIONS(1344), - [anon_sym_LT_LT_EQ] = ACTIONS(1344), - [anon_sym_GT_GT_EQ] = ACTIONS(1344), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1344), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_QMARK_QMARK] = ACTIONS(1346), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [sym_equality_operator] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_GT_GT_GT] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_TILDE_SLASH] = ACTIONS(1344), - [sym_increment_operator] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_await] = ACTIONS(1346), - [anon_sym_is] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_QMARK_DOT] = ACTIONS(1344), - [anon_sym_DOT_DOT] = ACTIONS(1344), - [anon_sym_assert] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_abstract] = ACTIONS(1346), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_super] = ACTIONS(1346), - [anon_sym_void] = ACTIONS(1346), - [anon_sym_var] = ACTIONS(1346), - [anon_sym_covariant] = ACTIONS(1346), - [anon_sym_Function] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_final] = ACTIONS(1346), - [anon_sym_external] = ACTIONS(1346), - [anon_sym_this] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1348), - [sym_decimal_integer_literal] = ACTIONS(1350), - [sym_hex_integer_literal] = ACTIONS(1350), - [sym_octal_integer_literal] = ACTIONS(1348), - [sym_binary_integer_literal] = ACTIONS(1348), - [sym_decimal_floating_point_literal] = ACTIONS(1348), - [sym_hex_floating_point_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1348), - [anon_sym_r] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_throw] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_PLUS_EQ] = ACTIONS(1348), - [anon_sym_DASH_EQ] = ACTIONS(1348), - [anon_sym_STAR_EQ] = ACTIONS(1348), - [anon_sym_SLASH_EQ] = ACTIONS(1348), - [anon_sym_AMP_EQ] = ACTIONS(1348), - [anon_sym_PIPE_EQ] = ACTIONS(1348), - [anon_sym_CARET_EQ] = ACTIONS(1348), - [anon_sym_PERCENT_EQ] = ACTIONS(1348), - [anon_sym_LT_LT_EQ] = ACTIONS(1348), - [anon_sym_GT_GT_EQ] = ACTIONS(1348), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1348), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_QMARK_QMARK] = ACTIONS(1350), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [sym_equality_operator] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_GT_GT_GT] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_TILDE_SLASH] = ACTIONS(1348), - [sym_increment_operator] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_is] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_QMARK_DOT] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1350), - [anon_sym_class] = ACTIONS(1350), - [anon_sym_super] = ACTIONS(1350), - [anon_sym_void] = ACTIONS(1350), - [anon_sym_var] = ACTIONS(1350), - [anon_sym_covariant] = ACTIONS(1350), - [anon_sym_Function] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_final] = ACTIONS(1350), - [anon_sym_external] = ACTIONS(1350), - [anon_sym_this] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1352), - [sym_decimal_integer_literal] = ACTIONS(1354), - [sym_hex_integer_literal] = ACTIONS(1354), - [sym_octal_integer_literal] = ACTIONS(1352), - [sym_binary_integer_literal] = ACTIONS(1352), - [sym_decimal_floating_point_literal] = ACTIONS(1352), - [sym_hex_floating_point_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1352), - [anon_sym_r] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_AMP_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1352), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1352), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_QMARK_QMARK] = ACTIONS(1354), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [sym_equality_operator] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1354), - [anon_sym_GT_GT] = ACTIONS(1354), - [anon_sym_GT_GT_GT] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_TILDE_SLASH] = ACTIONS(1352), - [sym_increment_operator] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_await] = ACTIONS(1354), - [anon_sym_is] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_QMARK_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_assert] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_abstract] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(1354), - [anon_sym_super] = ACTIONS(1354), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_var] = ACTIONS(1354), - [anon_sym_covariant] = ACTIONS(1354), - [anon_sym_Function] = ACTIONS(1354), - [anon_sym_get] = ACTIONS(1354), - [anon_sym_set] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_final] = ACTIONS(1354), - [anon_sym_external] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1356), - [sym_decimal_integer_literal] = ACTIONS(1358), - [sym_hex_integer_literal] = ACTIONS(1358), - [sym_octal_integer_literal] = ACTIONS(1356), - [sym_binary_integer_literal] = ACTIONS(1356), - [sym_decimal_floating_point_literal] = ACTIONS(1356), - [sym_hex_floating_point_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1356), - [anon_sym_r] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_throw] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_PLUS_EQ] = ACTIONS(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), - [anon_sym_STAR_EQ] = ACTIONS(1356), - [anon_sym_SLASH_EQ] = ACTIONS(1356), - [anon_sym_AMP_EQ] = ACTIONS(1356), - [anon_sym_PIPE_EQ] = ACTIONS(1356), - [anon_sym_CARET_EQ] = ACTIONS(1356), - [anon_sym_PERCENT_EQ] = ACTIONS(1356), - [anon_sym_LT_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_GT_EQ] = ACTIONS(1356), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1356), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_QMARK_QMARK] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [sym_equality_operator] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1358), - [anon_sym_GT_GT] = ACTIONS(1358), - [anon_sym_GT_GT_GT] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_TILDE_SLASH] = ACTIONS(1356), - [sym_increment_operator] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_await] = ACTIONS(1358), - [anon_sym_is] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_QMARK_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_assert] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_abstract] = ACTIONS(1358), - [anon_sym_class] = ACTIONS(1358), - [anon_sym_super] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_var] = ACTIONS(1358), - [anon_sym_covariant] = ACTIONS(1358), - [anon_sym_Function] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_new] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_final] = ACTIONS(1358), - [anon_sym_external] = ACTIONS(1358), - [anon_sym_this] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1360), - [sym_decimal_integer_literal] = ACTIONS(1362), - [sym_hex_integer_literal] = ACTIONS(1362), - [sym_octal_integer_literal] = ACTIONS(1360), - [sym_binary_integer_literal] = ACTIONS(1360), - [sym_decimal_floating_point_literal] = ACTIONS(1360), - [sym_hex_floating_point_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1360), - [anon_sym_r] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_throw] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_PLUS_EQ] = ACTIONS(1360), - [anon_sym_DASH_EQ] = ACTIONS(1360), - [anon_sym_STAR_EQ] = ACTIONS(1360), - [anon_sym_SLASH_EQ] = ACTIONS(1360), - [anon_sym_AMP_EQ] = ACTIONS(1360), - [anon_sym_PIPE_EQ] = ACTIONS(1360), - [anon_sym_CARET_EQ] = ACTIONS(1360), - [anon_sym_PERCENT_EQ] = ACTIONS(1360), - [anon_sym_LT_LT_EQ] = ACTIONS(1360), - [anon_sym_GT_GT_EQ] = ACTIONS(1360), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1360), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_QMARK_QMARK] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_AMP_AMP] = ACTIONS(1360), - [sym_equality_operator] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1362), - [anon_sym_GT_GT] = ACTIONS(1362), - [anon_sym_GT_GT_GT] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_TILDE_SLASH] = ACTIONS(1360), - [sym_increment_operator] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_await] = ACTIONS(1362), - [anon_sym_is] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_QMARK_DOT] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1360), - [anon_sym_assert] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(1362), - [anon_sym_class] = ACTIONS(1362), - [anon_sym_super] = ACTIONS(1362), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_var] = ACTIONS(1362), - [anon_sym_covariant] = ACTIONS(1362), - [anon_sym_Function] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_new] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_final] = ACTIONS(1362), - [anon_sym_external] = ACTIONS(1362), - [anon_sym_this] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1364), - [sym_decimal_integer_literal] = ACTIONS(1366), - [sym_hex_integer_literal] = ACTIONS(1366), - [sym_octal_integer_literal] = ACTIONS(1364), - [sym_binary_integer_literal] = ACTIONS(1364), - [sym_decimal_floating_point_literal] = ACTIONS(1364), - [sym_hex_floating_point_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1364), - [anon_sym_r] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_null] = ACTIONS(1366), - [anon_sym_throw] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1366), - [anon_sym_PLUS_EQ] = ACTIONS(1364), - [anon_sym_DASH_EQ] = ACTIONS(1364), - [anon_sym_STAR_EQ] = ACTIONS(1364), - [anon_sym_SLASH_EQ] = ACTIONS(1364), - [anon_sym_AMP_EQ] = ACTIONS(1364), - [anon_sym_PIPE_EQ] = ACTIONS(1364), - [anon_sym_CARET_EQ] = ACTIONS(1364), - [anon_sym_PERCENT_EQ] = ACTIONS(1364), - [anon_sym_LT_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_GT_EQ] = ACTIONS(1364), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1364), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_QMARK_QMARK] = ACTIONS(1366), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [sym_equality_operator] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_CARET] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1366), - [anon_sym_GT_GT] = ACTIONS(1366), - [anon_sym_GT_GT_GT] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1366), - [anon_sym_PERCENT] = ACTIONS(1366), - [anon_sym_TILDE_SLASH] = ACTIONS(1364), - [sym_increment_operator] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_await] = ACTIONS(1366), - [anon_sym_is] = ACTIONS(1366), - [anon_sym_as] = ACTIONS(1366), - [anon_sym_DOT] = ACTIONS(1366), - [anon_sym_QMARK_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_assert] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_try] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_AT] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_abstract] = ACTIONS(1366), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_super] = ACTIONS(1366), - [anon_sym_void] = ACTIONS(1366), - [anon_sym_var] = ACTIONS(1366), - [anon_sym_covariant] = ACTIONS(1366), - [anon_sym_Function] = ACTIONS(1366), - [anon_sym_get] = ACTIONS(1366), - [anon_sym_set] = ACTIONS(1366), - [anon_sym_new] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_final] = ACTIONS(1366), - [anon_sym_external] = ACTIONS(1366), - [anon_sym_this] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_PLUS_EQ] = ACTIONS(1166), - [anon_sym_DASH_EQ] = ACTIONS(1166), - [anon_sym_STAR_EQ] = ACTIONS(1166), - [anon_sym_SLASH_EQ] = ACTIONS(1166), - [anon_sym_AMP_EQ] = ACTIONS(1166), - [anon_sym_PIPE_EQ] = ACTIONS(1166), - [anon_sym_CARET_EQ] = ACTIONS(1166), - [anon_sym_PERCENT_EQ] = ACTIONS(1166), - [anon_sym_LT_LT_EQ] = ACTIONS(1166), - [anon_sym_GT_GT_EQ] = ACTIONS(1166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_QMARK_QMARK] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1368), - [sym_decimal_integer_literal] = ACTIONS(1370), - [sym_hex_integer_literal] = ACTIONS(1370), - [sym_octal_integer_literal] = ACTIONS(1368), - [sym_binary_integer_literal] = ACTIONS(1368), - [sym_decimal_floating_point_literal] = ACTIONS(1368), - [sym_hex_floating_point_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1368), - [anon_sym_r] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_throw] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_PLUS_EQ] = ACTIONS(1368), - [anon_sym_DASH_EQ] = ACTIONS(1368), - [anon_sym_STAR_EQ] = ACTIONS(1368), - [anon_sym_SLASH_EQ] = ACTIONS(1368), - [anon_sym_AMP_EQ] = ACTIONS(1368), - [anon_sym_PIPE_EQ] = ACTIONS(1368), - [anon_sym_CARET_EQ] = ACTIONS(1368), - [anon_sym_PERCENT_EQ] = ACTIONS(1368), - [anon_sym_LT_LT_EQ] = ACTIONS(1368), - [anon_sym_GT_GT_EQ] = ACTIONS(1368), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1368), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_QMARK_QMARK] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1368), - [sym_equality_operator] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1370), - [anon_sym_GT_GT_GT] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_TILDE_SLASH] = ACTIONS(1368), - [sym_increment_operator] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_await] = ACTIONS(1370), - [anon_sym_is] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_QMARK_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_yield] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(1370), - [anon_sym_class] = ACTIONS(1370), - [anon_sym_super] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_covariant] = ACTIONS(1370), - [anon_sym_Function] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_new] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_final] = ACTIONS(1370), - [anon_sym_external] = ACTIONS(1370), - [anon_sym_this] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1372), - [sym_decimal_integer_literal] = ACTIONS(1374), - [sym_hex_integer_literal] = ACTIONS(1374), - [sym_octal_integer_literal] = ACTIONS(1372), - [sym_binary_integer_literal] = ACTIONS(1372), - [sym_decimal_floating_point_literal] = ACTIONS(1372), - [sym_hex_floating_point_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1372), - [anon_sym_r] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_COMMA] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1374), - [anon_sym_throw] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1374), - [anon_sym_PLUS_EQ] = ACTIONS(1372), - [anon_sym_DASH_EQ] = ACTIONS(1372), - [anon_sym_STAR_EQ] = ACTIONS(1372), - [anon_sym_SLASH_EQ] = ACTIONS(1372), - [anon_sym_AMP_EQ] = ACTIONS(1372), - [anon_sym_PIPE_EQ] = ACTIONS(1372), - [anon_sym_CARET_EQ] = ACTIONS(1372), - [anon_sym_PERCENT_EQ] = ACTIONS(1372), - [anon_sym_LT_LT_EQ] = ACTIONS(1372), - [anon_sym_GT_GT_EQ] = ACTIONS(1372), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1372), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_QMARK_QMARK] = ACTIONS(1374), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [sym_equality_operator] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1374), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_CARET] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1374), - [anon_sym_GT_GT] = ACTIONS(1374), - [anon_sym_GT_GT_GT] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1374), - [anon_sym_PERCENT] = ACTIONS(1374), - [anon_sym_TILDE_SLASH] = ACTIONS(1372), - [sym_increment_operator] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_is] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(1374), - [anon_sym_QMARK_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_assert] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_try] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_AT] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_abstract] = ACTIONS(1374), - [anon_sym_class] = ACTIONS(1374), - [anon_sym_super] = ACTIONS(1374), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_var] = ACTIONS(1374), - [anon_sym_covariant] = ACTIONS(1374), - [anon_sym_Function] = ACTIONS(1374), - [anon_sym_get] = ACTIONS(1374), - [anon_sym_set] = ACTIONS(1374), - [anon_sym_new] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_final] = ACTIONS(1374), - [anon_sym_external] = ACTIONS(1374), - [anon_sym_this] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1376), - [sym_decimal_integer_literal] = ACTIONS(1378), - [sym_hex_integer_literal] = ACTIONS(1378), - [sym_octal_integer_literal] = ACTIONS(1376), - [sym_binary_integer_literal] = ACTIONS(1376), - [sym_decimal_floating_point_literal] = ACTIONS(1376), - [sym_hex_floating_point_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1376), - [anon_sym_r] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_throw] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1378), - [anon_sym_PLUS_EQ] = ACTIONS(1376), - [anon_sym_DASH_EQ] = ACTIONS(1376), - [anon_sym_STAR_EQ] = ACTIONS(1376), - [anon_sym_SLASH_EQ] = ACTIONS(1376), - [anon_sym_AMP_EQ] = ACTIONS(1376), - [anon_sym_PIPE_EQ] = ACTIONS(1376), - [anon_sym_CARET_EQ] = ACTIONS(1376), - [anon_sym_PERCENT_EQ] = ACTIONS(1376), - [anon_sym_LT_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_GT_EQ] = ACTIONS(1376), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1376), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_QMARK_QMARK] = ACTIONS(1378), - [anon_sym_QMARK] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1376), - [sym_equality_operator] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_CARET] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1378), - [anon_sym_GT_GT] = ACTIONS(1378), - [anon_sym_GT_GT_GT] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1378), - [anon_sym_PERCENT] = ACTIONS(1378), - [anon_sym_TILDE_SLASH] = ACTIONS(1376), - [sym_increment_operator] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_is] = ACTIONS(1378), - [anon_sym_as] = ACTIONS(1378), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_QMARK_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_assert] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_abstract] = ACTIONS(1378), - [anon_sym_class] = ACTIONS(1378), - [anon_sym_super] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1378), - [anon_sym_var] = ACTIONS(1378), - [anon_sym_covariant] = ACTIONS(1378), - [anon_sym_Function] = ACTIONS(1378), - [anon_sym_get] = ACTIONS(1378), - [anon_sym_set] = ACTIONS(1378), - [anon_sym_new] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_final] = ACTIONS(1378), - [anon_sym_external] = ACTIONS(1378), - [anon_sym_this] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1380), - [sym_decimal_integer_literal] = ACTIONS(1382), - [sym_hex_integer_literal] = ACTIONS(1382), - [sym_octal_integer_literal] = ACTIONS(1380), - [sym_binary_integer_literal] = ACTIONS(1380), - [sym_decimal_floating_point_literal] = ACTIONS(1380), - [sym_hex_floating_point_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1380), - [anon_sym_r] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_COMMA] = ACTIONS(1380), - [anon_sym_null] = ACTIONS(1382), - [anon_sym_throw] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1382), - [anon_sym_PLUS_EQ] = ACTIONS(1380), - [anon_sym_DASH_EQ] = ACTIONS(1380), - [anon_sym_STAR_EQ] = ACTIONS(1380), - [anon_sym_SLASH_EQ] = ACTIONS(1380), - [anon_sym_AMP_EQ] = ACTIONS(1380), - [anon_sym_PIPE_EQ] = ACTIONS(1380), - [anon_sym_CARET_EQ] = ACTIONS(1380), - [anon_sym_PERCENT_EQ] = ACTIONS(1380), - [anon_sym_LT_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_GT_EQ] = ACTIONS(1380), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1380), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_QMARK_QMARK] = ACTIONS(1382), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [sym_equality_operator] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1382), - [anon_sym_GT_GT] = ACTIONS(1382), - [anon_sym_GT_GT_GT] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1382), - [anon_sym_TILDE_SLASH] = ACTIONS(1380), - [sym_increment_operator] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_await] = ACTIONS(1382), - [anon_sym_is] = ACTIONS(1382), - [anon_sym_as] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_QMARK_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_try] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_abstract] = ACTIONS(1382), - [anon_sym_class] = ACTIONS(1382), - [anon_sym_super] = ACTIONS(1382), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_covariant] = ACTIONS(1382), - [anon_sym_Function] = ACTIONS(1382), - [anon_sym_get] = ACTIONS(1382), - [anon_sym_set] = ACTIONS(1382), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_final] = ACTIONS(1382), - [anon_sym_external] = ACTIONS(1382), - [anon_sym_this] = ACTIONS(1382), - [sym_comment] = ACTIONS(3), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1384), - [sym_decimal_integer_literal] = ACTIONS(1386), - [sym_hex_integer_literal] = ACTIONS(1386), - [sym_octal_integer_literal] = ACTIONS(1384), - [sym_binary_integer_literal] = ACTIONS(1384), - [sym_decimal_floating_point_literal] = ACTIONS(1384), - [sym_hex_floating_point_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1384), - [anon_sym_r] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_throw] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_PLUS_EQ] = ACTIONS(1384), - [anon_sym_DASH_EQ] = ACTIONS(1384), - [anon_sym_STAR_EQ] = ACTIONS(1384), - [anon_sym_SLASH_EQ] = ACTIONS(1384), - [anon_sym_AMP_EQ] = ACTIONS(1384), - [anon_sym_PIPE_EQ] = ACTIONS(1384), - [anon_sym_CARET_EQ] = ACTIONS(1384), - [anon_sym_PERCENT_EQ] = ACTIONS(1384), - [anon_sym_LT_LT_EQ] = ACTIONS(1384), - [anon_sym_GT_GT_EQ] = ACTIONS(1384), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1384), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [sym_equality_operator] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1386), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_TILDE_SLASH] = ACTIONS(1384), - [sym_increment_operator] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_await] = ACTIONS(1386), - [anon_sym_is] = ACTIONS(1386), - [anon_sym_as] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_QMARK_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_try] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_abstract] = ACTIONS(1386), - [anon_sym_class] = ACTIONS(1386), - [anon_sym_super] = ACTIONS(1386), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_covariant] = ACTIONS(1386), - [anon_sym_Function] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_final] = ACTIONS(1386), - [anon_sym_external] = ACTIONS(1386), - [anon_sym_this] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1388), - [sym_decimal_integer_literal] = ACTIONS(1390), - [sym_hex_integer_literal] = ACTIONS(1390), - [sym_octal_integer_literal] = ACTIONS(1388), - [sym_binary_integer_literal] = ACTIONS(1388), - [sym_decimal_floating_point_literal] = ACTIONS(1388), - [sym_hex_floating_point_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1388), - [anon_sym_r] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1390), - [anon_sym_throw] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [anon_sym_DASH_EQ] = ACTIONS(1388), - [anon_sym_STAR_EQ] = ACTIONS(1388), - [anon_sym_SLASH_EQ] = ACTIONS(1388), - [anon_sym_AMP_EQ] = ACTIONS(1388), - [anon_sym_PIPE_EQ] = ACTIONS(1388), - [anon_sym_CARET_EQ] = ACTIONS(1388), - [anon_sym_PERCENT_EQ] = ACTIONS(1388), - [anon_sym_LT_LT_EQ] = ACTIONS(1388), - [anon_sym_GT_GT_EQ] = ACTIONS(1388), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1388), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [sym_equality_operator] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1390), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1390), - [anon_sym_TILDE_SLASH] = ACTIONS(1388), - [sym_increment_operator] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_await] = ACTIONS(1390), - [anon_sym_is] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_QMARK_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_assert] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_abstract] = ACTIONS(1390), - [anon_sym_class] = ACTIONS(1390), - [anon_sym_super] = ACTIONS(1390), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_covariant] = ACTIONS(1390), - [anon_sym_Function] = ACTIONS(1390), - [anon_sym_get] = ACTIONS(1390), - [anon_sym_set] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_final] = ACTIONS(1390), - [anon_sym_external] = ACTIONS(1390), - [anon_sym_this] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [sym_decimal_integer_literal] = ACTIONS(1394), - [sym_hex_integer_literal] = ACTIONS(1394), - [sym_octal_integer_literal] = ACTIONS(1392), - [sym_binary_integer_literal] = ACTIONS(1392), - [sym_decimal_floating_point_literal] = ACTIONS(1392), - [sym_hex_floating_point_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1392), - [anon_sym_r] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_COMMA] = ACTIONS(1392), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_PLUS_EQ] = ACTIONS(1392), - [anon_sym_DASH_EQ] = ACTIONS(1392), - [anon_sym_STAR_EQ] = ACTIONS(1392), - [anon_sym_SLASH_EQ] = ACTIONS(1392), - [anon_sym_AMP_EQ] = ACTIONS(1392), - [anon_sym_PIPE_EQ] = ACTIONS(1392), - [anon_sym_CARET_EQ] = ACTIONS(1392), - [anon_sym_PERCENT_EQ] = ACTIONS(1392), - [anon_sym_LT_LT_EQ] = ACTIONS(1392), - [anon_sym_GT_GT_EQ] = ACTIONS(1392), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1392), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_QMARK_QMARK] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [sym_equality_operator] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1392), - [anon_sym_LT_EQ] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_TILDE_SLASH] = ACTIONS(1392), - [sym_increment_operator] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_is] = ACTIONS(1394), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_QMARK_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_assert] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_try] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_abstract] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1394), - [anon_sym_super] = ACTIONS(1394), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [anon_sym_covariant] = ACTIONS(1394), - [anon_sym_Function] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_new] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_final] = ACTIONS(1394), - [anon_sym_external] = ACTIONS(1394), - [anon_sym_this] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [sym_decimal_integer_literal] = ACTIONS(1398), - [sym_hex_integer_literal] = ACTIONS(1398), - [sym_octal_integer_literal] = ACTIONS(1396), - [sym_binary_integer_literal] = ACTIONS(1396), - [sym_decimal_floating_point_literal] = ACTIONS(1396), - [sym_hex_floating_point_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1396), - [anon_sym_r] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_throw] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_PLUS_EQ] = ACTIONS(1396), - [anon_sym_DASH_EQ] = ACTIONS(1396), - [anon_sym_STAR_EQ] = ACTIONS(1396), - [anon_sym_SLASH_EQ] = ACTIONS(1396), - [anon_sym_AMP_EQ] = ACTIONS(1396), - [anon_sym_PIPE_EQ] = ACTIONS(1396), - [anon_sym_CARET_EQ] = ACTIONS(1396), - [anon_sym_PERCENT_EQ] = ACTIONS(1396), - [anon_sym_LT_LT_EQ] = ACTIONS(1396), - [anon_sym_GT_GT_EQ] = ACTIONS(1396), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1396), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [sym_equality_operator] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_TILDE_SLASH] = ACTIONS(1396), - [sym_increment_operator] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_await] = ACTIONS(1398), - [anon_sym_is] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_QMARK_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_abstract] = ACTIONS(1398), - [anon_sym_class] = ACTIONS(1398), - [anon_sym_super] = ACTIONS(1398), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_covariant] = ACTIONS(1398), - [anon_sym_Function] = ACTIONS(1398), - [anon_sym_get] = ACTIONS(1398), - [anon_sym_set] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_final] = ACTIONS(1398), - [anon_sym_external] = ACTIONS(1398), - [anon_sym_this] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [sym_decimal_integer_literal] = ACTIONS(1402), - [sym_hex_integer_literal] = ACTIONS(1402), - [sym_octal_integer_literal] = ACTIONS(1400), - [sym_binary_integer_literal] = ACTIONS(1400), - [sym_decimal_floating_point_literal] = ACTIONS(1400), - [sym_hex_floating_point_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1400), - [anon_sym_r] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_AMP_EQ] = ACTIONS(1400), - [anon_sym_PIPE_EQ] = ACTIONS(1400), - [anon_sym_CARET_EQ] = ACTIONS(1400), - [anon_sym_PERCENT_EQ] = ACTIONS(1400), - [anon_sym_LT_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_QMARK_QMARK] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [sym_equality_operator] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1402), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_TILDE_SLASH] = ACTIONS(1400), - [sym_increment_operator] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_is] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_QMARK_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_super] = ACTIONS(1402), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_covariant] = ACTIONS(1402), - [anon_sym_Function] = ACTIONS(1402), - [anon_sym_get] = ACTIONS(1402), - [anon_sym_set] = ACTIONS(1402), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_final] = ACTIONS(1402), - [anon_sym_external] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [sym_decimal_integer_literal] = ACTIONS(1406), - [sym_hex_integer_literal] = ACTIONS(1406), - [sym_octal_integer_literal] = ACTIONS(1404), - [sym_binary_integer_literal] = ACTIONS(1404), - [sym_decimal_floating_point_literal] = ACTIONS(1404), - [sym_hex_floating_point_literal] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1404), - [anon_sym_r] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1404), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_throw] = ACTIONS(1406), - [anon_sym_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1404), - [anon_sym_DASH_EQ] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1404), - [anon_sym_SLASH_EQ] = ACTIONS(1404), - [anon_sym_AMP_EQ] = ACTIONS(1404), - [anon_sym_PIPE_EQ] = ACTIONS(1404), - [anon_sym_CARET_EQ] = ACTIONS(1404), - [anon_sym_PERCENT_EQ] = ACTIONS(1404), - [anon_sym_LT_LT_EQ] = ACTIONS(1404), - [anon_sym_GT_GT_EQ] = ACTIONS(1404), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1404), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_QMARK_QMARK] = ACTIONS(1406), - [anon_sym_QMARK] = ACTIONS(1406), - [anon_sym_PIPE_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [sym_equality_operator] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1404), - [anon_sym_LT_EQ] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_LT_LT] = ACTIONS(1406), - [anon_sym_GT_GT] = ACTIONS(1406), - [anon_sym_GT_GT_GT] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_PERCENT] = ACTIONS(1406), - [anon_sym_TILDE_SLASH] = ACTIONS(1404), - [sym_increment_operator] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_await] = ACTIONS(1406), - [anon_sym_is] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_QMARK_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_abstract] = ACTIONS(1406), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_super] = ACTIONS(1406), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_covariant] = ACTIONS(1406), - [anon_sym_Function] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_final] = ACTIONS(1406), - [anon_sym_external] = ACTIONS(1406), - [anon_sym_this] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [sym_decimal_integer_literal] = ACTIONS(1410), - [sym_hex_integer_literal] = ACTIONS(1410), - [sym_octal_integer_literal] = ACTIONS(1408), - [sym_binary_integer_literal] = ACTIONS(1408), - [sym_decimal_floating_point_literal] = ACTIONS(1408), - [sym_hex_floating_point_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1408), - [anon_sym_r] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_throw] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1410), - [anon_sym_PLUS_EQ] = ACTIONS(1408), - [anon_sym_DASH_EQ] = ACTIONS(1408), - [anon_sym_STAR_EQ] = ACTIONS(1408), - [anon_sym_SLASH_EQ] = ACTIONS(1408), - [anon_sym_AMP_EQ] = ACTIONS(1408), - [anon_sym_PIPE_EQ] = ACTIONS(1408), - [anon_sym_CARET_EQ] = ACTIONS(1408), - [anon_sym_PERCENT_EQ] = ACTIONS(1408), - [anon_sym_LT_LT_EQ] = ACTIONS(1408), - [anon_sym_GT_GT_EQ] = ACTIONS(1408), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1408), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_QMARK_QMARK] = ACTIONS(1410), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1408), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [sym_equality_operator] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1408), - [anon_sym_LT_EQ] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_GT_GT_GT] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(1410), - [anon_sym_TILDE_SLASH] = ACTIONS(1408), - [sym_increment_operator] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_await] = ACTIONS(1410), - [anon_sym_is] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_QMARK_DOT] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_abstract] = ACTIONS(1410), - [anon_sym_class] = ACTIONS(1410), - [anon_sym_super] = ACTIONS(1410), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_covariant] = ACTIONS(1410), - [anon_sym_Function] = ACTIONS(1410), - [anon_sym_get] = ACTIONS(1410), - [anon_sym_set] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_final] = ACTIONS(1410), - [anon_sym_external] = ACTIONS(1410), - [anon_sym_this] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [sym_decimal_integer_literal] = ACTIONS(1414), - [sym_hex_integer_literal] = ACTIONS(1414), - [sym_octal_integer_literal] = ACTIONS(1412), - [sym_binary_integer_literal] = ACTIONS(1412), - [sym_decimal_floating_point_literal] = ACTIONS(1412), - [sym_hex_floating_point_literal] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1412), - [anon_sym_r] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_throw] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1414), - [anon_sym_PLUS_EQ] = ACTIONS(1412), - [anon_sym_DASH_EQ] = ACTIONS(1412), - [anon_sym_STAR_EQ] = ACTIONS(1412), - [anon_sym_SLASH_EQ] = ACTIONS(1412), - [anon_sym_AMP_EQ] = ACTIONS(1412), - [anon_sym_PIPE_EQ] = ACTIONS(1412), - [anon_sym_CARET_EQ] = ACTIONS(1412), - [anon_sym_PERCENT_EQ] = ACTIONS(1412), - [anon_sym_LT_LT_EQ] = ACTIONS(1412), - [anon_sym_GT_GT_EQ] = ACTIONS(1412), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1412), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_QMARK_QMARK] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [sym_equality_operator] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_LT_LT] = ACTIONS(1414), - [anon_sym_GT_GT] = ACTIONS(1414), - [anon_sym_GT_GT_GT] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_TILDE_SLASH] = ACTIONS(1412), - [sym_increment_operator] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_await] = ACTIONS(1414), - [anon_sym_is] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_QMARK_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_abstract] = ACTIONS(1414), - [anon_sym_class] = ACTIONS(1414), - [anon_sym_super] = ACTIONS(1414), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [anon_sym_covariant] = ACTIONS(1414), - [anon_sym_Function] = ACTIONS(1414), - [anon_sym_get] = ACTIONS(1414), - [anon_sym_set] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_final] = ACTIONS(1414), - [anon_sym_external] = ACTIONS(1414), - [anon_sym_this] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1416), - [sym_decimal_integer_literal] = ACTIONS(1418), - [sym_hex_integer_literal] = ACTIONS(1418), - [sym_octal_integer_literal] = ACTIONS(1416), - [sym_binary_integer_literal] = ACTIONS(1416), - [sym_decimal_floating_point_literal] = ACTIONS(1416), - [sym_hex_floating_point_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1416), - [anon_sym_r] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_throw] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1418), - [anon_sym_PLUS_EQ] = ACTIONS(1416), - [anon_sym_DASH_EQ] = ACTIONS(1416), - [anon_sym_STAR_EQ] = ACTIONS(1416), - [anon_sym_SLASH_EQ] = ACTIONS(1416), - [anon_sym_AMP_EQ] = ACTIONS(1416), - [anon_sym_PIPE_EQ] = ACTIONS(1416), - [anon_sym_CARET_EQ] = ACTIONS(1416), - [anon_sym_PERCENT_EQ] = ACTIONS(1416), - [anon_sym_LT_LT_EQ] = ACTIONS(1416), - [anon_sym_GT_GT_EQ] = ACTIONS(1416), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1416), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_QMARK_QMARK] = ACTIONS(1418), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [sym_equality_operator] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1416), - [anon_sym_LT_EQ] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1418), - [anon_sym_GT_GT] = ACTIONS(1418), - [anon_sym_GT_GT_GT] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_PERCENT] = ACTIONS(1418), - [anon_sym_TILDE_SLASH] = ACTIONS(1416), - [sym_increment_operator] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_is] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_QMARK_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_abstract] = ACTIONS(1418), - [anon_sym_class] = ACTIONS(1418), - [anon_sym_super] = ACTIONS(1418), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [anon_sym_covariant] = ACTIONS(1418), - [anon_sym_Function] = ACTIONS(1418), - [anon_sym_get] = ACTIONS(1418), - [anon_sym_set] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_final] = ACTIONS(1418), - [anon_sym_external] = ACTIONS(1418), - [anon_sym_this] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1420), - [sym_decimal_integer_literal] = ACTIONS(1422), - [sym_hex_integer_literal] = ACTIONS(1422), - [sym_octal_integer_literal] = ACTIONS(1420), - [sym_binary_integer_literal] = ACTIONS(1420), - [sym_decimal_floating_point_literal] = ACTIONS(1420), - [sym_hex_floating_point_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1420), - [anon_sym_r] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_throw] = ACTIONS(1422), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_AMP_EQ] = ACTIONS(1420), - [anon_sym_PIPE_EQ] = ACTIONS(1420), - [anon_sym_CARET_EQ] = ACTIONS(1420), - [anon_sym_PERCENT_EQ] = ACTIONS(1420), - [anon_sym_LT_LT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1420), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_QMARK_QMARK] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1422), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [sym_equality_operator] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_GT_GT_GT] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_TILDE_SLASH] = ACTIONS(1420), - [sym_increment_operator] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_await] = ACTIONS(1422), - [anon_sym_is] = ACTIONS(1422), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_QMARK_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1420), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_abstract] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1422), - [anon_sym_super] = ACTIONS(1422), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [anon_sym_covariant] = ACTIONS(1422), - [anon_sym_Function] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_new] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_final] = ACTIONS(1422), - [anon_sym_external] = ACTIONS(1422), - [anon_sym_this] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [sym_decimal_integer_literal] = ACTIONS(1426), - [sym_hex_integer_literal] = ACTIONS(1426), - [sym_octal_integer_literal] = ACTIONS(1424), - [sym_binary_integer_literal] = ACTIONS(1424), - [sym_decimal_floating_point_literal] = ACTIONS(1424), - [sym_hex_floating_point_literal] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1424), - [anon_sym_r] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_throw] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_AMP_EQ] = ACTIONS(1424), - [anon_sym_PIPE_EQ] = ACTIONS(1424), - [anon_sym_CARET_EQ] = ACTIONS(1424), - [anon_sym_PERCENT_EQ] = ACTIONS(1424), - [anon_sym_LT_LT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1424), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_QMARK_QMARK] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1426), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [sym_equality_operator] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_GT_GT_GT] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_TILDE_SLASH] = ACTIONS(1424), - [sym_increment_operator] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_await] = ACTIONS(1426), - [anon_sym_is] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_QMARK_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT] = ACTIONS(1424), - [anon_sym_assert] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_abstract] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1426), - [anon_sym_super] = ACTIONS(1426), - [anon_sym_void] = ACTIONS(1426), - [anon_sym_var] = ACTIONS(1426), - [anon_sym_covariant] = ACTIONS(1426), - [anon_sym_Function] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_final] = ACTIONS(1426), - [anon_sym_external] = ACTIONS(1426), - [anon_sym_this] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [sym_decimal_integer_literal] = ACTIONS(1430), - [sym_hex_integer_literal] = ACTIONS(1430), - [sym_octal_integer_literal] = ACTIONS(1428), - [sym_binary_integer_literal] = ACTIONS(1428), - [sym_decimal_floating_point_literal] = ACTIONS(1428), - [sym_hex_floating_point_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1428), - [anon_sym_r] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1430), - [anon_sym_throw] = ACTIONS(1430), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_AMP_EQ] = ACTIONS(1428), - [anon_sym_PIPE_EQ] = ACTIONS(1428), - [anon_sym_CARET_EQ] = ACTIONS(1428), - [anon_sym_PERCENT_EQ] = ACTIONS(1428), - [anon_sym_LT_LT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1428), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_QMARK_QMARK] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [sym_equality_operator] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_GT_GT_GT] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_TILDE_SLASH] = ACTIONS(1428), - [sym_increment_operator] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_is] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_QMARK_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_class] = ACTIONS(1430), - [anon_sym_super] = ACTIONS(1430), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_var] = ACTIONS(1430), - [anon_sym_covariant] = ACTIONS(1430), - [anon_sym_Function] = ACTIONS(1430), - [anon_sym_get] = ACTIONS(1430), - [anon_sym_set] = ACTIONS(1430), - [anon_sym_new] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_final] = ACTIONS(1430), - [anon_sym_external] = ACTIONS(1430), - [anon_sym_this] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [sym_decimal_integer_literal] = ACTIONS(1434), - [sym_hex_integer_literal] = ACTIONS(1434), - [sym_octal_integer_literal] = ACTIONS(1432), - [sym_binary_integer_literal] = ACTIONS(1432), - [sym_decimal_floating_point_literal] = ACTIONS(1432), - [sym_hex_floating_point_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1432), - [anon_sym_r] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_COMMA] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1434), - [anon_sym_throw] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1434), - [anon_sym_PLUS_EQ] = ACTIONS(1432), - [anon_sym_DASH_EQ] = ACTIONS(1432), - [anon_sym_STAR_EQ] = ACTIONS(1432), - [anon_sym_SLASH_EQ] = ACTIONS(1432), - [anon_sym_AMP_EQ] = ACTIONS(1432), - [anon_sym_PIPE_EQ] = ACTIONS(1432), - [anon_sym_CARET_EQ] = ACTIONS(1432), - [anon_sym_PERCENT_EQ] = ACTIONS(1432), - [anon_sym_LT_LT_EQ] = ACTIONS(1432), - [anon_sym_GT_GT_EQ] = ACTIONS(1432), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1432), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_QMARK_QMARK] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1434), - [anon_sym_PIPE_PIPE] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1432), - [sym_equality_operator] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_EQ] = ACTIONS(1432), - [anon_sym_LT_EQ] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_LT] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_SLASH] = ACTIONS(1434), - [anon_sym_PERCENT] = ACTIONS(1434), - [anon_sym_TILDE_SLASH] = ACTIONS(1432), - [sym_increment_operator] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_is] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_QMARK_DOT] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_abstract] = ACTIONS(1434), - [anon_sym_class] = ACTIONS(1434), - [anon_sym_super] = ACTIONS(1434), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_var] = ACTIONS(1434), - [anon_sym_covariant] = ACTIONS(1434), - [anon_sym_Function] = ACTIONS(1434), - [anon_sym_get] = ACTIONS(1434), - [anon_sym_set] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_final] = ACTIONS(1434), - [anon_sym_external] = ACTIONS(1434), - [anon_sym_this] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_PLUS_EQ] = ACTIONS(1182), - [anon_sym_DASH_EQ] = ACTIONS(1182), - [anon_sym_STAR_EQ] = ACTIONS(1182), - [anon_sym_SLASH_EQ] = ACTIONS(1182), - [anon_sym_AMP_EQ] = ACTIONS(1182), - [anon_sym_PIPE_EQ] = ACTIONS(1182), - [anon_sym_CARET_EQ] = ACTIONS(1182), - [anon_sym_PERCENT_EQ] = ACTIONS(1182), - [anon_sym_LT_LT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_QMARK_QMARK] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1184), - [anon_sym_QMARK_DOT] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [sym_decimal_integer_literal] = ACTIONS(1438), - [sym_hex_integer_literal] = ACTIONS(1438), - [sym_octal_integer_literal] = ACTIONS(1436), - [sym_binary_integer_literal] = ACTIONS(1436), - [sym_decimal_floating_point_literal] = ACTIONS(1436), - [sym_hex_floating_point_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1436), - [anon_sym_r] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1436), - [anon_sym_DASH_EQ] = ACTIONS(1436), - [anon_sym_STAR_EQ] = ACTIONS(1436), - [anon_sym_SLASH_EQ] = ACTIONS(1436), - [anon_sym_AMP_EQ] = ACTIONS(1436), - [anon_sym_PIPE_EQ] = ACTIONS(1436), - [anon_sym_CARET_EQ] = ACTIONS(1436), - [anon_sym_PERCENT_EQ] = ACTIONS(1436), - [anon_sym_LT_LT_EQ] = ACTIONS(1436), - [anon_sym_GT_GT_EQ] = ACTIONS(1436), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [sym_equality_operator] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_GT_GT_GT] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1438), - [anon_sym_TILDE_SLASH] = ACTIONS(1436), - [sym_increment_operator] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_is] = ACTIONS(1438), - [anon_sym_as] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_assert] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_abstract] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_super] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [anon_sym_covariant] = ACTIONS(1438), - [anon_sym_Function] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_final] = ACTIONS(1438), - [anon_sym_external] = ACTIONS(1438), - [anon_sym_this] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [sym_decimal_integer_literal] = ACTIONS(1442), - [sym_hex_integer_literal] = ACTIONS(1442), - [sym_octal_integer_literal] = ACTIONS(1440), - [sym_binary_integer_literal] = ACTIONS(1440), - [sym_decimal_floating_point_literal] = ACTIONS(1440), - [sym_hex_floating_point_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1440), - [anon_sym_r] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_AMP_EQ] = ACTIONS(1440), - [anon_sym_PIPE_EQ] = ACTIONS(1440), - [anon_sym_CARET_EQ] = ACTIONS(1440), - [anon_sym_PERCENT_EQ] = ACTIONS(1440), - [anon_sym_LT_LT_EQ] = ACTIONS(1440), - [anon_sym_GT_GT_EQ] = ACTIONS(1440), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1440), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_QMARK_QMARK] = ACTIONS(1442), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [sym_equality_operator] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1442), - [anon_sym_GT_GT_GT] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_PERCENT] = ACTIONS(1442), - [anon_sym_TILDE_SLASH] = ACTIONS(1440), - [sym_increment_operator] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_await] = ACTIONS(1442), - [anon_sym_is] = ACTIONS(1442), - [anon_sym_as] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_QMARK_DOT] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_abstract] = ACTIONS(1442), - [anon_sym_class] = ACTIONS(1442), - [anon_sym_super] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [anon_sym_covariant] = ACTIONS(1442), - [anon_sym_Function] = ACTIONS(1444), - [anon_sym_get] = ACTIONS(1442), - [anon_sym_set] = ACTIONS(1442), - [anon_sym_new] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_final] = ACTIONS(1442), - [anon_sym_external] = ACTIONS(1442), - [anon_sym_this] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_identifier] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1447), - [sym_decimal_integer_literal] = ACTIONS(1449), - [sym_hex_integer_literal] = ACTIONS(1449), - [sym_octal_integer_literal] = ACTIONS(1447), - [sym_binary_integer_literal] = ACTIONS(1447), - [sym_decimal_floating_point_literal] = ACTIONS(1447), - [sym_hex_floating_point_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1447), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1447), - [anon_sym_r] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1449), - [anon_sym_throw] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [sym_equality_operator] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_TILDE_SLASH] = ACTIONS(1447), - [sym_increment_operator] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_is] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_QMARK_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_assert] = ACTIONS(1449), - [anon_sym_switch] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_yield] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_try] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1449), - [anon_sym_abstract] = ACTIONS(1449), - [anon_sym_class] = ACTIONS(1449), - [anon_sym_super] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_var] = ACTIONS(1449), - [anon_sym_covariant] = ACTIONS(1449), - [anon_sym_Function] = ACTIONS(1449), - [anon_sym_get] = ACTIONS(1449), - [anon_sym_set] = ACTIONS(1449), - [anon_sym_new] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_final] = ACTIONS(1449), - [anon_sym_external] = ACTIONS(1449), - [anon_sym_this] = ACTIONS(1449), - [sym_comment] = ACTIONS(3), - }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_identifier] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1451), - [sym_decimal_integer_literal] = ACTIONS(1453), - [sym_hex_integer_literal] = ACTIONS(1453), - [sym_octal_integer_literal] = ACTIONS(1451), - [sym_binary_integer_literal] = ACTIONS(1451), - [sym_decimal_floating_point_literal] = ACTIONS(1451), - [sym_hex_floating_point_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1451), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1451), - [anon_sym_r] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_throw] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1453), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_QMARK_QMARK] = ACTIONS(1453), - [anon_sym_QMARK] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [sym_equality_operator] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1453), - [anon_sym_GT_GT] = ACTIONS(1453), - [anon_sym_GT_GT_GT] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(1453), - [anon_sym_PERCENT] = ACTIONS(1453), - [anon_sym_TILDE_SLASH] = ACTIONS(1451), - [sym_increment_operator] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_await] = ACTIONS(1453), - [anon_sym_is] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1453), - [anon_sym_DOT] = ACTIONS(1453), - [anon_sym_QMARK_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_yield] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_AT] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_abstract] = ACTIONS(1453), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_super] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_var] = ACTIONS(1453), - [anon_sym_covariant] = ACTIONS(1453), - [anon_sym_Function] = ACTIONS(1453), - [anon_sym_get] = ACTIONS(1453), - [anon_sym_set] = ACTIONS(1453), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_final] = ACTIONS(1453), - [anon_sym_external] = ACTIONS(1453), - [anon_sym_this] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_identifier] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1455), - [sym_decimal_integer_literal] = ACTIONS(1457), - [sym_hex_integer_literal] = ACTIONS(1457), - [sym_octal_integer_literal] = ACTIONS(1455), - [sym_binary_integer_literal] = ACTIONS(1455), - [sym_decimal_floating_point_literal] = ACTIONS(1455), - [sym_hex_floating_point_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1455), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1455), - [anon_sym_r] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_COMMA] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1457), - [anon_sym_throw] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1457), - [anon_sym_PLUS_EQ] = ACTIONS(1455), - [anon_sym_DASH_EQ] = ACTIONS(1455), - [anon_sym_STAR_EQ] = ACTIONS(1455), - [anon_sym_SLASH_EQ] = ACTIONS(1455), - [anon_sym_AMP_EQ] = ACTIONS(1455), - [anon_sym_PIPE_EQ] = ACTIONS(1455), - [anon_sym_CARET_EQ] = ACTIONS(1455), - [anon_sym_PERCENT_EQ] = ACTIONS(1455), - [anon_sym_LT_LT_EQ] = ACTIONS(1455), - [anon_sym_GT_GT_EQ] = ACTIONS(1455), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1455), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_QMARK_QMARK] = ACTIONS(1457), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [sym_equality_operator] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_GT_EQ] = ACTIONS(1455), - [anon_sym_LT_EQ] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1457), - [anon_sym_GT_GT] = ACTIONS(1457), - [anon_sym_GT_GT_GT] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_SLASH] = ACTIONS(1457), - [anon_sym_PERCENT] = ACTIONS(1457), - [anon_sym_TILDE_SLASH] = ACTIONS(1455), - [sym_increment_operator] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_is] = ACTIONS(1457), - [anon_sym_as] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_QMARK_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_assert] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_try] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_abstract] = ACTIONS(1457), - [anon_sym_class] = ACTIONS(1457), - [anon_sym_super] = ACTIONS(1457), - [anon_sym_void] = ACTIONS(1457), - [anon_sym_var] = ACTIONS(1457), - [anon_sym_covariant] = ACTIONS(1457), - [anon_sym_Function] = ACTIONS(1457), - [anon_sym_get] = ACTIONS(1457), - [anon_sym_set] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_final] = ACTIONS(1457), - [anon_sym_external] = ACTIONS(1457), - [anon_sym_this] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_identifier] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1131), - [sym_decimal_integer_literal] = ACTIONS(1128), - [sym_hex_integer_literal] = ACTIONS(1128), - [sym_octal_integer_literal] = ACTIONS(1131), - [sym_binary_integer_literal] = ACTIONS(1131), - [sym_decimal_floating_point_literal] = ACTIONS(1131), - [sym_hex_floating_point_literal] = ACTIONS(1128), - [anon_sym_true] = ACTIONS(1128), - [anon_sym_false] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1131), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1131), - [anon_sym_r] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1131), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_throw] = ACTIONS(1128), - [anon_sym_EQ] = ACTIONS(1128), - [anon_sym_PLUS_EQ] = ACTIONS(1131), - [anon_sym_DASH_EQ] = ACTIONS(1131), - [anon_sym_STAR_EQ] = ACTIONS(1131), - [anon_sym_SLASH_EQ] = ACTIONS(1131), - [anon_sym_AMP_EQ] = ACTIONS(1131), - [anon_sym_PIPE_EQ] = ACTIONS(1131), - [anon_sym_CARET_EQ] = ACTIONS(1131), - [anon_sym_PERCENT_EQ] = ACTIONS(1131), - [anon_sym_LT_LT_EQ] = ACTIONS(1131), - [anon_sym_GT_GT_EQ] = ACTIONS(1131), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1131), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_QMARK_QMARK] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1131), - [anon_sym_AMP_AMP] = ACTIONS(1131), - [sym_equality_operator] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1131), - [anon_sym_LT_EQ] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1128), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_GT_GT_GT] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_PERCENT] = ACTIONS(1128), - [anon_sym_TILDE_SLASH] = ACTIONS(1131), - [sym_increment_operator] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_await] = ACTIONS(1128), - [anon_sym_is] = ACTIONS(1128), - [anon_sym_as] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1128), - [anon_sym_QMARK_DOT] = ACTIONS(1131), - [anon_sym_DOT_DOT] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_yield] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_try] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_AT] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_abstract] = ACTIONS(1128), - [anon_sym_class] = ACTIONS(1128), - [anon_sym_super] = ACTIONS(1128), - [anon_sym_void] = ACTIONS(1128), - [anon_sym_var] = ACTIONS(1128), - [anon_sym_covariant] = ACTIONS(1128), - [anon_sym_Function] = ACTIONS(1128), - [anon_sym_get] = ACTIONS(1128), - [anon_sym_set] = ACTIONS(1128), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_final] = ACTIONS(1128), - [anon_sym_external] = ACTIONS(1128), - [anon_sym_this] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1459), - [sym_decimal_integer_literal] = ACTIONS(1461), - [sym_hex_integer_literal] = ACTIONS(1461), - [sym_octal_integer_literal] = ACTIONS(1459), - [sym_binary_integer_literal] = ACTIONS(1459), - [sym_decimal_floating_point_literal] = ACTIONS(1459), - [sym_hex_floating_point_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1459), - [anon_sym_r] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_COMMA] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1461), - [anon_sym_throw] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1461), - [anon_sym_PLUS_EQ] = ACTIONS(1459), - [anon_sym_DASH_EQ] = ACTIONS(1459), - [anon_sym_STAR_EQ] = ACTIONS(1459), - [anon_sym_SLASH_EQ] = ACTIONS(1459), - [anon_sym_AMP_EQ] = ACTIONS(1459), - [anon_sym_PIPE_EQ] = ACTIONS(1459), - [anon_sym_CARET_EQ] = ACTIONS(1459), - [anon_sym_PERCENT_EQ] = ACTIONS(1459), - [anon_sym_LT_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_GT_EQ] = ACTIONS(1459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_QMARK_QMARK] = ACTIONS(1461), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [sym_equality_operator] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_GT_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_PERCENT] = ACTIONS(1461), - [anon_sym_TILDE_SLASH] = ACTIONS(1459), - [sym_increment_operator] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_await] = ACTIONS(1461), - [anon_sym_is] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_AT] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_abstract] = ACTIONS(1461), - [anon_sym_class] = ACTIONS(1461), - [anon_sym_super] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1461), - [anon_sym_var] = ACTIONS(1461), - [anon_sym_covariant] = ACTIONS(1461), - [anon_sym_Function] = ACTIONS(1461), - [anon_sym_get] = ACTIONS(1461), - [anon_sym_set] = ACTIONS(1461), - [anon_sym_new] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_final] = ACTIONS(1461), - [anon_sym_external] = ACTIONS(1461), - [anon_sym_this] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1463), - [sym_decimal_integer_literal] = ACTIONS(1465), - [sym_hex_integer_literal] = ACTIONS(1465), - [sym_octal_integer_literal] = ACTIONS(1463), - [sym_binary_integer_literal] = ACTIONS(1463), - [sym_decimal_floating_point_literal] = ACTIONS(1463), - [sym_hex_floating_point_literal] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1463), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1463), - [anon_sym_r] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1465), - [anon_sym_throw] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1465), - [anon_sym_PLUS_EQ] = ACTIONS(1463), - [anon_sym_DASH_EQ] = ACTIONS(1463), - [anon_sym_STAR_EQ] = ACTIONS(1463), - [anon_sym_SLASH_EQ] = ACTIONS(1463), - [anon_sym_AMP_EQ] = ACTIONS(1463), - [anon_sym_PIPE_EQ] = ACTIONS(1463), - [anon_sym_CARET_EQ] = ACTIONS(1463), - [anon_sym_PERCENT_EQ] = ACTIONS(1463), - [anon_sym_LT_LT_EQ] = ACTIONS(1463), - [anon_sym_GT_GT_EQ] = ACTIONS(1463), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1463), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_QMARK_QMARK] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_PIPE_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1463), - [sym_equality_operator] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_LT_LT] = ACTIONS(1465), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_GT_GT_GT] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_PERCENT] = ACTIONS(1465), - [anon_sym_TILDE_SLASH] = ACTIONS(1463), - [sym_increment_operator] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_await] = ACTIONS(1465), - [anon_sym_is] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_abstract] = ACTIONS(1465), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_super] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1465), - [anon_sym_var] = ACTIONS(1465), - [anon_sym_covariant] = ACTIONS(1465), - [anon_sym_Function] = ACTIONS(1465), - [anon_sym_get] = ACTIONS(1465), - [anon_sym_set] = ACTIONS(1465), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_final] = ACTIONS(1465), - [anon_sym_external] = ACTIONS(1465), - [anon_sym_this] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1467), - [sym_decimal_integer_literal] = ACTIONS(1469), - [sym_hex_integer_literal] = ACTIONS(1469), - [sym_octal_integer_literal] = ACTIONS(1467), - [sym_binary_integer_literal] = ACTIONS(1467), - [sym_decimal_floating_point_literal] = ACTIONS(1467), - [sym_hex_floating_point_literal] = ACTIONS(1469), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1467), - [anon_sym_r] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1469), - [anon_sym_throw] = ACTIONS(1469), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [sym_equality_operator] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_GT_EQ] = ACTIONS(1213), - [anon_sym_LT_EQ] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_TILDE_SLASH] = ACTIONS(1467), - [sym_increment_operator] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1469), - [anon_sym_is] = ACTIONS(1210), - [anon_sym_as] = ACTIONS(1210), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_try] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_abstract] = ACTIONS(1469), - [anon_sym_class] = ACTIONS(1469), - [anon_sym_super] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1469), - [anon_sym_var] = ACTIONS(1469), - [anon_sym_covariant] = ACTIONS(1469), - [anon_sym_Function] = ACTIONS(1469), - [anon_sym_get] = ACTIONS(1469), - [anon_sym_set] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_final] = ACTIONS(1469), - [anon_sym_external] = ACTIONS(1469), - [anon_sym_this] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_EQ] = ACTIONS(1199), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_AMP_EQ] = ACTIONS(1196), - [anon_sym_PIPE_EQ] = ACTIONS(1196), - [anon_sym_CARET_EQ] = ACTIONS(1196), - [anon_sym_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_LT_LT_EQ] = ACTIONS(1196), - [anon_sym_GT_GT_EQ] = ACTIONS(1196), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1196), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_QMARK_QMARK] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [anon_sym_POUND] = ACTIONS(1124), - [sym_decimal_integer_literal] = ACTIONS(1126), - [sym_hex_integer_literal] = ACTIONS(1126), - [sym_octal_integer_literal] = ACTIONS(1124), - [sym_binary_integer_literal] = ACTIONS(1124), - [sym_decimal_floating_point_literal] = ACTIONS(1124), - [sym_hex_floating_point_literal] = ACTIONS(1126), - [anon_sym_true] = ACTIONS(1126), - [anon_sym_false] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1124), - [anon_sym_r] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1126), - [anon_sym_throw] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1124), - [anon_sym_DASH_EQ] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1124), - [anon_sym_SLASH_EQ] = ACTIONS(1124), - [anon_sym_AMP_EQ] = ACTIONS(1124), - [anon_sym_PIPE_EQ] = ACTIONS(1124), - [anon_sym_CARET_EQ] = ACTIONS(1124), - [anon_sym_PERCENT_EQ] = ACTIONS(1124), - [anon_sym_LT_LT_EQ] = ACTIONS(1124), - [anon_sym_GT_GT_EQ] = ACTIONS(1124), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1124), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_QMARK_QMARK] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1124), - [anon_sym_AMP_AMP] = ACTIONS(1124), - [sym_equality_operator] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_GT_EQ] = ACTIONS(1124), - [anon_sym_LT_EQ] = ACTIONS(1124), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_GT_GT_GT] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_TILDE_SLASH] = ACTIONS(1124), - [sym_increment_operator] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_await] = ACTIONS(1126), - [anon_sym_is] = ACTIONS(1126), - [anon_sym_as] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_QMARK_DOT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1124), - [anon_sym_assert] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_abstract] = ACTIONS(1126), - [anon_sym_class] = ACTIONS(1126), - [anon_sym_super] = ACTIONS(1126), - [anon_sym_void] = ACTIONS(1126), - [anon_sym_var] = ACTIONS(1126), - [anon_sym_covariant] = ACTIONS(1126), - [anon_sym_Function] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_new] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1126), - [anon_sym_external] = ACTIONS(1126), - [anon_sym_this] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_identifier] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1471), - [sym_decimal_integer_literal] = ACTIONS(1473), - [sym_hex_integer_literal] = ACTIONS(1473), - [sym_octal_integer_literal] = ACTIONS(1471), - [sym_binary_integer_literal] = ACTIONS(1471), - [sym_decimal_floating_point_literal] = ACTIONS(1471), - [sym_hex_floating_point_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1471), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1471), - [anon_sym_r] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1473), - [anon_sym_throw] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1471), - [anon_sym_DASH_EQ] = ACTIONS(1471), - [anon_sym_STAR_EQ] = ACTIONS(1471), - [anon_sym_SLASH_EQ] = ACTIONS(1471), - [anon_sym_AMP_EQ] = ACTIONS(1471), - [anon_sym_PIPE_EQ] = ACTIONS(1471), - [anon_sym_CARET_EQ] = ACTIONS(1471), - [anon_sym_PERCENT_EQ] = ACTIONS(1471), - [anon_sym_LT_LT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1471), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_QMARK_QMARK] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [sym_equality_operator] = ACTIONS(1471), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1471), - [anon_sym_LT_EQ] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_GT_GT_GT] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1473), - [anon_sym_TILDE_SLASH] = ACTIONS(1471), - [sym_increment_operator] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_is] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_QMARK_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1473), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_yield] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_abstract] = ACTIONS(1473), - [anon_sym_class] = ACTIONS(1473), - [anon_sym_super] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1473), - [anon_sym_covariant] = ACTIONS(1473), - [anon_sym_Function] = ACTIONS(1473), - [anon_sym_get] = ACTIONS(1473), - [anon_sym_set] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_final] = ACTIONS(1473), - [anon_sym_external] = ACTIONS(1473), - [anon_sym_this] = ACTIONS(1473), - [sym_comment] = ACTIONS(3), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(807), - [sym_identifier] = ACTIONS(809), - [anon_sym_POUND] = ACTIONS(807), - [sym_decimal_integer_literal] = ACTIONS(809), - [sym_hex_integer_literal] = ACTIONS(809), - [sym_octal_integer_literal] = ACTIONS(807), - [sym_binary_integer_literal] = ACTIONS(807), - [sym_decimal_floating_point_literal] = ACTIONS(807), - [sym_hex_floating_point_literal] = ACTIONS(809), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(807), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(807), - [anon_sym_r] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_null] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_STAR_EQ] = ACTIONS(807), - [anon_sym_SLASH_EQ] = ACTIONS(807), - [anon_sym_AMP_EQ] = ACTIONS(807), - [anon_sym_PIPE_EQ] = ACTIONS(807), - [anon_sym_CARET_EQ] = ACTIONS(807), - [anon_sym_PERCENT_EQ] = ACTIONS(807), - [anon_sym_LT_LT_EQ] = ACTIONS(807), - [anon_sym_GT_GT_EQ] = ACTIONS(807), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [sym_equality_operator] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(809), - [anon_sym_GT_GT_GT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_PERCENT] = ACTIONS(809), - [anon_sym_TILDE_SLASH] = ACTIONS(807), - [sym_increment_operator] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_await] = ACTIONS(809), - [anon_sym_is] = ACTIONS(809), - [anon_sym_as] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_QMARK_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_assert] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_try] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(807), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_class] = ACTIONS(809), - [anon_sym_super] = ACTIONS(809), - [anon_sym_void] = ACTIONS(809), - [anon_sym_var] = ACTIONS(809), - [anon_sym_covariant] = ACTIONS(809), - [anon_sym_Function] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_new] = ACTIONS(809), - [anon_sym_const] = ACTIONS(809), - [anon_sym_final] = ACTIONS(809), - [anon_sym_external] = ACTIONS(809), - [anon_sym_this] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_PLUS_EQ] = ACTIONS(1182), - [anon_sym_DASH_EQ] = ACTIONS(1182), - [anon_sym_STAR_EQ] = ACTIONS(1182), - [anon_sym_SLASH_EQ] = ACTIONS(1182), - [anon_sym_AMP_EQ] = ACTIONS(1182), - [anon_sym_PIPE_EQ] = ACTIONS(1182), - [anon_sym_CARET_EQ] = ACTIONS(1182), - [anon_sym_PERCENT_EQ] = ACTIONS(1182), - [anon_sym_LT_LT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_QMARK_QMARK] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1475), - [sym_decimal_integer_literal] = ACTIONS(1477), - [sym_hex_integer_literal] = ACTIONS(1477), - [sym_octal_integer_literal] = ACTIONS(1475), - [sym_binary_integer_literal] = ACTIONS(1475), - [sym_decimal_floating_point_literal] = ACTIONS(1475), - [sym_hex_floating_point_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1475), - [anon_sym_r] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1477), - [anon_sym_throw] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_QMARK_QMARK] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [sym_equality_operator] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_GT_GT_GT] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_TILDE_SLASH] = ACTIONS(1475), - [sym_increment_operator] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_is] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_QMARK_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_abstract] = ACTIONS(1477), - [anon_sym_class] = ACTIONS(1477), - [anon_sym_super] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1477), - [anon_sym_var] = ACTIONS(1477), - [anon_sym_covariant] = ACTIONS(1477), - [anon_sym_Function] = ACTIONS(1477), - [anon_sym_get] = ACTIONS(1477), - [anon_sym_set] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_final] = ACTIONS(1477), - [anon_sym_external] = ACTIONS(1477), - [anon_sym_this] = ACTIONS(1477), - [sym_comment] = ACTIONS(3), - }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_identifier] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1479), - [sym_decimal_integer_literal] = ACTIONS(1481), - [sym_hex_integer_literal] = ACTIONS(1481), - [sym_octal_integer_literal] = ACTIONS(1479), - [sym_binary_integer_literal] = ACTIONS(1479), - [sym_decimal_floating_point_literal] = ACTIONS(1479), - [sym_hex_floating_point_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1479), - [anon_sym_r] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1481), - [anon_sym_throw] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_QMARK_QMARK] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [sym_equality_operator] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1481), - [anon_sym_GT_GT] = ACTIONS(1481), - [anon_sym_GT_GT_GT] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1481), - [anon_sym_PERCENT] = ACTIONS(1481), - [anon_sym_TILDE_SLASH] = ACTIONS(1479), - [sym_increment_operator] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_is] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1481), - [anon_sym_QMARK_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_yield] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_abstract] = ACTIONS(1481), - [anon_sym_class] = ACTIONS(1481), - [anon_sym_super] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_var] = ACTIONS(1481), - [anon_sym_covariant] = ACTIONS(1481), - [anon_sym_Function] = ACTIONS(1481), - [anon_sym_get] = ACTIONS(1481), - [anon_sym_set] = ACTIONS(1481), - [anon_sym_new] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_final] = ACTIONS(1481), - [anon_sym_external] = ACTIONS(1481), - [anon_sym_this] = ACTIONS(1481), - [sym_comment] = ACTIONS(3), - }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1483), - [sym_decimal_integer_literal] = ACTIONS(1485), - [sym_hex_integer_literal] = ACTIONS(1485), - [sym_octal_integer_literal] = ACTIONS(1483), - [sym_binary_integer_literal] = ACTIONS(1483), - [sym_decimal_floating_point_literal] = ACTIONS(1483), - [sym_hex_floating_point_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1483), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1483), - [anon_sym_r] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_throw] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_QMARK_QMARK] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [sym_equality_operator] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_GT_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_PERCENT] = ACTIONS(1485), - [anon_sym_TILDE_SLASH] = ACTIONS(1483), - [sym_increment_operator] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_await] = ACTIONS(1485), - [anon_sym_is] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_QMARK_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1485), - [anon_sym_switch] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_abstract] = ACTIONS(1485), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_super] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1485), - [anon_sym_var] = ACTIONS(1485), - [anon_sym_covariant] = ACTIONS(1485), - [anon_sym_Function] = ACTIONS(1485), - [anon_sym_get] = ACTIONS(1485), - [anon_sym_set] = ACTIONS(1485), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_final] = ACTIONS(1485), - [anon_sym_external] = ACTIONS(1485), - [anon_sym_this] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_identifier] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1487), - [sym_decimal_integer_literal] = ACTIONS(1489), - [sym_hex_integer_literal] = ACTIONS(1489), - [sym_octal_integer_literal] = ACTIONS(1487), - [sym_binary_integer_literal] = ACTIONS(1487), - [sym_decimal_floating_point_literal] = ACTIONS(1487), - [sym_hex_floating_point_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1487), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1487), - [anon_sym_r] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_COMMA] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1489), - [anon_sym_throw] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1489), - [anon_sym_PLUS_EQ] = ACTIONS(1487), - [anon_sym_DASH_EQ] = ACTIONS(1487), - [anon_sym_STAR_EQ] = ACTIONS(1487), - [anon_sym_SLASH_EQ] = ACTIONS(1487), - [anon_sym_AMP_EQ] = ACTIONS(1487), - [anon_sym_PIPE_EQ] = ACTIONS(1487), - [anon_sym_CARET_EQ] = ACTIONS(1487), - [anon_sym_PERCENT_EQ] = ACTIONS(1487), - [anon_sym_LT_LT_EQ] = ACTIONS(1487), - [anon_sym_GT_GT_EQ] = ACTIONS(1487), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1487), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_QMARK_QMARK] = ACTIONS(1489), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1487), - [sym_equality_operator] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_GT_EQ] = ACTIONS(1487), - [anon_sym_LT_EQ] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1489), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_GT_GT_GT] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_TILDE_SLASH] = ACTIONS(1487), - [sym_increment_operator] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_is] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1489), - [anon_sym_QMARK_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_try] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_abstract] = ACTIONS(1489), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_super] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1489), - [anon_sym_var] = ACTIONS(1489), - [anon_sym_covariant] = ACTIONS(1489), - [anon_sym_Function] = ACTIONS(1489), - [anon_sym_get] = ACTIONS(1489), - [anon_sym_set] = ACTIONS(1489), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_final] = ACTIONS(1489), - [anon_sym_external] = ACTIONS(1489), - [anon_sym_this] = ACTIONS(1489), - [sym_comment] = ACTIONS(3), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1491), - [sym_decimal_integer_literal] = ACTIONS(1493), - [sym_hex_integer_literal] = ACTIONS(1493), - [sym_octal_integer_literal] = ACTIONS(1491), - [sym_binary_integer_literal] = ACTIONS(1491), - [sym_decimal_floating_point_literal] = ACTIONS(1491), - [sym_hex_floating_point_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1491), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1491), - [anon_sym_r] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1493), - [anon_sym_throw] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_QMARK_QMARK] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [sym_equality_operator] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_GT_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_TILDE_SLASH] = ACTIONS(1491), - [sym_increment_operator] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_is] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_QMARK_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_yield] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_abstract] = ACTIONS(1493), - [anon_sym_class] = ACTIONS(1493), - [anon_sym_super] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1493), - [anon_sym_var] = ACTIONS(1493), - [anon_sym_covariant] = ACTIONS(1493), - [anon_sym_Function] = ACTIONS(1493), - [anon_sym_get] = ACTIONS(1493), - [anon_sym_set] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_final] = ACTIONS(1493), - [anon_sym_external] = ACTIONS(1493), - [anon_sym_this] = ACTIONS(1493), + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3402), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [306] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(577), - [sym_identifier] = ACTIONS(579), - [anon_sym_POUND] = ACTIONS(577), - [sym_decimal_integer_literal] = ACTIONS(579), - [sym_hex_integer_literal] = ACTIONS(579), - [sym_octal_integer_literal] = ACTIONS(577), - [sym_binary_integer_literal] = ACTIONS(577), - [sym_decimal_floating_point_literal] = ACTIONS(577), - [sym_hex_floating_point_literal] = ACTIONS(579), - [anon_sym_true] = ACTIONS(579), - [anon_sym_false] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(577), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(577), - [anon_sym_r] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_null] = ACTIONS(579), - [anon_sym_throw] = ACTIONS(579), - [anon_sym_LPAREN] = ACTIONS(577), - [anon_sym_QMARK_QMARK] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(577), - [sym_equality_operator] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(579), - [anon_sym_await] = ACTIONS(579), - [anon_sym_is] = ACTIONS(579), - [anon_sym_as] = ACTIONS(579), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_QMARK_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_assert] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_do] = ACTIONS(579), - [anon_sym_while] = ACTIONS(579), - [anon_sym_break] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(579), - [anon_sym_yield] = ACTIONS(579), - [anon_sym_return] = ACTIONS(579), - [anon_sym_try] = ACTIONS(579), - [anon_sym_if] = ACTIONS(579), - [anon_sym_for] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_abstract] = ACTIONS(579), - [anon_sym_class] = ACTIONS(579), - [anon_sym_super] = ACTIONS(579), - [anon_sym_void] = ACTIONS(579), - [anon_sym_var] = ACTIONS(579), - [anon_sym_covariant] = ACTIONS(579), - [anon_sym_Function] = ACTIONS(579), - [anon_sym_get] = ACTIONS(579), - [anon_sym_set] = ACTIONS(579), - [anon_sym_new] = ACTIONS(579), - [anon_sym_const] = ACTIONS(579), - [anon_sym_final] = ACTIONS(579), - [anon_sym_external] = ACTIONS(579), - [anon_sym_this] = ACTIONS(579), + [241] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3499), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [307] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), + [242] = { + [aux_sym_bitwise_or_expression_repeat1] = STATE(242), [ts_builtin_sym_end] = ACTIONS(608), [sym_identifier] = ACTIONS(610), [anon_sym_POUND] = ACTIONS(608), @@ -44141,28 +38496,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(608), [anon_sym_null] = ACTIONS(610), [anon_sym_throw] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(608), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(608), [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), + [anon_sym_QMARK_QMARK] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [sym_equality_operator] = ACTIONS(608), [anon_sym_LT] = ACTIONS(610), [anon_sym_GT] = ACTIONS(610), [anon_sym_GT_EQ] = ACTIONS(608), [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_GT_GT_GT] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_TILDE_SLASH] = ACTIONS(608), [sym_increment_operator] = ACTIONS(608), [anon_sym_BANG] = ACTIONS(610), [anon_sym_TILDE] = ACTIONS(610), @@ -44201,162 +38569,358 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(610), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3353), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [243] = { + [aux_sym__if_null_expression] = STATE(243), + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [sym_decimal_integer_literal] = ACTIONS(1160), + [sym_hex_integer_literal] = ACTIONS(1160), + [sym_octal_integer_literal] = ACTIONS(1158), + [sym_binary_integer_literal] = ACTIONS(1158), + [sym_decimal_floating_point_literal] = ACTIONS(1158), + [sym_hex_floating_point_literal] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1158), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1158), + [anon_sym_r] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_COMMA] = ACTIONS(1158), + [anon_sym_null] = ACTIONS(1160), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1160), + [anon_sym_PLUS_EQ] = ACTIONS(1158), + [anon_sym_DASH_EQ] = ACTIONS(1158), + [anon_sym_STAR_EQ] = ACTIONS(1158), + [anon_sym_SLASH_EQ] = ACTIONS(1158), + [anon_sym_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_EQ] = ACTIONS(1158), + [anon_sym_CARET_EQ] = ACTIONS(1158), + [anon_sym_PERCENT_EQ] = ACTIONS(1158), + [anon_sym_LT_LT_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_QMARK_QMARK] = ACTIONS(1162), + [anon_sym_QMARK] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_AMP_AMP] = ACTIONS(1158), + [sym_equality_operator] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_GT_EQ] = ACTIONS(1158), + [anon_sym_LT_EQ] = ACTIONS(1158), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_CARET] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1160), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_GT_GT_GT] = ACTIONS(1160), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_SLASH] = ACTIONS(1160), + [anon_sym_PERCENT] = ACTIONS(1160), + [anon_sym_TILDE_SLASH] = ACTIONS(1158), + [sym_increment_operator] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_await] = ACTIONS(1160), + [anon_sym_is] = ACTIONS(1160), + [anon_sym_as] = ACTIONS(1160), + [anon_sym_DOT] = ACTIONS(1160), + [anon_sym_QMARK_DOT] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_assert] = ACTIONS(1160), + [anon_sym_switch] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_try] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_class] = ACTIONS(1160), + [anon_sym_super] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1160), + [anon_sym_var] = ACTIONS(1160), + [anon_sym_covariant] = ACTIONS(1160), + [anon_sym_Function] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_new] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_final] = ACTIONS(1160), + [anon_sym_external] = ACTIONS(1160), + [anon_sym_this] = ACTIONS(1160), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3410), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), + [244] = { + [aux_sym_logical_or_expression_repeat1] = STATE(244), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(572), + [anon_sym_r] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_null] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(574), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_STAR_EQ] = ACTIONS(572), + [anon_sym_SLASH_EQ] = ACTIONS(572), + [anon_sym_AMP_EQ] = ACTIONS(572), + [anon_sym_PIPE_EQ] = ACTIONS(572), + [anon_sym_CARET_EQ] = ACTIONS(572), + [anon_sym_PERCENT_EQ] = ACTIONS(572), + [anon_sym_LT_LT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_EQ] = ACTIONS(572), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(572), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_QMARK_QMARK] = ACTIONS(574), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(1165), + [anon_sym_AMP_AMP] = ACTIONS(572), + [sym_equality_operator] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(574), + [anon_sym_GT_GT_GT] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_STAR] = ACTIONS(574), + [anon_sym_SLASH] = ACTIONS(574), + [anon_sym_PERCENT] = ACTIONS(574), + [anon_sym_TILDE_SLASH] = ACTIONS(572), + [sym_increment_operator] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_is] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(574), + [anon_sym_QMARK_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_super] = ACTIONS(574), + [anon_sym_void] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [anon_sym_covariant] = ACTIONS(574), + [anon_sym_Function] = ACTIONS(574), + [anon_sym_get] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_external] = ACTIONS(574), + [anon_sym_this] = ACTIONS(574), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [aux_sym_logical_and_expression_repeat1] = STATE(245), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(576), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), + [anon_sym_r] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_null] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(578), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(576), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_QMARK_QMARK] = ACTIONS(578), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(1168), + [sym_equality_operator] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_CARET] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(578), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_GT_GT_GT] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(578), + [anon_sym_SLASH] = ACTIONS(578), + [anon_sym_PERCENT] = ACTIONS(578), + [anon_sym_TILDE_SLASH] = ACTIONS(576), + [sym_increment_operator] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_await] = ACTIONS(578), + [anon_sym_is] = ACTIONS(578), + [anon_sym_as] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_QMARK_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_super] = ACTIONS(578), + [anon_sym_void] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [anon_sym_covariant] = ACTIONS(578), + [anon_sym_Function] = ACTIONS(578), + [anon_sym_get] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [anon_sym_const] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_external] = ACTIONS(578), + [anon_sym_this] = ACTIONS(578), + [sym_comment] = ACTIONS(3), + }, + [246] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3538), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -44376,7 +38940,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1171), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -44385,117 +38949,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [310] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [sym_decimal_integer_literal] = ACTIONS(598), - [sym_hex_integer_literal] = ACTIONS(598), - [sym_octal_integer_literal] = ACTIONS(596), - [sym_binary_integer_literal] = ACTIONS(596), - [sym_decimal_floating_point_literal] = ACTIONS(596), - [sym_hex_floating_point_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), - [anon_sym_r] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_throw] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_await] = ACTIONS(598), - [anon_sym_is] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(598), - [anon_sym_QMARK_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_switch] = ACTIONS(598), - [anon_sym_do] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_try] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_abstract] = ACTIONS(598), - [anon_sym_class] = ACTIONS(598), - [anon_sym_super] = ACTIONS(598), - [anon_sym_void] = ACTIONS(598), - [anon_sym_var] = ACTIONS(598), - [anon_sym_covariant] = ACTIONS(598), - [anon_sym_Function] = ACTIONS(598), - [anon_sym_get] = ACTIONS(598), - [anon_sym_set] = ACTIONS(598), - [anon_sym_new] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_final] = ACTIONS(598), - [anon_sym_external] = ACTIONS(598), - [anon_sym_this] = ACTIONS(598), + [247] = { + [aux_sym_bitwise_xor_expression_repeat1] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(606), + [sym_hex_integer_literal] = ACTIONS(606), + [sym_octal_integer_literal] = ACTIONS(604), + [sym_binary_integer_literal] = ACTIONS(604), + [sym_decimal_floating_point_literal] = ACTIONS(604), + [sym_hex_floating_point_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), + [anon_sym_r] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_throw] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(604), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_QMARK_QMARK] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(604), + [sym_equality_operator] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_GT_GT_GT] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_TILDE_SLASH] = ACTIONS(604), + [sym_increment_operator] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_await] = ACTIONS(606), + [anon_sym_is] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(606), + [anon_sym_QMARK_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_assert] = ACTIONS(606), + [anon_sym_switch] = ACTIONS(606), + [anon_sym_do] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_try] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_abstract] = ACTIONS(606), + [anon_sym_class] = ACTIONS(606), + [anon_sym_super] = ACTIONS(606), + [anon_sym_void] = ACTIONS(606), + [anon_sym_var] = ACTIONS(606), + [anon_sym_covariant] = ACTIONS(606), + [anon_sym_Function] = ACTIONS(606), + [anon_sym_get] = ACTIONS(606), + [anon_sym_set] = ACTIONS(606), + [anon_sym_new] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_final] = ACTIONS(606), + [anon_sym_external] = ACTIONS(606), + [anon_sym_this] = ACTIONS(606), [sym_comment] = ACTIONS(3), }, - [311] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), + [248] = { + [aux_sym_bitwise_and_expression_repeat1] = STATE(248), [ts_builtin_sym_end] = ACTIONS(600), [sym_identifier] = ACTIONS(602), [anon_sym_POUND] = ACTIONS(600), @@ -44517,28 +39072,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(600), [anon_sym_null] = ACTIONS(602), [anon_sym_throw] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(600), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(600), [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), + [anon_sym_QMARK_QMARK] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [sym_equality_operator] = ACTIONS(600), [anon_sym_LT] = ACTIONS(602), [anon_sym_GT] = ACTIONS(602), [anon_sym_GT_EQ] = ACTIONS(600), [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(1176), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_GT_GT_GT] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_TILDE_SLASH] = ACTIONS(600), [sym_increment_operator] = ACTIONS(600), [anon_sym_BANG] = ACTIONS(602), [anon_sym_TILDE] = ACTIONS(602), @@ -44577,256 +39145,166 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(602), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3422), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [313] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(592), - [sym_identifier] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [sym_decimal_integer_literal] = ACTIONS(594), - [sym_hex_integer_literal] = ACTIONS(594), - [sym_octal_integer_literal] = ACTIONS(592), - [sym_binary_integer_literal] = ACTIONS(592), - [sym_decimal_floating_point_literal] = ACTIONS(592), - [sym_hex_floating_point_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(594), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(592), - [anon_sym_r] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_null] = ACTIONS(594), - [anon_sym_throw] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), + [249] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [sym_cascade_section] = STATE(762), + [aux_sym__expression_repeat1] = STATE(762), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [anon_sym_POUND] = ACTIONS(534), + [sym_decimal_integer_literal] = ACTIONS(536), + [sym_hex_integer_literal] = ACTIONS(536), + [sym_octal_integer_literal] = ACTIONS(534), + [sym_binary_integer_literal] = ACTIONS(534), + [sym_decimal_floating_point_literal] = ACTIONS(534), + [sym_hex_floating_point_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(536), + [anon_sym_false] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(534), + [anon_sym_r] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_null] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_GT_GT_GT] = ACTIONS(1195), [anon_sym_PLUS] = ACTIONS(556), [anon_sym_DASH] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(560), [anon_sym_SLASH] = ACTIONS(558), [anon_sym_PERCENT] = ACTIONS(560), [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_await] = ACTIONS(594), - [anon_sym_is] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [anon_sym_QMARK_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_assert] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(594), - [anon_sym_do] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_try] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(594), - [anon_sym_abstract] = ACTIONS(594), - [anon_sym_class] = ACTIONS(594), - [anon_sym_super] = ACTIONS(594), - [anon_sym_void] = ACTIONS(594), - [anon_sym_var] = ACTIONS(594), - [anon_sym_covariant] = ACTIONS(594), - [anon_sym_Function] = ACTIONS(594), - [anon_sym_get] = ACTIONS(594), - [anon_sym_set] = ACTIONS(594), - [anon_sym_new] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_final] = ACTIONS(594), - [anon_sym_external] = ACTIONS(594), - [anon_sym_this] = ACTIONS(594), + [sym_increment_operator] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_TILDE] = ACTIONS(536), + [anon_sym_await] = ACTIONS(536), + [anon_sym_is] = ACTIONS(536), + [anon_sym_as] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(536), + [anon_sym_QMARK_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT] = ACTIONS(1197), + [anon_sym_assert] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_abstract] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [anon_sym_super] = ACTIONS(536), + [anon_sym_void] = ACTIONS(536), + [anon_sym_var] = ACTIONS(536), + [anon_sym_covariant] = ACTIONS(536), + [anon_sym_Function] = ACTIONS(536), + [anon_sym_get] = ACTIONS(536), + [anon_sym_set] = ACTIONS(536), + [anon_sym_new] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_final] = ACTIONS(536), + [anon_sym_external] = ACTIONS(536), + [anon_sym_this] = ACTIONS(536), [sym_comment] = ACTIONS(3), }, - [314] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3480), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), + [250] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3424), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -44846,7 +39324,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_RPAREN] = ACTIONS(1200), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -44855,72 +39333,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [315] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3503), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), + [251] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3096), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3096), + [sym_assignment_expression] = STATE(3096), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym__argument_list] = STATE(3379), + [sym_named_argument] = STATE(3192), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -44940,7 +39420,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1202), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -44949,1804 +39429,9618 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [316] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3392), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [252] = { + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1204), + [sym_decimal_integer_literal] = ACTIONS(1206), + [sym_hex_integer_literal] = ACTIONS(1206), + [sym_octal_integer_literal] = ACTIONS(1204), + [sym_binary_integer_literal] = ACTIONS(1204), + [sym_decimal_floating_point_literal] = ACTIONS(1204), + [sym_hex_floating_point_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1204), + [anon_sym_r] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_null] = ACTIONS(1206), + [anon_sym_throw] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1206), + [anon_sym_PLUS_EQ] = ACTIONS(1204), + [anon_sym_DASH_EQ] = ACTIONS(1204), + [anon_sym_STAR_EQ] = ACTIONS(1204), + [anon_sym_SLASH_EQ] = ACTIONS(1204), + [anon_sym_AMP_EQ] = ACTIONS(1204), + [anon_sym_PIPE_EQ] = ACTIONS(1204), + [anon_sym_CARET_EQ] = ACTIONS(1204), + [anon_sym_PERCENT_EQ] = ACTIONS(1204), + [anon_sym_LT_LT_EQ] = ACTIONS(1204), + [anon_sym_GT_GT_EQ] = ACTIONS(1204), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1204), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_QMARK_QMARK] = ACTIONS(1206), + [anon_sym_QMARK] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1204), + [anon_sym_AMP_AMP] = ACTIONS(1204), + [sym_equality_operator] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_GT] = ACTIONS(1206), + [anon_sym_GT_EQ] = ACTIONS(1204), + [anon_sym_LT_EQ] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_CARET] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1206), + [anon_sym_GT_GT] = ACTIONS(1206), + [anon_sym_GT_GT_GT] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1206), + [anon_sym_TILDE_SLASH] = ACTIONS(1204), + [sym_increment_operator] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_is] = ACTIONS(1206), + [anon_sym_as] = ACTIONS(1206), + [anon_sym_DOT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(1204), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_assert] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_try] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_abstract] = ACTIONS(1206), + [anon_sym_class] = ACTIONS(1206), + [anon_sym_super] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1206), + [anon_sym_var] = ACTIONS(1206), + [anon_sym_covariant] = ACTIONS(1206), + [anon_sym_Function] = ACTIONS(1206), + [anon_sym_get] = ACTIONS(1206), + [anon_sym_set] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_final] = ACTIONS(1206), + [anon_sym_external] = ACTIONS(1206), + [anon_sym_this] = ACTIONS(1206), [sym_comment] = ACTIONS(3), }, - [317] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [anon_sym_POUND] = ACTIONS(573), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [anon_sym_true] = ACTIONS(575), - [anon_sym_false] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [anon_sym_SQUOTE] = ACTIONS(575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(573), - [anon_sym_r] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(575), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(575), - [anon_sym_await] = ACTIONS(575), - [anon_sym_is] = ACTIONS(575), - [anon_sym_as] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_super] = ACTIONS(575), - [anon_sym_void] = ACTIONS(575), - [anon_sym_var] = ACTIONS(575), - [anon_sym_covariant] = ACTIONS(575), - [anon_sym_Function] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), - [anon_sym_new] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_external] = ACTIONS(575), - [anon_sym_this] = ACTIONS(575), + [253] = { + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(1208), + [sym_decimal_integer_literal] = ACTIONS(1210), + [sym_hex_integer_literal] = ACTIONS(1210), + [sym_octal_integer_literal] = ACTIONS(1208), + [sym_binary_integer_literal] = ACTIONS(1208), + [sym_decimal_floating_point_literal] = ACTIONS(1208), + [sym_hex_floating_point_literal] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1208), + [anon_sym_r] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_null] = ACTIONS(1210), + [anon_sym_throw] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1210), + [anon_sym_PLUS_EQ] = ACTIONS(1208), + [anon_sym_DASH_EQ] = ACTIONS(1208), + [anon_sym_STAR_EQ] = ACTIONS(1208), + [anon_sym_SLASH_EQ] = ACTIONS(1208), + [anon_sym_AMP_EQ] = ACTIONS(1208), + [anon_sym_PIPE_EQ] = ACTIONS(1208), + [anon_sym_CARET_EQ] = ACTIONS(1208), + [anon_sym_PERCENT_EQ] = ACTIONS(1208), + [anon_sym_LT_LT_EQ] = ACTIONS(1208), + [anon_sym_GT_GT_EQ] = ACTIONS(1208), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1208), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_QMARK_QMARK] = ACTIONS(1210), + [anon_sym_QMARK] = ACTIONS(1210), + [anon_sym_PIPE_PIPE] = ACTIONS(1208), + [anon_sym_AMP_AMP] = ACTIONS(1208), + [sym_equality_operator] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_GT] = ACTIONS(1210), + [anon_sym_GT_EQ] = ACTIONS(1208), + [anon_sym_LT_EQ] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_LT_LT] = ACTIONS(1210), + [anon_sym_GT_GT] = ACTIONS(1210), + [anon_sym_GT_GT_GT] = ACTIONS(1210), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1210), + [anon_sym_PERCENT] = ACTIONS(1210), + [anon_sym_TILDE_SLASH] = ACTIONS(1208), + [sym_increment_operator] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_await] = ACTIONS(1210), + [anon_sym_is] = ACTIONS(1210), + [anon_sym_as] = ACTIONS(1210), + [anon_sym_DOT] = ACTIONS(1210), + [anon_sym_QMARK_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_AT] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_abstract] = ACTIONS(1210), + [anon_sym_class] = ACTIONS(1210), + [anon_sym_super] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_var] = ACTIONS(1210), + [anon_sym_covariant] = ACTIONS(1210), + [anon_sym_Function] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1210), + [anon_sym_set] = ACTIONS(1210), + [anon_sym_new] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_final] = ACTIONS(1210), + [anon_sym_external] = ACTIONS(1210), + [anon_sym_this] = ACTIONS(1210), [sym_comment] = ACTIONS(3), }, - [318] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [sym_decimal_integer_literal] = ACTIONS(590), - [sym_hex_integer_literal] = ACTIONS(590), - [sym_octal_integer_literal] = ACTIONS(588), - [sym_binary_integer_literal] = ACTIONS(588), - [sym_decimal_floating_point_literal] = ACTIONS(588), - [sym_hex_floating_point_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), - [anon_sym_r] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_null] = ACTIONS(590), - [anon_sym_throw] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_is] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(590), - [anon_sym_QMARK_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_switch] = ACTIONS(590), - [anon_sym_do] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_try] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_abstract] = ACTIONS(590), - [anon_sym_class] = ACTIONS(590), - [anon_sym_super] = ACTIONS(590), - [anon_sym_void] = ACTIONS(590), - [anon_sym_var] = ACTIONS(590), - [anon_sym_covariant] = ACTIONS(590), - [anon_sym_Function] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), - [anon_sym_new] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_final] = ACTIONS(590), - [anon_sym_external] = ACTIONS(590), - [anon_sym_this] = ACTIONS(590), + [254] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1212), + [sym_decimal_integer_literal] = ACTIONS(1214), + [sym_hex_integer_literal] = ACTIONS(1214), + [sym_octal_integer_literal] = ACTIONS(1212), + [sym_binary_integer_literal] = ACTIONS(1212), + [sym_decimal_floating_point_literal] = ACTIONS(1212), + [sym_hex_floating_point_literal] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1214), + [anon_sym_false] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1212), + [anon_sym_r] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1214), + [anon_sym_throw] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(1212), + [anon_sym_DASH_EQ] = ACTIONS(1212), + [anon_sym_STAR_EQ] = ACTIONS(1212), + [anon_sym_SLASH_EQ] = ACTIONS(1212), + [anon_sym_AMP_EQ] = ACTIONS(1212), + [anon_sym_PIPE_EQ] = ACTIONS(1212), + [anon_sym_CARET_EQ] = ACTIONS(1212), + [anon_sym_PERCENT_EQ] = ACTIONS(1212), + [anon_sym_LT_LT_EQ] = ACTIONS(1212), + [anon_sym_GT_GT_EQ] = ACTIONS(1212), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1212), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_QMARK_QMARK] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1212), + [anon_sym_AMP_AMP] = ACTIONS(1212), + [sym_equality_operator] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_GT_EQ] = ACTIONS(1212), + [anon_sym_LT_EQ] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_CARET] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_LT_LT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_GT_GT_GT] = ACTIONS(1214), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1214), + [anon_sym_PERCENT] = ACTIONS(1214), + [anon_sym_TILDE_SLASH] = ACTIONS(1212), + [sym_increment_operator] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(1214), + [anon_sym_is] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_QMARK_DOT] = ACTIONS(1212), + [anon_sym_DOT_DOT] = ACTIONS(1212), + [anon_sym_assert] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_try] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_abstract] = ACTIONS(1214), + [anon_sym_class] = ACTIONS(1214), + [anon_sym_super] = ACTIONS(1214), + [anon_sym_void] = ACTIONS(1214), + [anon_sym_var] = ACTIONS(1214), + [anon_sym_covariant] = ACTIONS(1214), + [anon_sym_Function] = ACTIONS(1214), + [anon_sym_get] = ACTIONS(1214), + [anon_sym_set] = ACTIONS(1214), + [anon_sym_new] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_final] = ACTIONS(1214), + [anon_sym_external] = ACTIONS(1214), + [anon_sym_this] = ACTIONS(1214), [sym_comment] = ACTIONS(3), }, - [319] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(565), - [sym_identifier] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(565), - [sym_decimal_integer_literal] = ACTIONS(567), - [sym_hex_integer_literal] = ACTIONS(567), - [sym_octal_integer_literal] = ACTIONS(565), - [sym_binary_integer_literal] = ACTIONS(565), - [sym_decimal_floating_point_literal] = ACTIONS(565), - [sym_hex_floating_point_literal] = ACTIONS(567), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(565), - [anon_sym_r] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_null] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_await] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_DOT_DOT] = ACTIONS(565), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(567), - [anon_sym_do] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_try] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(567), - [anon_sym_class] = ACTIONS(567), - [anon_sym_super] = ACTIONS(567), - [anon_sym_void] = ACTIONS(567), - [anon_sym_var] = ACTIONS(567), - [anon_sym_covariant] = ACTIONS(567), - [anon_sym_Function] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_new] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_final] = ACTIONS(567), - [anon_sym_external] = ACTIONS(567), - [anon_sym_this] = ACTIONS(567), + [255] = { + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1216), + [sym_decimal_integer_literal] = ACTIONS(1218), + [sym_hex_integer_literal] = ACTIONS(1218), + [sym_octal_integer_literal] = ACTIONS(1216), + [sym_binary_integer_literal] = ACTIONS(1216), + [sym_decimal_floating_point_literal] = ACTIONS(1216), + [sym_hex_floating_point_literal] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1218), + [anon_sym_false] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1216), + [anon_sym_r] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_COMMA] = ACTIONS(1216), + [anon_sym_null] = ACTIONS(1218), + [anon_sym_throw] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1218), + [anon_sym_PLUS_EQ] = ACTIONS(1216), + [anon_sym_DASH_EQ] = ACTIONS(1216), + [anon_sym_STAR_EQ] = ACTIONS(1216), + [anon_sym_SLASH_EQ] = ACTIONS(1216), + [anon_sym_AMP_EQ] = ACTIONS(1216), + [anon_sym_PIPE_EQ] = ACTIONS(1216), + [anon_sym_CARET_EQ] = ACTIONS(1216), + [anon_sym_PERCENT_EQ] = ACTIONS(1216), + [anon_sym_LT_LT_EQ] = ACTIONS(1216), + [anon_sym_GT_GT_EQ] = ACTIONS(1216), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1216), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_QMARK_QMARK] = ACTIONS(1218), + [anon_sym_QMARK] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [sym_equality_operator] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1218), + [anon_sym_GT_EQ] = ACTIONS(1216), + [anon_sym_LT_EQ] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_CARET] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_LT_LT] = ACTIONS(1218), + [anon_sym_GT_GT] = ACTIONS(1218), + [anon_sym_GT_GT_GT] = ACTIONS(1218), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_SLASH] = ACTIONS(1218), + [anon_sym_PERCENT] = ACTIONS(1218), + [anon_sym_TILDE_SLASH] = ACTIONS(1216), + [sym_increment_operator] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_await] = ACTIONS(1218), + [anon_sym_is] = ACTIONS(1218), + [anon_sym_as] = ACTIONS(1218), + [anon_sym_DOT] = ACTIONS(1218), + [anon_sym_QMARK_DOT] = ACTIONS(1216), + [anon_sym_DOT_DOT] = ACTIONS(1216), + [anon_sym_assert] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_yield] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_try] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_abstract] = ACTIONS(1218), + [anon_sym_class] = ACTIONS(1218), + [anon_sym_super] = ACTIONS(1218), + [anon_sym_void] = ACTIONS(1218), + [anon_sym_var] = ACTIONS(1218), + [anon_sym_covariant] = ACTIONS(1218), + [anon_sym_Function] = ACTIONS(1218), + [anon_sym_get] = ACTIONS(1218), + [anon_sym_set] = ACTIONS(1218), + [anon_sym_new] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_final] = ACTIONS(1218), + [anon_sym_external] = ACTIONS(1218), + [anon_sym_this] = ACTIONS(1218), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1222), + [anon_sym_POUND] = ACTIONS(1220), + [sym_decimal_integer_literal] = ACTIONS(1222), + [sym_hex_integer_literal] = ACTIONS(1222), + [sym_octal_integer_literal] = ACTIONS(1220), + [sym_binary_integer_literal] = ACTIONS(1220), + [sym_decimal_floating_point_literal] = ACTIONS(1220), + [sym_hex_floating_point_literal] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1222), + [anon_sym_false] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1220), + [anon_sym_r] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1220), + [anon_sym_null] = ACTIONS(1222), + [anon_sym_throw] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1222), + [anon_sym_PLUS_EQ] = ACTIONS(1220), + [anon_sym_DASH_EQ] = ACTIONS(1220), + [anon_sym_STAR_EQ] = ACTIONS(1220), + [anon_sym_SLASH_EQ] = ACTIONS(1220), + [anon_sym_AMP_EQ] = ACTIONS(1220), + [anon_sym_PIPE_EQ] = ACTIONS(1220), + [anon_sym_CARET_EQ] = ACTIONS(1220), + [anon_sym_PERCENT_EQ] = ACTIONS(1220), + [anon_sym_LT_LT_EQ] = ACTIONS(1220), + [anon_sym_GT_GT_EQ] = ACTIONS(1220), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1220), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_QMARK] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [sym_equality_operator] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_TILDE_SLASH] = ACTIONS(1220), + [sym_increment_operator] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_await] = ACTIONS(1222), + [anon_sym_is] = ACTIONS(1222), + [anon_sym_as] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_QMARK_DOT] = ACTIONS(1220), + [anon_sym_DOT_DOT] = ACTIONS(1220), + [anon_sym_assert] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_try] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_AT] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_abstract] = ACTIONS(1222), + [anon_sym_class] = ACTIONS(1222), + [anon_sym_super] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1222), + [anon_sym_var] = ACTIONS(1222), + [anon_sym_covariant] = ACTIONS(1222), + [anon_sym_Function] = ACTIONS(1222), + [anon_sym_get] = ACTIONS(1222), + [anon_sym_set] = ACTIONS(1222), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_final] = ACTIONS(1222), + [anon_sym_external] = ACTIONS(1222), + [anon_sym_this] = ACTIONS(1222), + [sym_comment] = ACTIONS(3), + }, + [257] = { + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(1224), + [sym_decimal_integer_literal] = ACTIONS(1226), + [sym_hex_integer_literal] = ACTIONS(1226), + [sym_octal_integer_literal] = ACTIONS(1224), + [sym_binary_integer_literal] = ACTIONS(1224), + [sym_decimal_floating_point_literal] = ACTIONS(1224), + [sym_hex_floating_point_literal] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1226), + [anon_sym_false] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1224), + [anon_sym_r] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_COMMA] = ACTIONS(1224), + [anon_sym_null] = ACTIONS(1226), + [anon_sym_throw] = ACTIONS(1226), + [anon_sym_EQ] = ACTIONS(1226), + [anon_sym_PLUS_EQ] = ACTIONS(1224), + [anon_sym_DASH_EQ] = ACTIONS(1224), + [anon_sym_STAR_EQ] = ACTIONS(1224), + [anon_sym_SLASH_EQ] = ACTIONS(1224), + [anon_sym_AMP_EQ] = ACTIONS(1224), + [anon_sym_PIPE_EQ] = ACTIONS(1224), + [anon_sym_CARET_EQ] = ACTIONS(1224), + [anon_sym_PERCENT_EQ] = ACTIONS(1224), + [anon_sym_LT_LT_EQ] = ACTIONS(1224), + [anon_sym_GT_GT_EQ] = ACTIONS(1224), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1224), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_QMARK_QMARK] = ACTIONS(1226), + [anon_sym_QMARK] = ACTIONS(1226), + [anon_sym_PIPE_PIPE] = ACTIONS(1224), + [anon_sym_AMP_AMP] = ACTIONS(1224), + [sym_equality_operator] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_GT] = ACTIONS(1226), + [anon_sym_GT_EQ] = ACTIONS(1224), + [anon_sym_LT_EQ] = ACTIONS(1224), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_CARET] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_LT_LT] = ACTIONS(1226), + [anon_sym_GT_GT] = ACTIONS(1226), + [anon_sym_GT_GT_GT] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_SLASH] = ACTIONS(1226), + [anon_sym_PERCENT] = ACTIONS(1226), + [anon_sym_TILDE_SLASH] = ACTIONS(1224), + [sym_increment_operator] = ACTIONS(1224), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_await] = ACTIONS(1226), + [anon_sym_is] = ACTIONS(1226), + [anon_sym_as] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1226), + [anon_sym_QMARK_DOT] = ACTIONS(1224), + [anon_sym_DOT_DOT] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_try] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_abstract] = ACTIONS(1226), + [anon_sym_class] = ACTIONS(1226), + [anon_sym_super] = ACTIONS(1226), + [anon_sym_void] = ACTIONS(1226), + [anon_sym_var] = ACTIONS(1226), + [anon_sym_covariant] = ACTIONS(1226), + [anon_sym_Function] = ACTIONS(1228), + [anon_sym_get] = ACTIONS(1226), + [anon_sym_set] = ACTIONS(1226), + [anon_sym_new] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_final] = ACTIONS(1226), + [anon_sym_external] = ACTIONS(1226), + [anon_sym_this] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [ts_builtin_sym_end] = ACTIONS(1231), + [sym_identifier] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(1231), + [sym_decimal_integer_literal] = ACTIONS(1233), + [sym_hex_integer_literal] = ACTIONS(1233), + [sym_octal_integer_literal] = ACTIONS(1231), + [sym_binary_integer_literal] = ACTIONS(1231), + [sym_decimal_floating_point_literal] = ACTIONS(1231), + [sym_hex_floating_point_literal] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1231), + [anon_sym_r] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_COMMA] = ACTIONS(1231), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1233), + [anon_sym_EQ] = ACTIONS(1233), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_QMARK_QMARK] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [sym_equality_operator] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_GT_GT_GT] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_PERCENT] = ACTIONS(1233), + [anon_sym_TILDE_SLASH] = ACTIONS(1231), + [sym_increment_operator] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_is] = ACTIONS(1233), + [anon_sym_as] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_assert] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_abstract] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1233), + [anon_sym_super] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_var] = ACTIONS(1233), + [anon_sym_covariant] = ACTIONS(1233), + [anon_sym_Function] = ACTIONS(1233), + [anon_sym_get] = ACTIONS(1233), + [anon_sym_set] = ACTIONS(1233), + [anon_sym_new] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_final] = ACTIONS(1233), + [anon_sym_external] = ACTIONS(1233), + [anon_sym_this] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + }, + [259] = { + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(1235), + [sym_decimal_integer_literal] = ACTIONS(1237), + [sym_hex_integer_literal] = ACTIONS(1237), + [sym_octal_integer_literal] = ACTIONS(1235), + [sym_binary_integer_literal] = ACTIONS(1235), + [sym_decimal_floating_point_literal] = ACTIONS(1235), + [sym_hex_floating_point_literal] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1235), + [anon_sym_r] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_COMMA] = ACTIONS(1235), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_throw] = ACTIONS(1237), + [anon_sym_EQ] = ACTIONS(1237), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_QMARK_QMARK] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [sym_equality_operator] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1237), + [anon_sym_GT_GT] = ACTIONS(1237), + [anon_sym_GT_GT_GT] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_PERCENT] = ACTIONS(1237), + [anon_sym_TILDE_SLASH] = ACTIONS(1235), + [sym_increment_operator] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1237), + [anon_sym_is] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_DOT] = ACTIONS(1237), + [anon_sym_QMARK_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_assert] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_AT] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_abstract] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1237), + [anon_sym_super] = ACTIONS(1237), + [anon_sym_void] = ACTIONS(1237), + [anon_sym_var] = ACTIONS(1237), + [anon_sym_covariant] = ACTIONS(1237), + [anon_sym_Function] = ACTIONS(1237), + [anon_sym_get] = ACTIONS(1237), + [anon_sym_set] = ACTIONS(1237), + [anon_sym_new] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_final] = ACTIONS(1237), + [anon_sym_external] = ACTIONS(1237), + [anon_sym_this] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + }, + [260] = { + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1239), + [sym_decimal_integer_literal] = ACTIONS(1242), + [sym_hex_integer_literal] = ACTIONS(1242), + [sym_octal_integer_literal] = ACTIONS(1239), + [sym_binary_integer_literal] = ACTIONS(1239), + [sym_decimal_floating_point_literal] = ACTIONS(1239), + [sym_hex_floating_point_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1239), + [anon_sym_r] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_null] = ACTIONS(1242), + [anon_sym_throw] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_QMARK_QMARK] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [sym_equality_operator] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_GT_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_TILDE_SLASH] = ACTIONS(1239), + [sym_increment_operator] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_is] = ACTIONS(1242), + [anon_sym_as] = ACTIONS(1242), + [anon_sym_DOT] = ACTIONS(1242), + [anon_sym_QMARK_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1239), + [anon_sym_assert] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_abstract] = ACTIONS(1242), + [anon_sym_class] = ACTIONS(1242), + [anon_sym_super] = ACTIONS(1242), + [anon_sym_void] = ACTIONS(1242), + [anon_sym_var] = ACTIONS(1242), + [anon_sym_covariant] = ACTIONS(1242), + [anon_sym_Function] = ACTIONS(1242), + [anon_sym_get] = ACTIONS(1242), + [anon_sym_set] = ACTIONS(1242), + [anon_sym_new] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_final] = ACTIONS(1242), + [anon_sym_external] = ACTIONS(1242), + [anon_sym_this] = ACTIONS(1242), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1245), + [sym_decimal_integer_literal] = ACTIONS(1247), + [sym_hex_integer_literal] = ACTIONS(1247), + [sym_octal_integer_literal] = ACTIONS(1245), + [sym_binary_integer_literal] = ACTIONS(1245), + [sym_decimal_floating_point_literal] = ACTIONS(1245), + [sym_hex_floating_point_literal] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1245), + [anon_sym_r] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1247), + [anon_sym_throw] = ACTIONS(1247), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1245), + [anon_sym_DASH_EQ] = ACTIONS(1245), + [anon_sym_STAR_EQ] = ACTIONS(1245), + [anon_sym_SLASH_EQ] = ACTIONS(1245), + [anon_sym_AMP_EQ] = ACTIONS(1245), + [anon_sym_PIPE_EQ] = ACTIONS(1245), + [anon_sym_CARET_EQ] = ACTIONS(1245), + [anon_sym_PERCENT_EQ] = ACTIONS(1245), + [anon_sym_LT_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_GT_EQ] = ACTIONS(1245), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1245), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_QMARK_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [sym_equality_operator] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_GT_GT_GT] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1247), + [anon_sym_TILDE_SLASH] = ACTIONS(1245), + [sym_increment_operator] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_await] = ACTIONS(1247), + [anon_sym_is] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_QMARK_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_assert] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_abstract] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_super] = ACTIONS(1247), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_var] = ACTIONS(1247), + [anon_sym_covariant] = ACTIONS(1247), + [anon_sym_Function] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(1247), + [anon_sym_set] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_final] = ACTIONS(1247), + [anon_sym_external] = ACTIONS(1247), + [anon_sym_this] = ACTIONS(1247), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_PLUS_EQ] = ACTIONS(1259), + [anon_sym_DASH_EQ] = ACTIONS(1259), + [anon_sym_STAR_EQ] = ACTIONS(1259), + [anon_sym_SLASH_EQ] = ACTIONS(1259), + [anon_sym_AMP_EQ] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1259), + [anon_sym_CARET_EQ] = ACTIONS(1259), + [anon_sym_PERCENT_EQ] = ACTIONS(1259), + [anon_sym_LT_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_GT_EQ] = ACTIONS(1259), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1259), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_QMARK_QMARK] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1265), + [sym_decimal_integer_literal] = ACTIONS(1267), + [sym_hex_integer_literal] = ACTIONS(1267), + [sym_octal_integer_literal] = ACTIONS(1265), + [sym_binary_integer_literal] = ACTIONS(1265), + [sym_decimal_floating_point_literal] = ACTIONS(1265), + [sym_hex_floating_point_literal] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1265), + [anon_sym_r] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_QMARK_QMARK] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [sym_equality_operator] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_GT_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_TILDE_SLASH] = ACTIONS(1265), + [sym_increment_operator] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_await] = ACTIONS(1267), + [anon_sym_is] = ACTIONS(1267), + [anon_sym_as] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_QMARK_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1265), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_abstract] = ACTIONS(1267), + [anon_sym_class] = ACTIONS(1267), + [anon_sym_super] = ACTIONS(1267), + [anon_sym_void] = ACTIONS(1267), + [anon_sym_var] = ACTIONS(1267), + [anon_sym_covariant] = ACTIONS(1267), + [anon_sym_Function] = ACTIONS(1267), + [anon_sym_get] = ACTIONS(1267), + [anon_sym_set] = ACTIONS(1267), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_final] = ACTIONS(1267), + [anon_sym_external] = ACTIONS(1267), + [anon_sym_this] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(741), + [sym_identifier] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(741), + [sym_decimal_integer_literal] = ACTIONS(743), + [sym_hex_integer_literal] = ACTIONS(743), + [sym_octal_integer_literal] = ACTIONS(741), + [sym_binary_integer_literal] = ACTIONS(741), + [sym_decimal_floating_point_literal] = ACTIONS(741), + [sym_hex_floating_point_literal] = ACTIONS(743), + [anon_sym_true] = ACTIONS(743), + [anon_sym_false] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(741), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(741), + [anon_sym_r] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_null] = ACTIONS(743), + [anon_sym_throw] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(743), + [anon_sym_PLUS_EQ] = ACTIONS(741), + [anon_sym_DASH_EQ] = ACTIONS(741), + [anon_sym_STAR_EQ] = ACTIONS(741), + [anon_sym_SLASH_EQ] = ACTIONS(741), + [anon_sym_AMP_EQ] = ACTIONS(741), + [anon_sym_PIPE_EQ] = ACTIONS(741), + [anon_sym_CARET_EQ] = ACTIONS(741), + [anon_sym_PERCENT_EQ] = ACTIONS(741), + [anon_sym_LT_LT_EQ] = ACTIONS(741), + [anon_sym_GT_GT_EQ] = ACTIONS(741), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(741), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(743), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [sym_equality_operator] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(743), + [anon_sym_AMP] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(743), + [anon_sym_GT_GT] = ACTIONS(743), + [anon_sym_GT_GT_GT] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_PERCENT] = ACTIONS(743), + [anon_sym_TILDE_SLASH] = ACTIONS(741), + [sym_increment_operator] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_await] = ACTIONS(743), + [anon_sym_is] = ACTIONS(743), + [anon_sym_as] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(743), + [anon_sym_QMARK_DOT] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(741), + [anon_sym_assert] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(743), + [anon_sym_do] = ACTIONS(743), + [anon_sym_while] = ACTIONS(743), + [anon_sym_break] = ACTIONS(743), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(743), + [anon_sym_return] = ACTIONS(743), + [anon_sym_try] = ACTIONS(743), + [anon_sym_if] = ACTIONS(743), + [anon_sym_for] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_abstract] = ACTIONS(743), + [anon_sym_class] = ACTIONS(743), + [anon_sym_super] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_var] = ACTIONS(743), + [anon_sym_covariant] = ACTIONS(743), + [anon_sym_Function] = ACTIONS(743), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(743), + [anon_sym_new] = ACTIONS(743), + [anon_sym_const] = ACTIONS(743), + [anon_sym_final] = ACTIONS(743), + [anon_sym_external] = ACTIONS(743), + [anon_sym_this] = ACTIONS(743), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(1269), + [sym_decimal_integer_literal] = ACTIONS(1271), + [sym_hex_integer_literal] = ACTIONS(1271), + [sym_octal_integer_literal] = ACTIONS(1269), + [sym_binary_integer_literal] = ACTIONS(1269), + [sym_decimal_floating_point_literal] = ACTIONS(1269), + [sym_hex_floating_point_literal] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1269), + [anon_sym_r] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_throw] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_QMARK_QMARK] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [sym_equality_operator] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_GT_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_TILDE_SLASH] = ACTIONS(1269), + [sym_increment_operator] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_is] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_QMARK_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1269), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_abstract] = ACTIONS(1271), + [anon_sym_class] = ACTIONS(1271), + [anon_sym_super] = ACTIONS(1271), + [anon_sym_void] = ACTIONS(1271), + [anon_sym_var] = ACTIONS(1271), + [anon_sym_covariant] = ACTIONS(1271), + [anon_sym_Function] = ACTIONS(1271), + [anon_sym_get] = ACTIONS(1271), + [anon_sym_set] = ACTIONS(1271), + [anon_sym_new] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_final] = ACTIONS(1271), + [anon_sym_external] = ACTIONS(1271), + [anon_sym_this] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + }, + [266] = { + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(1273), + [sym_decimal_integer_literal] = ACTIONS(1275), + [sym_hex_integer_literal] = ACTIONS(1275), + [sym_octal_integer_literal] = ACTIONS(1273), + [sym_binary_integer_literal] = ACTIONS(1273), + [sym_decimal_floating_point_literal] = ACTIONS(1273), + [sym_hex_floating_point_literal] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1273), + [anon_sym_r] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_throw] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_QMARK_QMARK] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1275), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [sym_equality_operator] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_GT_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_TILDE_SLASH] = ACTIONS(1273), + [sym_increment_operator] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1275), + [anon_sym_is] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_QMARK_DOT] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_assert] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_yield] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_abstract] = ACTIONS(1275), + [anon_sym_class] = ACTIONS(1275), + [anon_sym_super] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1275), + [anon_sym_var] = ACTIONS(1275), + [anon_sym_covariant] = ACTIONS(1275), + [anon_sym_Function] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(1275), + [anon_sym_set] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_final] = ACTIONS(1275), + [anon_sym_external] = ACTIONS(1275), + [anon_sym_this] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + }, + [267] = { + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(1277), + [sym_decimal_integer_literal] = ACTIONS(1279), + [sym_hex_integer_literal] = ACTIONS(1279), + [sym_octal_integer_literal] = ACTIONS(1277), + [sym_binary_integer_literal] = ACTIONS(1277), + [sym_decimal_floating_point_literal] = ACTIONS(1277), + [sym_hex_floating_point_literal] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(1279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1277), + [anon_sym_r] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_throw] = ACTIONS(1279), + [anon_sym_EQ] = ACTIONS(1279), + [anon_sym_PLUS_EQ] = ACTIONS(1277), + [anon_sym_DASH_EQ] = ACTIONS(1277), + [anon_sym_STAR_EQ] = ACTIONS(1277), + [anon_sym_SLASH_EQ] = ACTIONS(1277), + [anon_sym_AMP_EQ] = ACTIONS(1277), + [anon_sym_PIPE_EQ] = ACTIONS(1277), + [anon_sym_CARET_EQ] = ACTIONS(1277), + [anon_sym_PERCENT_EQ] = ACTIONS(1277), + [anon_sym_LT_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_GT_EQ] = ACTIONS(1277), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1277), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_QMARK_QMARK] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [sym_equality_operator] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_LT_LT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_GT_GT_GT] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_PERCENT] = ACTIONS(1279), + [anon_sym_TILDE_SLASH] = ACTIONS(1277), + [sym_increment_operator] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1279), + [anon_sym_is] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_DOT] = ACTIONS(1279), + [anon_sym_QMARK_DOT] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1277), + [anon_sym_assert] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_AT] = ACTIONS(1277), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_abstract] = ACTIONS(1279), + [anon_sym_class] = ACTIONS(1279), + [anon_sym_super] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1279), + [anon_sym_var] = ACTIONS(1279), + [anon_sym_covariant] = ACTIONS(1279), + [anon_sym_Function] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_final] = ACTIONS(1279), + [anon_sym_external] = ACTIONS(1279), + [anon_sym_this] = ACTIONS(1279), + [sym_comment] = ACTIONS(3), + }, + [268] = { + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(1281), + [sym_decimal_integer_literal] = ACTIONS(1283), + [sym_hex_integer_literal] = ACTIONS(1283), + [sym_octal_integer_literal] = ACTIONS(1281), + [sym_binary_integer_literal] = ACTIONS(1281), + [sym_decimal_floating_point_literal] = ACTIONS(1281), + [sym_hex_floating_point_literal] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1281), + [anon_sym_r] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_throw] = ACTIONS(1283), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_QMARK_QMARK] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [sym_equality_operator] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_GT_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_PERCENT] = ACTIONS(1283), + [anon_sym_TILDE_SLASH] = ACTIONS(1281), + [sym_increment_operator] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1283), + [anon_sym_is] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_QMARK_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_assert] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_AT] = ACTIONS(1281), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_abstract] = ACTIONS(1283), + [anon_sym_class] = ACTIONS(1283), + [anon_sym_super] = ACTIONS(1283), + [anon_sym_void] = ACTIONS(1283), + [anon_sym_var] = ACTIONS(1283), + [anon_sym_covariant] = ACTIONS(1283), + [anon_sym_Function] = ACTIONS(1283), + [anon_sym_get] = ACTIONS(1283), + [anon_sym_set] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_final] = ACTIONS(1283), + [anon_sym_external] = ACTIONS(1283), + [anon_sym_this] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1285), + [sym_decimal_integer_literal] = ACTIONS(1287), + [sym_hex_integer_literal] = ACTIONS(1287), + [sym_octal_integer_literal] = ACTIONS(1285), + [sym_binary_integer_literal] = ACTIONS(1285), + [sym_decimal_floating_point_literal] = ACTIONS(1285), + [sym_hex_floating_point_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1285), + [anon_sym_r] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_QMARK_QMARK] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [sym_equality_operator] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_LT_LT] = ACTIONS(1287), + [anon_sym_GT_GT] = ACTIONS(1287), + [anon_sym_GT_GT_GT] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1287), + [anon_sym_TILDE_SLASH] = ACTIONS(1285), + [sym_increment_operator] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_TILDE] = ACTIONS(1287), + [anon_sym_await] = ACTIONS(1287), + [anon_sym_is] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_DOT] = ACTIONS(1287), + [anon_sym_QMARK_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_assert] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_yield] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_abstract] = ACTIONS(1287), + [anon_sym_class] = ACTIONS(1287), + [anon_sym_super] = ACTIONS(1287), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_var] = ACTIONS(1287), + [anon_sym_covariant] = ACTIONS(1287), + [anon_sym_Function] = ACTIONS(1287), + [anon_sym_get] = ACTIONS(1287), + [anon_sym_set] = ACTIONS(1287), + [anon_sym_new] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_final] = ACTIONS(1287), + [anon_sym_external] = ACTIONS(1287), + [anon_sym_this] = ACTIONS(1287), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(1289), + [sym_decimal_integer_literal] = ACTIONS(1291), + [sym_hex_integer_literal] = ACTIONS(1291), + [sym_octal_integer_literal] = ACTIONS(1289), + [sym_binary_integer_literal] = ACTIONS(1289), + [sym_decimal_floating_point_literal] = ACTIONS(1289), + [sym_hex_floating_point_literal] = ACTIONS(1291), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1289), + [anon_sym_r] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_null] = ACTIONS(1291), + [anon_sym_throw] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_QMARK_QMARK] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [sym_equality_operator] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_GT_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [anon_sym_TILDE_SLASH] = ACTIONS(1289), + [sym_increment_operator] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), + [anon_sym_await] = ACTIONS(1291), + [anon_sym_is] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_QMARK_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1289), + [anon_sym_assert] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_yield] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_try] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_AT] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_super] = ACTIONS(1291), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_covariant] = ACTIONS(1291), + [anon_sym_Function] = ACTIONS(1291), + [anon_sym_get] = ACTIONS(1291), + [anon_sym_set] = ACTIONS(1291), + [anon_sym_new] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_external] = ACTIONS(1291), + [anon_sym_this] = ACTIONS(1291), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1295), + [anon_sym_POUND] = ACTIONS(1293), + [sym_decimal_integer_literal] = ACTIONS(1295), + [sym_hex_integer_literal] = ACTIONS(1295), + [sym_octal_integer_literal] = ACTIONS(1293), + [sym_binary_integer_literal] = ACTIONS(1293), + [sym_decimal_floating_point_literal] = ACTIONS(1293), + [sym_hex_floating_point_literal] = ACTIONS(1295), + [anon_sym_true] = ACTIONS(1295), + [anon_sym_false] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1293), + [anon_sym_r] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1293), + [anon_sym_null] = ACTIONS(1295), + [anon_sym_throw] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_PLUS_EQ] = ACTIONS(1293), + [anon_sym_DASH_EQ] = ACTIONS(1293), + [anon_sym_STAR_EQ] = ACTIONS(1293), + [anon_sym_SLASH_EQ] = ACTIONS(1293), + [anon_sym_AMP_EQ] = ACTIONS(1293), + [anon_sym_PIPE_EQ] = ACTIONS(1293), + [anon_sym_CARET_EQ] = ACTIONS(1293), + [anon_sym_PERCENT_EQ] = ACTIONS(1293), + [anon_sym_LT_LT_EQ] = ACTIONS(1293), + [anon_sym_GT_GT_EQ] = ACTIONS(1293), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1293), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_QMARK_QMARK] = ACTIONS(1295), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_PIPE_PIPE] = ACTIONS(1293), + [anon_sym_AMP_AMP] = ACTIONS(1293), + [sym_equality_operator] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_LT_LT] = ACTIONS(1295), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_GT_GT_GT] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_TILDE_SLASH] = ACTIONS(1293), + [sym_increment_operator] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_await] = ACTIONS(1295), + [anon_sym_is] = ACTIONS(1295), + [anon_sym_as] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_QMARK_DOT] = ACTIONS(1293), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_assert] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_yield] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_try] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_AT] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_abstract] = ACTIONS(1295), + [anon_sym_class] = ACTIONS(1295), + [anon_sym_super] = ACTIONS(1295), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_var] = ACTIONS(1295), + [anon_sym_covariant] = ACTIONS(1295), + [anon_sym_Function] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_new] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_final] = ACTIONS(1295), + [anon_sym_external] = ACTIONS(1295), + [anon_sym_this] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(1297), + [sym_decimal_integer_literal] = ACTIONS(1299), + [sym_hex_integer_literal] = ACTIONS(1299), + [sym_octal_integer_literal] = ACTIONS(1297), + [sym_binary_integer_literal] = ACTIONS(1297), + [sym_decimal_floating_point_literal] = ACTIONS(1297), + [sym_hex_floating_point_literal] = ACTIONS(1299), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1297), + [anon_sym_r] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_null] = ACTIONS(1299), + [anon_sym_throw] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_AMP_EQ] = ACTIONS(1297), + [anon_sym_PIPE_EQ] = ACTIONS(1297), + [anon_sym_CARET_EQ] = ACTIONS(1297), + [anon_sym_PERCENT_EQ] = ACTIONS(1297), + [anon_sym_LT_LT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_QMARK_QMARK] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(1299), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [sym_equality_operator] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_GT_GT] = ACTIONS(1299), + [anon_sym_GT_GT_GT] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_PERCENT] = ACTIONS(1299), + [anon_sym_TILDE_SLASH] = ACTIONS(1297), + [sym_increment_operator] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_await] = ACTIONS(1299), + [anon_sym_is] = ACTIONS(1299), + [anon_sym_as] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_QMARK_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(1297), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_yield] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_try] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_AT] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_abstract] = ACTIONS(1299), + [anon_sym_class] = ACTIONS(1299), + [anon_sym_super] = ACTIONS(1299), + [anon_sym_void] = ACTIONS(1299), + [anon_sym_var] = ACTIONS(1299), + [anon_sym_covariant] = ACTIONS(1299), + [anon_sym_Function] = ACTIONS(1299), + [anon_sym_get] = ACTIONS(1299), + [anon_sym_set] = ACTIONS(1299), + [anon_sym_new] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_final] = ACTIONS(1299), + [anon_sym_external] = ACTIONS(1299), + [anon_sym_this] = ACTIONS(1299), + [sym_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1301), + [sym_decimal_integer_literal] = ACTIONS(1303), + [sym_hex_integer_literal] = ACTIONS(1303), + [sym_octal_integer_literal] = ACTIONS(1301), + [sym_binary_integer_literal] = ACTIONS(1301), + [sym_decimal_floating_point_literal] = ACTIONS(1301), + [sym_hex_floating_point_literal] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1301), + [anon_sym_r] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_throw] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_PLUS_EQ] = ACTIONS(1301), + [anon_sym_DASH_EQ] = ACTIONS(1301), + [anon_sym_STAR_EQ] = ACTIONS(1301), + [anon_sym_SLASH_EQ] = ACTIONS(1301), + [anon_sym_AMP_EQ] = ACTIONS(1301), + [anon_sym_PIPE_EQ] = ACTIONS(1301), + [anon_sym_CARET_EQ] = ACTIONS(1301), + [anon_sym_PERCENT_EQ] = ACTIONS(1301), + [anon_sym_LT_LT_EQ] = ACTIONS(1301), + [anon_sym_GT_GT_EQ] = ACTIONS(1301), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1301), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_QMARK_QMARK] = ACTIONS(1303), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [sym_equality_operator] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_LT_LT] = ACTIONS(1303), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_GT_GT_GT] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_PERCENT] = ACTIONS(1303), + [anon_sym_TILDE_SLASH] = ACTIONS(1301), + [sym_increment_operator] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_is] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_QMARK_DOT] = ACTIONS(1301), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_super] = ACTIONS(1303), + [anon_sym_void] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_covariant] = ACTIONS(1303), + [anon_sym_Function] = ACTIONS(1303), + [anon_sym_get] = ACTIONS(1303), + [anon_sym_set] = ACTIONS(1303), + [anon_sym_new] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_external] = ACTIONS(1303), + [anon_sym_this] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(1305), + [sym_decimal_integer_literal] = ACTIONS(1307), + [sym_hex_integer_literal] = ACTIONS(1307), + [sym_octal_integer_literal] = ACTIONS(1305), + [sym_binary_integer_literal] = ACTIONS(1305), + [sym_decimal_floating_point_literal] = ACTIONS(1305), + [sym_hex_floating_point_literal] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1305), + [anon_sym_r] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_throw] = ACTIONS(1307), + [anon_sym_EQ] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_QMARK_QMARK] = ACTIONS(1307), + [anon_sym_QMARK] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [sym_equality_operator] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_LT_LT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_GT_GT_GT] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_TILDE_SLASH] = ACTIONS(1305), + [sym_increment_operator] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_is] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_QMARK_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1305), + [anon_sym_assert] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_yield] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_AT] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1307), + [anon_sym_class] = ACTIONS(1307), + [anon_sym_super] = ACTIONS(1307), + [anon_sym_void] = ACTIONS(1307), + [anon_sym_var] = ACTIONS(1307), + [anon_sym_covariant] = ACTIONS(1307), + [anon_sym_Function] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(1307), + [anon_sym_set] = ACTIONS(1307), + [anon_sym_new] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_final] = ACTIONS(1307), + [anon_sym_external] = ACTIONS(1307), + [anon_sym_this] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1309), + [sym_decimal_integer_literal] = ACTIONS(1311), + [sym_hex_integer_literal] = ACTIONS(1311), + [sym_octal_integer_literal] = ACTIONS(1309), + [sym_binary_integer_literal] = ACTIONS(1309), + [sym_decimal_floating_point_literal] = ACTIONS(1309), + [sym_hex_floating_point_literal] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1309), + [anon_sym_r] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1311), + [anon_sym_throw] = ACTIONS(1311), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_AMP_EQ] = ACTIONS(1309), + [anon_sym_PIPE_EQ] = ACTIONS(1309), + [anon_sym_CARET_EQ] = ACTIONS(1309), + [anon_sym_PERCENT_EQ] = ACTIONS(1309), + [anon_sym_LT_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_QMARK_QMARK] = ACTIONS(1311), + [anon_sym_QMARK] = ACTIONS(1311), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [sym_equality_operator] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_LT_LT] = ACTIONS(1311), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_GT_GT_GT] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_TILDE_SLASH] = ACTIONS(1309), + [sym_increment_operator] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_await] = ACTIONS(1311), + [anon_sym_is] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_QMARK_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_yield] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_abstract] = ACTIONS(1311), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_super] = ACTIONS(1311), + [anon_sym_void] = ACTIONS(1311), + [anon_sym_var] = ACTIONS(1311), + [anon_sym_covariant] = ACTIONS(1311), + [anon_sym_Function] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(1311), + [anon_sym_set] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_final] = ACTIONS(1311), + [anon_sym_external] = ACTIONS(1311), + [anon_sym_this] = ACTIONS(1311), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(1313), + [sym_decimal_integer_literal] = ACTIONS(1315), + [sym_hex_integer_literal] = ACTIONS(1315), + [sym_octal_integer_literal] = ACTIONS(1313), + [sym_binary_integer_literal] = ACTIONS(1313), + [sym_decimal_floating_point_literal] = ACTIONS(1313), + [sym_hex_floating_point_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1313), + [anon_sym_r] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1315), + [anon_sym_throw] = ACTIONS(1315), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_PLUS_EQ] = ACTIONS(1313), + [anon_sym_DASH_EQ] = ACTIONS(1313), + [anon_sym_STAR_EQ] = ACTIONS(1313), + [anon_sym_SLASH_EQ] = ACTIONS(1313), + [anon_sym_AMP_EQ] = ACTIONS(1313), + [anon_sym_PIPE_EQ] = ACTIONS(1313), + [anon_sym_CARET_EQ] = ACTIONS(1313), + [anon_sym_PERCENT_EQ] = ACTIONS(1313), + [anon_sym_LT_LT_EQ] = ACTIONS(1313), + [anon_sym_GT_GT_EQ] = ACTIONS(1313), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1313), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1315), + [anon_sym_QMARK] = ACTIONS(1315), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [sym_equality_operator] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1315), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PERCENT] = ACTIONS(1315), + [anon_sym_TILDE_SLASH] = ACTIONS(1313), + [sym_increment_operator] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_await] = ACTIONS(1315), + [anon_sym_is] = ACTIONS(1315), + [anon_sym_as] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_QMARK_DOT] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_yield] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_abstract] = ACTIONS(1315), + [anon_sym_class] = ACTIONS(1315), + [anon_sym_super] = ACTIONS(1315), + [anon_sym_void] = ACTIONS(1315), + [anon_sym_var] = ACTIONS(1315), + [anon_sym_covariant] = ACTIONS(1315), + [anon_sym_Function] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(1315), + [anon_sym_set] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_final] = ACTIONS(1315), + [anon_sym_external] = ACTIONS(1315), + [anon_sym_this] = ACTIONS(1315), + [sym_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(1317), + [sym_decimal_integer_literal] = ACTIONS(1319), + [sym_hex_integer_literal] = ACTIONS(1319), + [sym_octal_integer_literal] = ACTIONS(1317), + [sym_binary_integer_literal] = ACTIONS(1317), + [sym_decimal_floating_point_literal] = ACTIONS(1317), + [sym_hex_floating_point_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1317), + [anon_sym_r] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1317), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_throw] = ACTIONS(1319), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [anon_sym_AMP_EQ] = ACTIONS(1317), + [anon_sym_PIPE_EQ] = ACTIONS(1317), + [anon_sym_CARET_EQ] = ACTIONS(1317), + [anon_sym_PERCENT_EQ] = ACTIONS(1317), + [anon_sym_LT_LT_EQ] = ACTIONS(1317), + [anon_sym_GT_GT_EQ] = ACTIONS(1317), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1317), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_QMARK_QMARK] = ACTIONS(1319), + [anon_sym_QMARK] = ACTIONS(1319), + [anon_sym_PIPE_PIPE] = ACTIONS(1317), + [anon_sym_AMP_AMP] = ACTIONS(1317), + [sym_equality_operator] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_LT_LT] = ACTIONS(1319), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_GT_GT_GT] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [anon_sym_TILDE_SLASH] = ACTIONS(1317), + [sym_increment_operator] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_await] = ACTIONS(1319), + [anon_sym_is] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_QMARK_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_assert] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_yield] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_abstract] = ACTIONS(1319), + [anon_sym_class] = ACTIONS(1319), + [anon_sym_super] = ACTIONS(1319), + [anon_sym_void] = ACTIONS(1319), + [anon_sym_var] = ACTIONS(1319), + [anon_sym_covariant] = ACTIONS(1319), + [anon_sym_Function] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_final] = ACTIONS(1319), + [anon_sym_external] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1321), + [sym_decimal_integer_literal] = ACTIONS(1323), + [sym_hex_integer_literal] = ACTIONS(1323), + [sym_octal_integer_literal] = ACTIONS(1321), + [sym_binary_integer_literal] = ACTIONS(1321), + [sym_decimal_floating_point_literal] = ACTIONS(1321), + [sym_hex_floating_point_literal] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1321), + [anon_sym_r] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1323), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_AMP_EQ] = ACTIONS(1321), + [anon_sym_PIPE_EQ] = ACTIONS(1321), + [anon_sym_CARET_EQ] = ACTIONS(1321), + [anon_sym_PERCENT_EQ] = ACTIONS(1321), + [anon_sym_LT_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_QMARK_QMARK] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [sym_equality_operator] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_LT_LT] = ACTIONS(1323), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_GT_GT_GT] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1323), + [anon_sym_TILDE_SLASH] = ACTIONS(1321), + [sym_increment_operator] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), + [anon_sym_is] = ACTIONS(1323), + [anon_sym_as] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_QMARK_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_abstract] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_super] = ACTIONS(1323), + [anon_sym_void] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(1323), + [anon_sym_covariant] = ACTIONS(1323), + [anon_sym_Function] = ACTIONS(1323), + [anon_sym_get] = ACTIONS(1323), + [anon_sym_set] = ACTIONS(1323), + [anon_sym_new] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_final] = ACTIONS(1323), + [anon_sym_external] = ACTIONS(1323), + [anon_sym_this] = ACTIONS(1323), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1325), + [sym_decimal_integer_literal] = ACTIONS(1327), + [sym_hex_integer_literal] = ACTIONS(1327), + [sym_octal_integer_literal] = ACTIONS(1325), + [sym_binary_integer_literal] = ACTIONS(1325), + [sym_decimal_floating_point_literal] = ACTIONS(1325), + [sym_hex_floating_point_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1325), + [anon_sym_r] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_null] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_PLUS_EQ] = ACTIONS(1325), + [anon_sym_DASH_EQ] = ACTIONS(1325), + [anon_sym_STAR_EQ] = ACTIONS(1325), + [anon_sym_SLASH_EQ] = ACTIONS(1325), + [anon_sym_AMP_EQ] = ACTIONS(1325), + [anon_sym_PIPE_EQ] = ACTIONS(1325), + [anon_sym_CARET_EQ] = ACTIONS(1325), + [anon_sym_PERCENT_EQ] = ACTIONS(1325), + [anon_sym_LT_LT_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1325), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_QMARK_QMARK] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [sym_equality_operator] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1327), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_GT_GT_GT] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_TILDE_SLASH] = ACTIONS(1325), + [sym_increment_operator] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_is] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1327), + [anon_sym_QMARK_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1325), + [anon_sym_assert] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_abstract] = ACTIONS(1327), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_super] = ACTIONS(1327), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_covariant] = ACTIONS(1327), + [anon_sym_Function] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(1327), + [anon_sym_set] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_final] = ACTIONS(1327), + [anon_sym_external] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1331), + [anon_sym_POUND] = ACTIONS(1329), + [sym_decimal_integer_literal] = ACTIONS(1331), + [sym_hex_integer_literal] = ACTIONS(1331), + [sym_octal_integer_literal] = ACTIONS(1329), + [sym_binary_integer_literal] = ACTIONS(1329), + [sym_decimal_floating_point_literal] = ACTIONS(1329), + [sym_hex_floating_point_literal] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1329), + [anon_sym_r] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1331), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1329), + [anon_sym_DASH_EQ] = ACTIONS(1329), + [anon_sym_STAR_EQ] = ACTIONS(1329), + [anon_sym_SLASH_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [anon_sym_CARET_EQ] = ACTIONS(1329), + [anon_sym_PERCENT_EQ] = ACTIONS(1329), + [anon_sym_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_QMARK_QMARK] = ACTIONS(1331), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [sym_equality_operator] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_LT_LT] = ACTIONS(1331), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_GT_GT_GT] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1331), + [anon_sym_TILDE_SLASH] = ACTIONS(1329), + [sym_increment_operator] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1331), + [anon_sym_is] = ACTIONS(1331), + [anon_sym_as] = ACTIONS(1331), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_QMARK_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_assert] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_yield] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_abstract] = ACTIONS(1331), + [anon_sym_class] = ACTIONS(1331), + [anon_sym_super] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1331), + [anon_sym_var] = ACTIONS(1331), + [anon_sym_covariant] = ACTIONS(1331), + [anon_sym_Function] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_final] = ACTIONS(1331), + [anon_sym_external] = ACTIONS(1331), + [anon_sym_this] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + }, + [281] = { + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(1333), + [sym_decimal_integer_literal] = ACTIONS(1335), + [sym_hex_integer_literal] = ACTIONS(1335), + [sym_octal_integer_literal] = ACTIONS(1333), + [sym_binary_integer_literal] = ACTIONS(1333), + [sym_decimal_floating_point_literal] = ACTIONS(1333), + [sym_hex_floating_point_literal] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1333), + [anon_sym_r] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1335), + [anon_sym_throw] = ACTIONS(1335), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_QMARK_QMARK] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [sym_equality_operator] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_GT_GT_GT] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_TILDE_SLASH] = ACTIONS(1333), + [sym_increment_operator] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1335), + [anon_sym_is] = ACTIONS(1335), + [anon_sym_as] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_QMARK_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_assert] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_abstract] = ACTIONS(1335), + [anon_sym_class] = ACTIONS(1335), + [anon_sym_super] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1335), + [anon_sym_var] = ACTIONS(1335), + [anon_sym_covariant] = ACTIONS(1335), + [anon_sym_Function] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(1335), + [anon_sym_set] = ACTIONS(1335), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_final] = ACTIONS(1335), + [anon_sym_external] = ACTIONS(1335), + [anon_sym_this] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(1337), + [sym_decimal_integer_literal] = ACTIONS(1339), + [sym_hex_integer_literal] = ACTIONS(1339), + [sym_octal_integer_literal] = ACTIONS(1337), + [sym_binary_integer_literal] = ACTIONS(1337), + [sym_decimal_floating_point_literal] = ACTIONS(1337), + [sym_hex_floating_point_literal] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(1339), + [anon_sym_false] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1337), + [anon_sym_r] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1339), + [anon_sym_throw] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_AMP_EQ] = ACTIONS(1337), + [anon_sym_PIPE_EQ] = ACTIONS(1337), + [anon_sym_CARET_EQ] = ACTIONS(1337), + [anon_sym_PERCENT_EQ] = ACTIONS(1337), + [anon_sym_LT_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_QMARK] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [sym_equality_operator] = ACTIONS(1337), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1339), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_TILDE_SLASH] = ACTIONS(1337), + [sym_increment_operator] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_is] = ACTIONS(1339), + [anon_sym_as] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_QMARK_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_assert] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_AT] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_abstract] = ACTIONS(1339), + [anon_sym_class] = ACTIONS(1339), + [anon_sym_super] = ACTIONS(1339), + [anon_sym_void] = ACTIONS(1339), + [anon_sym_var] = ACTIONS(1339), + [anon_sym_covariant] = ACTIONS(1339), + [anon_sym_Function] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(1339), + [anon_sym_set] = ACTIONS(1339), + [anon_sym_new] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_final] = ACTIONS(1339), + [anon_sym_external] = ACTIONS(1339), + [anon_sym_this] = ACTIONS(1339), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1341), + [sym_decimal_integer_literal] = ACTIONS(1343), + [sym_hex_integer_literal] = ACTIONS(1343), + [sym_octal_integer_literal] = ACTIONS(1341), + [sym_binary_integer_literal] = ACTIONS(1341), + [sym_decimal_floating_point_literal] = ACTIONS(1341), + [sym_hex_floating_point_literal] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1341), + [anon_sym_r] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_throw] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1343), + [anon_sym_PLUS_EQ] = ACTIONS(1341), + [anon_sym_DASH_EQ] = ACTIONS(1341), + [anon_sym_STAR_EQ] = ACTIONS(1341), + [anon_sym_SLASH_EQ] = ACTIONS(1341), + [anon_sym_AMP_EQ] = ACTIONS(1341), + [anon_sym_PIPE_EQ] = ACTIONS(1341), + [anon_sym_CARET_EQ] = ACTIONS(1341), + [anon_sym_PERCENT_EQ] = ACTIONS(1341), + [anon_sym_LT_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_QMARK] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [sym_equality_operator] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_TILDE_SLASH] = ACTIONS(1341), + [sym_increment_operator] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(1343), + [anon_sym_is] = ACTIONS(1343), + [anon_sym_as] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_QMARK_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_yield] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_AT] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_abstract] = ACTIONS(1343), + [anon_sym_class] = ACTIONS(1343), + [anon_sym_super] = ACTIONS(1343), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_covariant] = ACTIONS(1343), + [anon_sym_Function] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_new] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_final] = ACTIONS(1343), + [anon_sym_external] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1345), + [sym_decimal_integer_literal] = ACTIONS(1347), + [sym_hex_integer_literal] = ACTIONS(1347), + [sym_octal_integer_literal] = ACTIONS(1345), + [sym_binary_integer_literal] = ACTIONS(1345), + [sym_decimal_floating_point_literal] = ACTIONS(1345), + [sym_hex_floating_point_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1345), + [anon_sym_r] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1347), + [anon_sym_throw] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_PLUS_EQ] = ACTIONS(1345), + [anon_sym_DASH_EQ] = ACTIONS(1345), + [anon_sym_STAR_EQ] = ACTIONS(1345), + [anon_sym_SLASH_EQ] = ACTIONS(1345), + [anon_sym_AMP_EQ] = ACTIONS(1345), + [anon_sym_PIPE_EQ] = ACTIONS(1345), + [anon_sym_CARET_EQ] = ACTIONS(1345), + [anon_sym_PERCENT_EQ] = ACTIONS(1345), + [anon_sym_LT_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_GT_EQ] = ACTIONS(1345), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1345), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_QMARK_QMARK] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_PIPE_PIPE] = ACTIONS(1345), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [sym_equality_operator] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_LT_LT] = ACTIONS(1347), + [anon_sym_GT_GT] = ACTIONS(1347), + [anon_sym_GT_GT_GT] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_TILDE_SLASH] = ACTIONS(1345), + [sym_increment_operator] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_await] = ACTIONS(1347), + [anon_sym_is] = ACTIONS(1347), + [anon_sym_as] = ACTIONS(1347), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_QMARK_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_assert] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_yield] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_abstract] = ACTIONS(1347), + [anon_sym_class] = ACTIONS(1347), + [anon_sym_super] = ACTIONS(1347), + [anon_sym_void] = ACTIONS(1347), + [anon_sym_var] = ACTIONS(1347), + [anon_sym_covariant] = ACTIONS(1347), + [anon_sym_Function] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(1347), + [anon_sym_set] = ACTIONS(1347), + [anon_sym_new] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_final] = ACTIONS(1347), + [anon_sym_external] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1347), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1349), + [sym_decimal_integer_literal] = ACTIONS(1351), + [sym_hex_integer_literal] = ACTIONS(1351), + [sym_octal_integer_literal] = ACTIONS(1349), + [sym_binary_integer_literal] = ACTIONS(1349), + [sym_decimal_floating_point_literal] = ACTIONS(1349), + [sym_hex_floating_point_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1349), + [anon_sym_r] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_PLUS_EQ] = ACTIONS(1349), + [anon_sym_DASH_EQ] = ACTIONS(1349), + [anon_sym_STAR_EQ] = ACTIONS(1349), + [anon_sym_SLASH_EQ] = ACTIONS(1349), + [anon_sym_AMP_EQ] = ACTIONS(1349), + [anon_sym_PIPE_EQ] = ACTIONS(1349), + [anon_sym_CARET_EQ] = ACTIONS(1349), + [anon_sym_PERCENT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1349), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_QMARK_QMARK] = ACTIONS(1351), + [anon_sym_QMARK] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [sym_equality_operator] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_GT_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_TILDE_SLASH] = ACTIONS(1349), + [sym_increment_operator] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_is] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_QMARK_DOT] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_super] = ACTIONS(1351), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_covariant] = ACTIONS(1351), + [anon_sym_Function] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_final] = ACTIONS(1351), + [anon_sym_external] = ACTIONS(1351), + [anon_sym_this] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + }, + [286] = { + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1355), + [anon_sym_POUND] = ACTIONS(1353), + [sym_decimal_integer_literal] = ACTIONS(1355), + [sym_hex_integer_literal] = ACTIONS(1355), + [sym_octal_integer_literal] = ACTIONS(1353), + [sym_binary_integer_literal] = ACTIONS(1353), + [sym_decimal_floating_point_literal] = ACTIONS(1353), + [sym_hex_floating_point_literal] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1353), + [anon_sym_r] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_throw] = ACTIONS(1355), + [anon_sym_EQ] = ACTIONS(1355), + [anon_sym_PLUS_EQ] = ACTIONS(1353), + [anon_sym_DASH_EQ] = ACTIONS(1353), + [anon_sym_STAR_EQ] = ACTIONS(1353), + [anon_sym_SLASH_EQ] = ACTIONS(1353), + [anon_sym_AMP_EQ] = ACTIONS(1353), + [anon_sym_PIPE_EQ] = ACTIONS(1353), + [anon_sym_CARET_EQ] = ACTIONS(1353), + [anon_sym_PERCENT_EQ] = ACTIONS(1353), + [anon_sym_LT_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_GT_EQ] = ACTIONS(1353), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1353), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_QMARK_QMARK] = ACTIONS(1355), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [sym_equality_operator] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(1355), + [anon_sym_GT_GT] = ACTIONS(1355), + [anon_sym_GT_GT_GT] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1355), + [anon_sym_TILDE_SLASH] = ACTIONS(1353), + [sym_increment_operator] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_is] = ACTIONS(1355), + [anon_sym_as] = ACTIONS(1355), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_QMARK_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_class] = ACTIONS(1355), + [anon_sym_super] = ACTIONS(1355), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_covariant] = ACTIONS(1355), + [anon_sym_Function] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_new] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_final] = ACTIONS(1355), + [anon_sym_external] = ACTIONS(1355), + [anon_sym_this] = ACTIONS(1355), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1359), + [anon_sym_POUND] = ACTIONS(1357), + [sym_decimal_integer_literal] = ACTIONS(1359), + [sym_hex_integer_literal] = ACTIONS(1359), + [sym_octal_integer_literal] = ACTIONS(1357), + [sym_binary_integer_literal] = ACTIONS(1357), + [sym_decimal_floating_point_literal] = ACTIONS(1357), + [sym_hex_floating_point_literal] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1357), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1357), + [anon_sym_r] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1359), + [anon_sym_throw] = ACTIONS(1359), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_QMARK_QMARK] = ACTIONS(1359), + [anon_sym_QMARK] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [sym_equality_operator] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_GT_GT_GT] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1359), + [anon_sym_TILDE_SLASH] = ACTIONS(1357), + [sym_increment_operator] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_await] = ACTIONS(1359), + [anon_sym_is] = ACTIONS(1359), + [anon_sym_as] = ACTIONS(1359), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_QMARK_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_yield] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_try] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1359), + [anon_sym_abstract] = ACTIONS(1359), + [anon_sym_class] = ACTIONS(1359), + [anon_sym_super] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_var] = ACTIONS(1359), + [anon_sym_covariant] = ACTIONS(1359), + [anon_sym_Function] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1359), + [anon_sym_set] = ACTIONS(1359), + [anon_sym_new] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_final] = ACTIONS(1359), + [anon_sym_external] = ACTIONS(1359), + [anon_sym_this] = ACTIONS(1359), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(1361), + [sym_decimal_integer_literal] = ACTIONS(1363), + [sym_hex_integer_literal] = ACTIONS(1363), + [sym_octal_integer_literal] = ACTIONS(1361), + [sym_binary_integer_literal] = ACTIONS(1361), + [sym_decimal_floating_point_literal] = ACTIONS(1361), + [sym_hex_floating_point_literal] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1361), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1361), + [anon_sym_r] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_throw] = ACTIONS(1363), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_QMARK_QMARK] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [sym_equality_operator] = ACTIONS(1361), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_GT_GT_GT] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_TILDE_SLASH] = ACTIONS(1361), + [sym_increment_operator] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_is] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_QMARK_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [anon_sym_abstract] = ACTIONS(1363), + [anon_sym_class] = ACTIONS(1363), + [anon_sym_super] = ACTIONS(1363), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_covariant] = ACTIONS(1363), + [anon_sym_Function] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(1363), + [anon_sym_set] = ACTIONS(1363), + [anon_sym_new] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_final] = ACTIONS(1363), + [anon_sym_external] = ACTIONS(1363), + [anon_sym_this] = ACTIONS(1363), + [sym_comment] = ACTIONS(3), + }, + [289] = { + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1365), + [sym_decimal_integer_literal] = ACTIONS(1367), + [sym_hex_integer_literal] = ACTIONS(1367), + [sym_octal_integer_literal] = ACTIONS(1365), + [sym_binary_integer_literal] = ACTIONS(1365), + [sym_decimal_floating_point_literal] = ACTIONS(1365), + [sym_hex_floating_point_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1365), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1365), + [anon_sym_r] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_throw] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1365), + [anon_sym_DASH_EQ] = ACTIONS(1365), + [anon_sym_STAR_EQ] = ACTIONS(1365), + [anon_sym_SLASH_EQ] = ACTIONS(1365), + [anon_sym_AMP_EQ] = ACTIONS(1365), + [anon_sym_PIPE_EQ] = ACTIONS(1365), + [anon_sym_CARET_EQ] = ACTIONS(1365), + [anon_sym_PERCENT_EQ] = ACTIONS(1365), + [anon_sym_LT_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_GT_EQ] = ACTIONS(1365), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1365), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_QMARK_QMARK] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [sym_equality_operator] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_GT_GT] = ACTIONS(1367), + [anon_sym_GT_GT_GT] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_TILDE_SLASH] = ACTIONS(1365), + [sym_increment_operator] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_is] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_QMARK_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_yield] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_AT] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1367), + [anon_sym_abstract] = ACTIONS(1367), + [anon_sym_class] = ACTIONS(1367), + [anon_sym_super] = ACTIONS(1367), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_covariant] = ACTIONS(1367), + [anon_sym_Function] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_final] = ACTIONS(1367), + [anon_sym_external] = ACTIONS(1367), + [anon_sym_this] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + }, + [290] = { + [ts_builtin_sym_end] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(1369), + [sym_decimal_integer_literal] = ACTIONS(1371), + [sym_hex_integer_literal] = ACTIONS(1371), + [sym_octal_integer_literal] = ACTIONS(1369), + [sym_binary_integer_literal] = ACTIONS(1369), + [sym_decimal_floating_point_literal] = ACTIONS(1369), + [sym_hex_floating_point_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1369), + [anon_sym_r] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_throw] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_PLUS_EQ] = ACTIONS(1369), + [anon_sym_DASH_EQ] = ACTIONS(1369), + [anon_sym_STAR_EQ] = ACTIONS(1369), + [anon_sym_SLASH_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1369), + [anon_sym_PERCENT_EQ] = ACTIONS(1369), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [sym_equality_operator] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_TILDE_SLASH] = ACTIONS(1369), + [sym_increment_operator] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_is] = ACTIONS(1371), + [anon_sym_as] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_QMARK_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_yield] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_AT] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_abstract] = ACTIONS(1371), + [anon_sym_class] = ACTIONS(1371), + [anon_sym_super] = ACTIONS(1371), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_var] = ACTIONS(1371), + [anon_sym_covariant] = ACTIONS(1371), + [anon_sym_Function] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(1371), + [anon_sym_set] = ACTIONS(1371), + [anon_sym_new] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_final] = ACTIONS(1371), + [anon_sym_external] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + }, + [291] = { + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1373), + [sym_decimal_integer_literal] = ACTIONS(1375), + [sym_hex_integer_literal] = ACTIONS(1375), + [sym_octal_integer_literal] = ACTIONS(1373), + [sym_binary_integer_literal] = ACTIONS(1373), + [sym_decimal_floating_point_literal] = ACTIONS(1373), + [sym_hex_floating_point_literal] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_r] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_PLUS_EQ] = ACTIONS(1373), + [anon_sym_DASH_EQ] = ACTIONS(1373), + [anon_sym_STAR_EQ] = ACTIONS(1373), + [anon_sym_SLASH_EQ] = ACTIONS(1373), + [anon_sym_AMP_EQ] = ACTIONS(1373), + [anon_sym_PIPE_EQ] = ACTIONS(1373), + [anon_sym_CARET_EQ] = ACTIONS(1373), + [anon_sym_PERCENT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_GT_EQ] = ACTIONS(1373), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1373), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_QMARK_QMARK] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_PIPE_PIPE] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [sym_equality_operator] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_TILDE_SLASH] = ACTIONS(1373), + [sym_increment_operator] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_is] = ACTIONS(1375), + [anon_sym_as] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_QMARK_DOT] = ACTIONS(1373), + [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_super] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_covariant] = ACTIONS(1375), + [anon_sym_Function] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(1375), + [anon_sym_set] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_external] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1375), + [sym_comment] = ACTIONS(3), + }, + [292] = { + [ts_builtin_sym_end] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1379), + [anon_sym_POUND] = ACTIONS(1377), + [sym_decimal_integer_literal] = ACTIONS(1379), + [sym_hex_integer_literal] = ACTIONS(1379), + [sym_octal_integer_literal] = ACTIONS(1377), + [sym_binary_integer_literal] = ACTIONS(1377), + [sym_decimal_floating_point_literal] = ACTIONS(1377), + [sym_hex_floating_point_literal] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), + [anon_sym_r] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1379), + [anon_sym_throw] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1379), + [anon_sym_PLUS_EQ] = ACTIONS(1377), + [anon_sym_DASH_EQ] = ACTIONS(1377), + [anon_sym_STAR_EQ] = ACTIONS(1377), + [anon_sym_SLASH_EQ] = ACTIONS(1377), + [anon_sym_AMP_EQ] = ACTIONS(1377), + [anon_sym_PIPE_EQ] = ACTIONS(1377), + [anon_sym_CARET_EQ] = ACTIONS(1377), + [anon_sym_PERCENT_EQ] = ACTIONS(1377), + [anon_sym_LT_LT_EQ] = ACTIONS(1377), + [anon_sym_GT_GT_EQ] = ACTIONS(1377), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1377), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [sym_equality_operator] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_TILDE_SLASH] = ACTIONS(1377), + [sym_increment_operator] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_QMARK_DOT] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_AT] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_abstract] = ACTIONS(1379), + [anon_sym_class] = ACTIONS(1379), + [anon_sym_super] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_var] = ACTIONS(1379), + [anon_sym_covariant] = ACTIONS(1379), + [anon_sym_Function] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(1379), + [anon_sym_set] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_final] = ACTIONS(1379), + [anon_sym_external] = ACTIONS(1379), + [anon_sym_this] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + }, + [293] = { + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1381), + [sym_decimal_integer_literal] = ACTIONS(1383), + [sym_hex_integer_literal] = ACTIONS(1383), + [sym_octal_integer_literal] = ACTIONS(1381), + [sym_binary_integer_literal] = ACTIONS(1381), + [sym_decimal_floating_point_literal] = ACTIONS(1381), + [sym_hex_floating_point_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1381), + [anon_sym_r] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1383), + [anon_sym_throw] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_PLUS_EQ] = ACTIONS(1381), + [anon_sym_DASH_EQ] = ACTIONS(1381), + [anon_sym_STAR_EQ] = ACTIONS(1381), + [anon_sym_SLASH_EQ] = ACTIONS(1381), + [anon_sym_AMP_EQ] = ACTIONS(1381), + [anon_sym_PIPE_EQ] = ACTIONS(1381), + [anon_sym_CARET_EQ] = ACTIONS(1381), + [anon_sym_PERCENT_EQ] = ACTIONS(1381), + [anon_sym_LT_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_GT_EQ] = ACTIONS(1381), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1381), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_QMARK_QMARK] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [sym_equality_operator] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_GT_GT_GT] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_TILDE_SLASH] = ACTIONS(1381), + [sym_increment_operator] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_is] = ACTIONS(1383), + [anon_sym_as] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_QMARK_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_yield] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_AT] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_abstract] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(1383), + [anon_sym_super] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_var] = ACTIONS(1383), + [anon_sym_covariant] = ACTIONS(1383), + [anon_sym_Function] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(1383), + [anon_sym_set] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_final] = ACTIONS(1383), + [anon_sym_external] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1383), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1385), + [sym_decimal_integer_literal] = ACTIONS(1387), + [sym_hex_integer_literal] = ACTIONS(1387), + [sym_octal_integer_literal] = ACTIONS(1385), + [sym_binary_integer_literal] = ACTIONS(1385), + [sym_decimal_floating_point_literal] = ACTIONS(1385), + [sym_hex_floating_point_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_r] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_throw] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_PLUS_EQ] = ACTIONS(1385), + [anon_sym_DASH_EQ] = ACTIONS(1385), + [anon_sym_STAR_EQ] = ACTIONS(1385), + [anon_sym_SLASH_EQ] = ACTIONS(1385), + [anon_sym_AMP_EQ] = ACTIONS(1385), + [anon_sym_PIPE_EQ] = ACTIONS(1385), + [anon_sym_CARET_EQ] = ACTIONS(1385), + [anon_sym_PERCENT_EQ] = ACTIONS(1385), + [anon_sym_LT_LT_EQ] = ACTIONS(1385), + [anon_sym_GT_GT_EQ] = ACTIONS(1385), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1385), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_QMARK_QMARK] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1387), + [anon_sym_PIPE_PIPE] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [sym_equality_operator] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_LT_LT] = ACTIONS(1387), + [anon_sym_GT_GT] = ACTIONS(1387), + [anon_sym_GT_GT_GT] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_PERCENT] = ACTIONS(1387), + [anon_sym_TILDE_SLASH] = ACTIONS(1385), + [sym_increment_operator] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_is] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_QMARK_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_AT] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_class] = ACTIONS(1387), + [anon_sym_super] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_covariant] = ACTIONS(1387), + [anon_sym_Function] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(1387), + [anon_sym_set] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_final] = ACTIONS(1387), + [anon_sym_external] = ACTIONS(1387), + [anon_sym_this] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + }, + [295] = { + [ts_builtin_sym_end] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1389), + [sym_decimal_integer_literal] = ACTIONS(1391), + [sym_hex_integer_literal] = ACTIONS(1391), + [sym_octal_integer_literal] = ACTIONS(1389), + [sym_binary_integer_literal] = ACTIONS(1389), + [sym_decimal_floating_point_literal] = ACTIONS(1389), + [sym_hex_floating_point_literal] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1389), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1389), + [anon_sym_r] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_throw] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1391), + [anon_sym_PLUS_EQ] = ACTIONS(1389), + [anon_sym_DASH_EQ] = ACTIONS(1389), + [anon_sym_STAR_EQ] = ACTIONS(1389), + [anon_sym_SLASH_EQ] = ACTIONS(1389), + [anon_sym_AMP_EQ] = ACTIONS(1389), + [anon_sym_PIPE_EQ] = ACTIONS(1389), + [anon_sym_CARET_EQ] = ACTIONS(1389), + [anon_sym_PERCENT_EQ] = ACTIONS(1389), + [anon_sym_LT_LT_EQ] = ACTIONS(1389), + [anon_sym_GT_GT_EQ] = ACTIONS(1389), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1389), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_QMARK_QMARK] = ACTIONS(1391), + [anon_sym_QMARK] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [sym_equality_operator] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_LT_LT] = ACTIONS(1391), + [anon_sym_GT_GT] = ACTIONS(1391), + [anon_sym_GT_GT_GT] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_TILDE_SLASH] = ACTIONS(1389), + [sym_increment_operator] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_await] = ACTIONS(1391), + [anon_sym_is] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_QMARK_DOT] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_switch] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_yield] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1391), + [anon_sym_abstract] = ACTIONS(1391), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_super] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_var] = ACTIONS(1391), + [anon_sym_covariant] = ACTIONS(1391), + [anon_sym_Function] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_final] = ACTIONS(1391), + [anon_sym_external] = ACTIONS(1391), + [anon_sym_this] = ACTIONS(1391), + [sym_comment] = ACTIONS(3), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(1273), + [sym_decimal_integer_literal] = ACTIONS(1275), + [sym_hex_integer_literal] = ACTIONS(1275), + [sym_octal_integer_literal] = ACTIONS(1273), + [sym_binary_integer_literal] = ACTIONS(1273), + [sym_decimal_floating_point_literal] = ACTIONS(1273), + [sym_hex_floating_point_literal] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1273), + [anon_sym_r] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_throw] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_QMARK_QMARK] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1275), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [sym_equality_operator] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_GT_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_TILDE_SLASH] = ACTIONS(1273), + [sym_increment_operator] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1275), + [anon_sym_is] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_QMARK_DOT] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_assert] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_yield] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_abstract] = ACTIONS(1275), + [anon_sym_class] = ACTIONS(1275), + [anon_sym_super] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1275), + [anon_sym_var] = ACTIONS(1275), + [anon_sym_covariant] = ACTIONS(1275), + [anon_sym_Function] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(1275), + [anon_sym_set] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_final] = ACTIONS(1275), + [anon_sym_external] = ACTIONS(1275), + [anon_sym_this] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_POUND] = ACTIONS(1393), + [sym_decimal_integer_literal] = ACTIONS(1395), + [sym_hex_integer_literal] = ACTIONS(1395), + [sym_octal_integer_literal] = ACTIONS(1393), + [sym_binary_integer_literal] = ACTIONS(1393), + [sym_decimal_floating_point_literal] = ACTIONS(1393), + [sym_hex_floating_point_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1393), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1393), + [anon_sym_r] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1395), + [anon_sym_throw] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_PLUS_EQ] = ACTIONS(1393), + [anon_sym_DASH_EQ] = ACTIONS(1393), + [anon_sym_STAR_EQ] = ACTIONS(1393), + [anon_sym_SLASH_EQ] = ACTIONS(1393), + [anon_sym_AMP_EQ] = ACTIONS(1393), + [anon_sym_PIPE_EQ] = ACTIONS(1393), + [anon_sym_CARET_EQ] = ACTIONS(1393), + [anon_sym_PERCENT_EQ] = ACTIONS(1393), + [anon_sym_LT_LT_EQ] = ACTIONS(1393), + [anon_sym_GT_GT_EQ] = ACTIONS(1393), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1393), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_QMARK_QMARK] = ACTIONS(1395), + [anon_sym_QMARK] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [sym_equality_operator] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1395), + [anon_sym_GT_GT_GT] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_TILDE_SLASH] = ACTIONS(1393), + [sym_increment_operator] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_await] = ACTIONS(1395), + [anon_sym_is] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1395), + [anon_sym_DOT] = ACTIONS(1395), + [anon_sym_QMARK_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1395), + [anon_sym_class] = ACTIONS(1395), + [anon_sym_super] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_covariant] = ACTIONS(1395), + [anon_sym_Function] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_new] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_final] = ACTIONS(1395), + [anon_sym_external] = ACTIONS(1395), + [anon_sym_this] = ACTIONS(1395), + [sym_comment] = ACTIONS(3), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_AMP_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1255), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_QMARK_QMARK] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + }, + [299] = { + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1397), + [sym_decimal_integer_literal] = ACTIONS(1399), + [sym_hex_integer_literal] = ACTIONS(1399), + [sym_octal_integer_literal] = ACTIONS(1397), + [sym_binary_integer_literal] = ACTIONS(1397), + [sym_decimal_floating_point_literal] = ACTIONS(1397), + [sym_hex_floating_point_literal] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1397), + [anon_sym_r] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [anon_sym_DASH_EQ] = ACTIONS(1397), + [anon_sym_STAR_EQ] = ACTIONS(1397), + [anon_sym_SLASH_EQ] = ACTIONS(1397), + [anon_sym_AMP_EQ] = ACTIONS(1397), + [anon_sym_PIPE_EQ] = ACTIONS(1397), + [anon_sym_CARET_EQ] = ACTIONS(1397), + [anon_sym_PERCENT_EQ] = ACTIONS(1397), + [anon_sym_LT_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1397), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_QMARK_QMARK] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [sym_equality_operator] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1399), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_GT_GT_GT] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_TILDE_SLASH] = ACTIONS(1397), + [sym_increment_operator] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_is] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_QMARK_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_super] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_covariant] = ACTIONS(1399), + [anon_sym_Function] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_final] = ACTIONS(1399), + [anon_sym_external] = ACTIONS(1399), + [anon_sym_this] = ACTIONS(1399), + [sym_comment] = ACTIONS(3), + }, + [300] = { + [ts_builtin_sym_end] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1403), + [anon_sym_POUND] = ACTIONS(1401), + [sym_decimal_integer_literal] = ACTIONS(1403), + [sym_hex_integer_literal] = ACTIONS(1403), + [sym_octal_integer_literal] = ACTIONS(1401), + [sym_binary_integer_literal] = ACTIONS(1401), + [sym_decimal_floating_point_literal] = ACTIONS(1401), + [sym_hex_floating_point_literal] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1401), + [anon_sym_r] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_throw] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1401), + [anon_sym_DASH_EQ] = ACTIONS(1401), + [anon_sym_STAR_EQ] = ACTIONS(1401), + [anon_sym_SLASH_EQ] = ACTIONS(1401), + [anon_sym_AMP_EQ] = ACTIONS(1401), + [anon_sym_PIPE_EQ] = ACTIONS(1401), + [anon_sym_CARET_EQ] = ACTIONS(1401), + [anon_sym_PERCENT_EQ] = ACTIONS(1401), + [anon_sym_LT_LT_EQ] = ACTIONS(1401), + [anon_sym_GT_GT_EQ] = ACTIONS(1401), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1401), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_QMARK_QMARK] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_PIPE_PIPE] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [sym_equality_operator] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_GT_GT_GT] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_SLASH] = ACTIONS(1403), + [anon_sym_PERCENT] = ACTIONS(1403), + [anon_sym_TILDE_SLASH] = ACTIONS(1401), + [sym_increment_operator] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_is] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_DOT] = ACTIONS(1403), + [anon_sym_QMARK_DOT] = ACTIONS(1401), + [anon_sym_DOT_DOT] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_try] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1403), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(1403), + [anon_sym_super] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_covariant] = ACTIONS(1403), + [anon_sym_Function] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_new] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_final] = ACTIONS(1403), + [anon_sym_external] = ACTIONS(1403), + [anon_sym_this] = ACTIONS(1403), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(1405), + [sym_decimal_integer_literal] = ACTIONS(1407), + [sym_hex_integer_literal] = ACTIONS(1407), + [sym_octal_integer_literal] = ACTIONS(1405), + [sym_binary_integer_literal] = ACTIONS(1405), + [sym_decimal_floating_point_literal] = ACTIONS(1405), + [sym_hex_floating_point_literal] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1405), + [anon_sym_r] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_throw] = ACTIONS(1407), + [anon_sym_EQ] = ACTIONS(1407), + [anon_sym_PLUS_EQ] = ACTIONS(1405), + [anon_sym_DASH_EQ] = ACTIONS(1405), + [anon_sym_STAR_EQ] = ACTIONS(1405), + [anon_sym_SLASH_EQ] = ACTIONS(1405), + [anon_sym_AMP_EQ] = ACTIONS(1405), + [anon_sym_PIPE_EQ] = ACTIONS(1405), + [anon_sym_CARET_EQ] = ACTIONS(1405), + [anon_sym_PERCENT_EQ] = ACTIONS(1405), + [anon_sym_LT_LT_EQ] = ACTIONS(1405), + [anon_sym_GT_GT_EQ] = ACTIONS(1405), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1405), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_QMARK_QMARK] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [sym_equality_operator] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_GT_GT_GT] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_TILDE_SLASH] = ACTIONS(1252), + [sym_increment_operator] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_await] = ACTIONS(1407), + [anon_sym_is] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_QMARK_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_AT] = ACTIONS(1405), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_abstract] = ACTIONS(1407), + [anon_sym_class] = ACTIONS(1407), + [anon_sym_super] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_covariant] = ACTIONS(1407), + [anon_sym_Function] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1407), + [anon_sym_set] = ACTIONS(1407), + [anon_sym_new] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_final] = ACTIONS(1407), + [anon_sym_external] = ACTIONS(1407), + [anon_sym_this] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(1409), + [sym_decimal_integer_literal] = ACTIONS(1411), + [sym_hex_integer_literal] = ACTIONS(1411), + [sym_octal_integer_literal] = ACTIONS(1409), + [sym_binary_integer_literal] = ACTIONS(1409), + [sym_decimal_floating_point_literal] = ACTIONS(1409), + [sym_hex_floating_point_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1409), + [anon_sym_r] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_throw] = ACTIONS(1411), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_PLUS_EQ] = ACTIONS(1409), + [anon_sym_DASH_EQ] = ACTIONS(1409), + [anon_sym_STAR_EQ] = ACTIONS(1409), + [anon_sym_SLASH_EQ] = ACTIONS(1409), + [anon_sym_AMP_EQ] = ACTIONS(1409), + [anon_sym_PIPE_EQ] = ACTIONS(1409), + [anon_sym_CARET_EQ] = ACTIONS(1409), + [anon_sym_PERCENT_EQ] = ACTIONS(1409), + [anon_sym_LT_LT_EQ] = ACTIONS(1409), + [anon_sym_GT_GT_EQ] = ACTIONS(1409), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1409), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_QMARK_QMARK] = ACTIONS(1411), + [anon_sym_QMARK] = ACTIONS(1411), + [anon_sym_PIPE_PIPE] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [sym_equality_operator] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1409), + [anon_sym_LT_EQ] = ACTIONS(1409), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1411), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_GT_GT_GT] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(1411), + [anon_sym_PERCENT] = ACTIONS(1411), + [anon_sym_TILDE_SLASH] = ACTIONS(1409), + [sym_increment_operator] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_is] = ACTIONS(1411), + [anon_sym_as] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1411), + [anon_sym_QMARK_DOT] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_try] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_abstract] = ACTIONS(1411), + [anon_sym_class] = ACTIONS(1411), + [anon_sym_super] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_covariant] = ACTIONS(1411), + [anon_sym_Function] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1411), + [anon_sym_set] = ACTIONS(1411), + [anon_sym_new] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_final] = ACTIONS(1411), + [anon_sym_external] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1411), + [sym_comment] = ACTIONS(3), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_AMP_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1255), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_QMARK_QMARK] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1413), + [anon_sym_PLUS_EQ] = ACTIONS(1415), + [anon_sym_DASH_EQ] = ACTIONS(1415), + [anon_sym_STAR_EQ] = ACTIONS(1415), + [anon_sym_SLASH_EQ] = ACTIONS(1415), + [anon_sym_AMP_EQ] = ACTIONS(1415), + [anon_sym_PIPE_EQ] = ACTIONS(1415), + [anon_sym_CARET_EQ] = ACTIONS(1415), + [anon_sym_PERCENT_EQ] = ACTIONS(1415), + [anon_sym_LT_LT_EQ] = ACTIONS(1415), + [anon_sym_GT_GT_EQ] = ACTIONS(1415), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1415), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_QMARK_QMARK] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + }, + [305] = { + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1417), + [sym_decimal_integer_literal] = ACTIONS(1419), + [sym_hex_integer_literal] = ACTIONS(1419), + [sym_octal_integer_literal] = ACTIONS(1417), + [sym_binary_integer_literal] = ACTIONS(1417), + [sym_decimal_floating_point_literal] = ACTIONS(1417), + [sym_hex_floating_point_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1417), + [anon_sym_r] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_throw] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1417), + [anon_sym_DASH_EQ] = ACTIONS(1417), + [anon_sym_STAR_EQ] = ACTIONS(1417), + [anon_sym_SLASH_EQ] = ACTIONS(1417), + [anon_sym_AMP_EQ] = ACTIONS(1417), + [anon_sym_PIPE_EQ] = ACTIONS(1417), + [anon_sym_CARET_EQ] = ACTIONS(1417), + [anon_sym_PERCENT_EQ] = ACTIONS(1417), + [anon_sym_LT_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_QMARK_QMARK] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [sym_equality_operator] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_GT_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_TILDE_SLASH] = ACTIONS(1417), + [sym_increment_operator] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_await] = ACTIONS(1419), + [anon_sym_is] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_QMARK_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_yield] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_abstract] = ACTIONS(1419), + [anon_sym_class] = ACTIONS(1419), + [anon_sym_super] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_covariant] = ACTIONS(1419), + [anon_sym_Function] = ACTIONS(1419), + [anon_sym_get] = ACTIONS(1419), + [anon_sym_set] = ACTIONS(1419), + [anon_sym_new] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_final] = ACTIONS(1419), + [anon_sym_external] = ACTIONS(1419), + [anon_sym_this] = ACTIONS(1419), + [sym_comment] = ACTIONS(3), + }, + [306] = { + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1421), + [sym_decimal_integer_literal] = ACTIONS(1423), + [sym_hex_integer_literal] = ACTIONS(1423), + [sym_octal_integer_literal] = ACTIONS(1421), + [sym_binary_integer_literal] = ACTIONS(1421), + [sym_decimal_floating_point_literal] = ACTIONS(1421), + [sym_hex_floating_point_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1421), + [anon_sym_r] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_QMARK_QMARK] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [sym_equality_operator] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_LT_LT] = ACTIONS(1423), + [anon_sym_GT_GT] = ACTIONS(1423), + [anon_sym_GT_GT_GT] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1423), + [anon_sym_TILDE_SLASH] = ACTIONS(1421), + [sym_increment_operator] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_await] = ACTIONS(1423), + [anon_sym_is] = ACTIONS(1423), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_QMARK_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_AT] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1423), + [anon_sym_abstract] = ACTIONS(1423), + [anon_sym_class] = ACTIONS(1423), + [anon_sym_super] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_covariant] = ACTIONS(1423), + [anon_sym_Function] = ACTIONS(1423), + [anon_sym_get] = ACTIONS(1423), + [anon_sym_set] = ACTIONS(1423), + [anon_sym_new] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_final] = ACTIONS(1423), + [anon_sym_external] = ACTIONS(1423), + [anon_sym_this] = ACTIONS(1423), + [sym_comment] = ACTIONS(3), + }, + [307] = { + [ts_builtin_sym_end] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1425), + [sym_decimal_integer_literal] = ACTIONS(1427), + [sym_hex_integer_literal] = ACTIONS(1427), + [sym_octal_integer_literal] = ACTIONS(1425), + [sym_binary_integer_literal] = ACTIONS(1425), + [sym_decimal_floating_point_literal] = ACTIONS(1425), + [sym_hex_floating_point_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1425), + [anon_sym_r] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1427), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK_QMARK] = ACTIONS(1427), + [anon_sym_QMARK] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [sym_equality_operator] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1427), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_TILDE_SLASH] = ACTIONS(1425), + [sym_increment_operator] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_await] = ACTIONS(1427), + [anon_sym_is] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1427), + [anon_sym_do] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_AT] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1427), + [anon_sym_abstract] = ACTIONS(1427), + [anon_sym_class] = ACTIONS(1427), + [anon_sym_super] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1427), + [anon_sym_var] = ACTIONS(1427), + [anon_sym_covariant] = ACTIONS(1427), + [anon_sym_Function] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_new] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_final] = ACTIONS(1427), + [anon_sym_external] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1427), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [ts_builtin_sym_end] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1429), + [sym_decimal_integer_literal] = ACTIONS(1431), + [sym_hex_integer_literal] = ACTIONS(1431), + [sym_octal_integer_literal] = ACTIONS(1429), + [sym_binary_integer_literal] = ACTIONS(1429), + [sym_decimal_floating_point_literal] = ACTIONS(1429), + [sym_hex_floating_point_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1429), + [anon_sym_r] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_throw] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1429), + [anon_sym_DASH_EQ] = ACTIONS(1429), + [anon_sym_STAR_EQ] = ACTIONS(1429), + [anon_sym_SLASH_EQ] = ACTIONS(1429), + [anon_sym_AMP_EQ] = ACTIONS(1429), + [anon_sym_PIPE_EQ] = ACTIONS(1429), + [anon_sym_CARET_EQ] = ACTIONS(1429), + [anon_sym_PERCENT_EQ] = ACTIONS(1429), + [anon_sym_LT_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_GT_EQ] = ACTIONS(1429), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [sym_equality_operator] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1431), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_GT_GT_GT] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_TILDE_SLASH] = ACTIONS(1429), + [sym_increment_operator] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_is] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_switch] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_yield] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_abstract] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1431), + [anon_sym_super] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1431), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_covariant] = ACTIONS(1431), + [anon_sym_Function] = ACTIONS(1431), + [anon_sym_get] = ACTIONS(1431), + [anon_sym_set] = ACTIONS(1431), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_final] = ACTIONS(1431), + [anon_sym_external] = ACTIONS(1431), + [anon_sym_this] = ACTIONS(1431), + [sym_comment] = ACTIONS(3), + }, + [309] = { + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1433), + [sym_decimal_integer_literal] = ACTIONS(1435), + [sym_hex_integer_literal] = ACTIONS(1435), + [sym_octal_integer_literal] = ACTIONS(1433), + [sym_binary_integer_literal] = ACTIONS(1433), + [sym_decimal_floating_point_literal] = ACTIONS(1433), + [sym_hex_floating_point_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1433), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1433), + [anon_sym_r] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_throw] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_QMARK_QMARK] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [sym_equality_operator] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_GT_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_TILDE_SLASH] = ACTIONS(1433), + [sym_increment_operator] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_is] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_QMARK_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_AT] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_abstract] = ACTIONS(1435), + [anon_sym_class] = ACTIONS(1435), + [anon_sym_super] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1435), + [anon_sym_var] = ACTIONS(1435), + [anon_sym_covariant] = ACTIONS(1435), + [anon_sym_Function] = ACTIONS(1435), + [anon_sym_get] = ACTIONS(1435), + [anon_sym_set] = ACTIONS(1435), + [anon_sym_new] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_final] = ACTIONS(1435), + [anon_sym_external] = ACTIONS(1435), + [anon_sym_this] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + }, + [310] = { + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1437), + [sym_decimal_integer_literal] = ACTIONS(1439), + [sym_hex_integer_literal] = ACTIONS(1439), + [sym_octal_integer_literal] = ACTIONS(1437), + [sym_binary_integer_literal] = ACTIONS(1437), + [sym_decimal_floating_point_literal] = ACTIONS(1437), + [sym_hex_floating_point_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1437), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1437), + [anon_sym_r] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1439), + [anon_sym_throw] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_AMP_EQ] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1437), + [anon_sym_CARET_EQ] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1437), + [anon_sym_LT_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_QMARK_QMARK] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1439), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [sym_equality_operator] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_CARET] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1439), + [anon_sym_GT_GT_GT] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1439), + [anon_sym_PERCENT] = ACTIONS(1439), + [anon_sym_TILDE_SLASH] = ACTIONS(1437), + [sym_increment_operator] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_await] = ACTIONS(1439), + [anon_sym_is] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_QMARK_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1439), + [anon_sym_switch] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_AT] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_abstract] = ACTIONS(1439), + [anon_sym_class] = ACTIONS(1439), + [anon_sym_super] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1439), + [anon_sym_var] = ACTIONS(1439), + [anon_sym_covariant] = ACTIONS(1439), + [anon_sym_Function] = ACTIONS(1439), + [anon_sym_get] = ACTIONS(1439), + [anon_sym_set] = ACTIONS(1439), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_final] = ACTIONS(1439), + [anon_sym_external] = ACTIONS(1439), + [anon_sym_this] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_POUND] = ACTIONS(1441), + [sym_decimal_integer_literal] = ACTIONS(1443), + [sym_hex_integer_literal] = ACTIONS(1443), + [sym_octal_integer_literal] = ACTIONS(1441), + [sym_binary_integer_literal] = ACTIONS(1441), + [sym_decimal_floating_point_literal] = ACTIONS(1441), + [sym_hex_floating_point_literal] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1441), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1441), + [anon_sym_r] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1443), + [anon_sym_throw] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_QMARK_QMARK] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1443), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [sym_equality_operator] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_GT_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_TILDE_SLASH] = ACTIONS(1441), + [sym_increment_operator] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_await] = ACTIONS(1443), + [anon_sym_is] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_QMARK_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1443), + [anon_sym_switch] = ACTIONS(1443), + [anon_sym_do] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_abstract] = ACTIONS(1443), + [anon_sym_class] = ACTIONS(1443), + [anon_sym_super] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1443), + [anon_sym_var] = ACTIONS(1443), + [anon_sym_covariant] = ACTIONS(1443), + [anon_sym_Function] = ACTIONS(1443), + [anon_sym_get] = ACTIONS(1443), + [anon_sym_set] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_final] = ACTIONS(1443), + [anon_sym_external] = ACTIONS(1443), + [anon_sym_this] = ACTIONS(1443), + [sym_comment] = ACTIONS(3), + }, + [312] = { + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(1445), + [sym_decimal_integer_literal] = ACTIONS(1447), + [sym_hex_integer_literal] = ACTIONS(1447), + [sym_octal_integer_literal] = ACTIONS(1445), + [sym_binary_integer_literal] = ACTIONS(1445), + [sym_decimal_floating_point_literal] = ACTIONS(1445), + [sym_hex_floating_point_literal] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1445), + [anon_sym_r] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1447), + [anon_sym_throw] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_QMARK] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [sym_equality_operator] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_TILDE_SLASH] = ACTIONS(1445), + [sym_increment_operator] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_await] = ACTIONS(1447), + [anon_sym_is] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1447), + [anon_sym_do] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_abstract] = ACTIONS(1447), + [anon_sym_class] = ACTIONS(1447), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1447), + [anon_sym_var] = ACTIONS(1447), + [anon_sym_covariant] = ACTIONS(1447), + [anon_sym_Function] = ACTIONS(1447), + [anon_sym_get] = ACTIONS(1447), + [anon_sym_set] = ACTIONS(1447), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_final] = ACTIONS(1447), + [anon_sym_external] = ACTIONS(1447), + [anon_sym_this] = ACTIONS(1447), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_POUND] = ACTIONS(1449), + [sym_decimal_integer_literal] = ACTIONS(1451), + [sym_hex_integer_literal] = ACTIONS(1451), + [sym_octal_integer_literal] = ACTIONS(1449), + [sym_binary_integer_literal] = ACTIONS(1449), + [sym_decimal_floating_point_literal] = ACTIONS(1449), + [sym_hex_floating_point_literal] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1449), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1449), + [anon_sym_r] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1451), + [anon_sym_throw] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_QMARK_QMARK] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [sym_equality_operator] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_GT_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_TILDE_SLASH] = ACTIONS(1449), + [sym_increment_operator] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1451), + [anon_sym_is] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_QMARK_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_abstract] = ACTIONS(1451), + [anon_sym_class] = ACTIONS(1451), + [anon_sym_super] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1451), + [anon_sym_var] = ACTIONS(1451), + [anon_sym_covariant] = ACTIONS(1451), + [anon_sym_Function] = ACTIONS(1451), + [anon_sym_get] = ACTIONS(1451), + [anon_sym_set] = ACTIONS(1451), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_final] = ACTIONS(1451), + [anon_sym_external] = ACTIONS(1451), + [anon_sym_this] = ACTIONS(1451), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1453), + [sym_decimal_integer_literal] = ACTIONS(1455), + [sym_hex_integer_literal] = ACTIONS(1455), + [sym_octal_integer_literal] = ACTIONS(1453), + [sym_binary_integer_literal] = ACTIONS(1453), + [sym_decimal_floating_point_literal] = ACTIONS(1453), + [sym_hex_floating_point_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1453), + [anon_sym_r] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_throw] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_STAR_EQ] = ACTIONS(1453), + [anon_sym_SLASH_EQ] = ACTIONS(1453), + [anon_sym_AMP_EQ] = ACTIONS(1453), + [anon_sym_PIPE_EQ] = ACTIONS(1453), + [anon_sym_CARET_EQ] = ACTIONS(1453), + [anon_sym_PERCENT_EQ] = ACTIONS(1453), + [anon_sym_LT_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_GT_EQ] = ACTIONS(1453), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1453), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_QMARK_QMARK] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [sym_equality_operator] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_GT_GT_GT] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_TILDE_SLASH] = ACTIONS(1453), + [sym_increment_operator] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1455), + [anon_sym_is] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_abstract] = ACTIONS(1455), + [anon_sym_class] = ACTIONS(1455), + [anon_sym_super] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1455), + [anon_sym_var] = ACTIONS(1455), + [anon_sym_covariant] = ACTIONS(1455), + [anon_sym_Function] = ACTIONS(1455), + [anon_sym_get] = ACTIONS(1455), + [anon_sym_set] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_final] = ACTIONS(1455), + [anon_sym_external] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + }, + [315] = { + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1457), + [sym_decimal_integer_literal] = ACTIONS(1459), + [sym_hex_integer_literal] = ACTIONS(1459), + [sym_octal_integer_literal] = ACTIONS(1457), + [sym_binary_integer_literal] = ACTIONS(1457), + [sym_decimal_floating_point_literal] = ACTIONS(1457), + [sym_hex_floating_point_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1457), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1457), + [anon_sym_r] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1459), + [anon_sym_throw] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_QMARK_QMARK] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [sym_equality_operator] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_GT_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_TILDE_SLASH] = ACTIONS(1457), + [sym_increment_operator] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1459), + [anon_sym_is] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_QMARK_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1459), + [anon_sym_switch] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_abstract] = ACTIONS(1459), + [anon_sym_class] = ACTIONS(1459), + [anon_sym_super] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1459), + [anon_sym_var] = ACTIONS(1459), + [anon_sym_covariant] = ACTIONS(1459), + [anon_sym_Function] = ACTIONS(1459), + [anon_sym_get] = ACTIONS(1459), + [anon_sym_set] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_final] = ACTIONS(1459), + [anon_sym_external] = ACTIONS(1459), + [anon_sym_this] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + }, + [316] = { + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1461), + [sym_decimal_integer_literal] = ACTIONS(1463), + [sym_hex_integer_literal] = ACTIONS(1463), + [sym_octal_integer_literal] = ACTIONS(1461), + [sym_binary_integer_literal] = ACTIONS(1461), + [sym_decimal_floating_point_literal] = ACTIONS(1461), + [sym_hex_floating_point_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1461), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1461), + [anon_sym_r] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_throw] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1463), + [anon_sym_PLUS_EQ] = ACTIONS(1461), + [anon_sym_DASH_EQ] = ACTIONS(1461), + [anon_sym_STAR_EQ] = ACTIONS(1461), + [anon_sym_SLASH_EQ] = ACTIONS(1461), + [anon_sym_AMP_EQ] = ACTIONS(1461), + [anon_sym_PIPE_EQ] = ACTIONS(1461), + [anon_sym_CARET_EQ] = ACTIONS(1461), + [anon_sym_PERCENT_EQ] = ACTIONS(1461), + [anon_sym_LT_LT_EQ] = ACTIONS(1461), + [anon_sym_GT_GT_EQ] = ACTIONS(1461), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1461), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_QMARK_QMARK] = ACTIONS(1463), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [sym_equality_operator] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1463), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_GT_GT_GT] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_TILDE_SLASH] = ACTIONS(1461), + [sym_increment_operator] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_await] = ACTIONS(1463), + [anon_sym_is] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_QMARK_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_abstract] = ACTIONS(1463), + [anon_sym_class] = ACTIONS(1463), + [anon_sym_super] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1463), + [anon_sym_var] = ACTIONS(1463), + [anon_sym_covariant] = ACTIONS(1463), + [anon_sym_Function] = ACTIONS(1463), + [anon_sym_get] = ACTIONS(1463), + [anon_sym_set] = ACTIONS(1463), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_final] = ACTIONS(1463), + [anon_sym_external] = ACTIONS(1463), + [anon_sym_this] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + }, + [317] = { + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1465), + [sym_decimal_integer_literal] = ACTIONS(1467), + [sym_hex_integer_literal] = ACTIONS(1467), + [sym_octal_integer_literal] = ACTIONS(1465), + [sym_binary_integer_literal] = ACTIONS(1465), + [sym_decimal_floating_point_literal] = ACTIONS(1465), + [sym_hex_floating_point_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1465), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1465), + [anon_sym_r] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_throw] = ACTIONS(1467), + [anon_sym_EQ] = ACTIONS(1467), + [anon_sym_PLUS_EQ] = ACTIONS(1465), + [anon_sym_DASH_EQ] = ACTIONS(1465), + [anon_sym_STAR_EQ] = ACTIONS(1465), + [anon_sym_SLASH_EQ] = ACTIONS(1465), + [anon_sym_AMP_EQ] = ACTIONS(1465), + [anon_sym_PIPE_EQ] = ACTIONS(1465), + [anon_sym_CARET_EQ] = ACTIONS(1465), + [anon_sym_PERCENT_EQ] = ACTIONS(1465), + [anon_sym_LT_LT_EQ] = ACTIONS(1465), + [anon_sym_GT_GT_EQ] = ACTIONS(1465), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_QMARK_QMARK] = ACTIONS(1467), + [anon_sym_QMARK] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [sym_equality_operator] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_GT_GT_GT] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_TILDE_SLASH] = ACTIONS(1465), + [sym_increment_operator] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_is] = ACTIONS(1467), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_QMARK_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1467), + [anon_sym_switch] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_abstract] = ACTIONS(1467), + [anon_sym_class] = ACTIONS(1467), + [anon_sym_super] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1467), + [anon_sym_var] = ACTIONS(1467), + [anon_sym_covariant] = ACTIONS(1467), + [anon_sym_Function] = ACTIONS(1467), + [anon_sym_get] = ACTIONS(1467), + [anon_sym_set] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_final] = ACTIONS(1467), + [anon_sym_external] = ACTIONS(1467), + [anon_sym_this] = ACTIONS(1467), + [sym_comment] = ACTIONS(3), + }, + [318] = { + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1469), + [sym_decimal_integer_literal] = ACTIONS(1471), + [sym_hex_integer_literal] = ACTIONS(1471), + [sym_octal_integer_literal] = ACTIONS(1469), + [sym_binary_integer_literal] = ACTIONS(1469), + [sym_decimal_floating_point_literal] = ACTIONS(1469), + [sym_hex_floating_point_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1469), + [anon_sym_r] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_PLUS_EQ] = ACTIONS(1469), + [anon_sym_DASH_EQ] = ACTIONS(1469), + [anon_sym_STAR_EQ] = ACTIONS(1469), + [anon_sym_SLASH_EQ] = ACTIONS(1469), + [anon_sym_AMP_EQ] = ACTIONS(1469), + [anon_sym_PIPE_EQ] = ACTIONS(1469), + [anon_sym_CARET_EQ] = ACTIONS(1469), + [anon_sym_PERCENT_EQ] = ACTIONS(1469), + [anon_sym_LT_LT_EQ] = ACTIONS(1469), + [anon_sym_GT_GT_EQ] = ACTIONS(1469), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1469), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_QMARK_QMARK] = ACTIONS(1471), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [sym_equality_operator] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1471), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_GT_GT_GT] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_TILDE_SLASH] = ACTIONS(1469), + [sym_increment_operator] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_is] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_QMARK_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_super] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_covariant] = ACTIONS(1471), + [anon_sym_Function] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_final] = ACTIONS(1471), + [anon_sym_external] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + }, + [319] = { + [ts_builtin_sym_end] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1473), + [sym_decimal_integer_literal] = ACTIONS(1475), + [sym_hex_integer_literal] = ACTIONS(1475), + [sym_octal_integer_literal] = ACTIONS(1473), + [sym_binary_integer_literal] = ACTIONS(1473), + [sym_decimal_floating_point_literal] = ACTIONS(1473), + [sym_hex_floating_point_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1473), + [anon_sym_r] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1475), + [anon_sym_throw] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1473), + [anon_sym_DASH_EQ] = ACTIONS(1473), + [anon_sym_STAR_EQ] = ACTIONS(1473), + [anon_sym_SLASH_EQ] = ACTIONS(1473), + [anon_sym_AMP_EQ] = ACTIONS(1473), + [anon_sym_PIPE_EQ] = ACTIONS(1473), + [anon_sym_CARET_EQ] = ACTIONS(1473), + [anon_sym_PERCENT_EQ] = ACTIONS(1473), + [anon_sym_LT_LT_EQ] = ACTIONS(1473), + [anon_sym_GT_GT_EQ] = ACTIONS(1473), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1473), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_QMARK_QMARK] = ACTIONS(1475), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [sym_equality_operator] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1475), + [anon_sym_GT_GT] = ACTIONS(1475), + [anon_sym_GT_GT_GT] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_TILDE_SLASH] = ACTIONS(1473), + [sym_increment_operator] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_is] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_QMARK_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1475), + [anon_sym_switch] = ACTIONS(1475), + [anon_sym_do] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_yield] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(1475), + [anon_sym_class] = ACTIONS(1475), + [anon_sym_super] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1475), + [anon_sym_var] = ACTIONS(1475), + [anon_sym_covariant] = ACTIONS(1475), + [anon_sym_Function] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_final] = ACTIONS(1475), + [anon_sym_external] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1475), [sym_comment] = ACTIONS(3), }, [320] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3355), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1477), + [sym_decimal_integer_literal] = ACTIONS(1479), + [sym_hex_integer_literal] = ACTIONS(1479), + [sym_octal_integer_literal] = ACTIONS(1477), + [sym_binary_integer_literal] = ACTIONS(1477), + [sym_decimal_floating_point_literal] = ACTIONS(1477), + [sym_hex_floating_point_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1477), + [anon_sym_r] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1477), + [anon_sym_DASH_EQ] = ACTIONS(1477), + [anon_sym_STAR_EQ] = ACTIONS(1477), + [anon_sym_SLASH_EQ] = ACTIONS(1477), + [anon_sym_AMP_EQ] = ACTIONS(1477), + [anon_sym_PIPE_EQ] = ACTIONS(1477), + [anon_sym_CARET_EQ] = ACTIONS(1477), + [anon_sym_PERCENT_EQ] = ACTIONS(1477), + [anon_sym_LT_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_GT_EQ] = ACTIONS(1477), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1477), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_QMARK_QMARK] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [sym_equality_operator] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1479), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_GT_GT_GT] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_TILDE_SLASH] = ACTIONS(1477), + [sym_increment_operator] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1479), + [anon_sym_is] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_QMARK_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_abstract] = ACTIONS(1479), + [anon_sym_class] = ACTIONS(1479), + [anon_sym_super] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1479), + [anon_sym_var] = ACTIONS(1479), + [anon_sym_covariant] = ACTIONS(1479), + [anon_sym_Function] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_final] = ACTIONS(1479), + [anon_sym_external] = ACTIONS(1479), + [anon_sym_this] = ACTIONS(1479), [sym_comment] = ACTIONS(3), }, [321] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3379), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [ts_builtin_sym_end] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(1481), + [sym_decimal_integer_literal] = ACTIONS(1483), + [sym_hex_integer_literal] = ACTIONS(1483), + [sym_octal_integer_literal] = ACTIONS(1481), + [sym_binary_integer_literal] = ACTIONS(1481), + [sym_decimal_floating_point_literal] = ACTIONS(1481), + [sym_hex_floating_point_literal] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1481), + [anon_sym_r] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1483), + [anon_sym_throw] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1481), + [anon_sym_DASH_EQ] = ACTIONS(1481), + [anon_sym_STAR_EQ] = ACTIONS(1481), + [anon_sym_SLASH_EQ] = ACTIONS(1481), + [anon_sym_AMP_EQ] = ACTIONS(1481), + [anon_sym_PIPE_EQ] = ACTIONS(1481), + [anon_sym_CARET_EQ] = ACTIONS(1481), + [anon_sym_PERCENT_EQ] = ACTIONS(1481), + [anon_sym_LT_LT_EQ] = ACTIONS(1481), + [anon_sym_GT_GT_EQ] = ACTIONS(1481), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1481), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_QMARK_QMARK] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [sym_equality_operator] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1483), + [anon_sym_GT_GT_GT] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_TILDE_SLASH] = ACTIONS(1481), + [sym_increment_operator] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_is] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_QMARK_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1483), + [anon_sym_switch] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_enum] = ACTIONS(1483), + [anon_sym_abstract] = ACTIONS(1483), + [anon_sym_class] = ACTIONS(1483), + [anon_sym_super] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1483), + [anon_sym_var] = ACTIONS(1483), + [anon_sym_covariant] = ACTIONS(1483), + [anon_sym_Function] = ACTIONS(1483), + [anon_sym_get] = ACTIONS(1483), + [anon_sym_set] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_final] = ACTIONS(1483), + [anon_sym_external] = ACTIONS(1483), + [anon_sym_this] = ACTIONS(1483), [sym_comment] = ACTIONS(3), }, [322] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [sym_decimal_integer_literal] = ACTIONS(606), - [sym_hex_integer_literal] = ACTIONS(606), - [sym_octal_integer_literal] = ACTIONS(604), - [sym_binary_integer_literal] = ACTIONS(604), - [sym_decimal_floating_point_literal] = ACTIONS(604), - [sym_hex_floating_point_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), - [anon_sym_r] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_null] = ACTIONS(606), - [anon_sym_throw] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_await] = ACTIONS(606), - [anon_sym_is] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(606), - [anon_sym_QMARK_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(604), - [anon_sym_assert] = ACTIONS(606), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_do] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_try] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(604), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_abstract] = ACTIONS(606), - [anon_sym_class] = ACTIONS(606), - [anon_sym_super] = ACTIONS(606), - [anon_sym_void] = ACTIONS(606), - [anon_sym_var] = ACTIONS(606), - [anon_sym_covariant] = ACTIONS(606), - [anon_sym_Function] = ACTIONS(606), - [anon_sym_get] = ACTIONS(606), - [anon_sym_set] = ACTIONS(606), - [anon_sym_new] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_final] = ACTIONS(606), - [anon_sym_external] = ACTIONS(606), - [anon_sym_this] = ACTIONS(606), + [ts_builtin_sym_end] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1485), + [sym_decimal_integer_literal] = ACTIONS(1487), + [sym_hex_integer_literal] = ACTIONS(1487), + [sym_octal_integer_literal] = ACTIONS(1485), + [sym_binary_integer_literal] = ACTIONS(1485), + [sym_decimal_floating_point_literal] = ACTIONS(1485), + [sym_hex_floating_point_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1485), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1485), + [anon_sym_r] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1487), + [anon_sym_throw] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_AMP_EQ] = ACTIONS(1485), + [anon_sym_PIPE_EQ] = ACTIONS(1485), + [anon_sym_CARET_EQ] = ACTIONS(1485), + [anon_sym_PERCENT_EQ] = ACTIONS(1485), + [anon_sym_LT_LT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1485), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_QMARK_QMARK] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [sym_equality_operator] = ACTIONS(1485), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_GT_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_TILDE_SLASH] = ACTIONS(1485), + [sym_increment_operator] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1487), + [anon_sym_is] = ACTIONS(1487), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_QMARK_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1487), + [anon_sym_switch] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_yield] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_AT] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_abstract] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1487), + [anon_sym_super] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_var] = ACTIONS(1487), + [anon_sym_covariant] = ACTIONS(1487), + [anon_sym_Function] = ACTIONS(1487), + [anon_sym_get] = ACTIONS(1487), + [anon_sym_set] = ACTIONS(1487), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_final] = ACTIONS(1487), + [anon_sym_external] = ACTIONS(1487), + [anon_sym_this] = ACTIONS(1487), [sym_comment] = ACTIONS(3), }, [323] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3440), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1489), + [sym_decimal_integer_literal] = ACTIONS(1491), + [sym_hex_integer_literal] = ACTIONS(1491), + [sym_octal_integer_literal] = ACTIONS(1489), + [sym_binary_integer_literal] = ACTIONS(1489), + [sym_decimal_floating_point_literal] = ACTIONS(1489), + [sym_hex_floating_point_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1489), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1489), + [anon_sym_r] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_QMARK_QMARK] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [sym_equality_operator] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_GT_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_TILDE_SLASH] = ACTIONS(1489), + [sym_increment_operator] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_await] = ACTIONS(1491), + [anon_sym_is] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_QMARK_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_try] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_abstract] = ACTIONS(1491), + [anon_sym_class] = ACTIONS(1491), + [anon_sym_super] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1491), + [anon_sym_var] = ACTIONS(1491), + [anon_sym_covariant] = ACTIONS(1491), + [anon_sym_Function] = ACTIONS(1491), + [anon_sym_get] = ACTIONS(1491), + [anon_sym_set] = ACTIONS(1491), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_final] = ACTIONS(1491), + [anon_sym_external] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1491), [sym_comment] = ACTIONS(3), }, [324] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3450), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [sym_decimal_integer_literal] = ACTIONS(1495), + [sym_hex_integer_literal] = ACTIONS(1495), + [sym_octal_integer_literal] = ACTIONS(1493), + [sym_binary_integer_literal] = ACTIONS(1493), + [sym_decimal_floating_point_literal] = ACTIONS(1493), + [sym_hex_floating_point_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1493), + [anon_sym_r] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1493), + [anon_sym_DASH_EQ] = ACTIONS(1493), + [anon_sym_STAR_EQ] = ACTIONS(1493), + [anon_sym_SLASH_EQ] = ACTIONS(1493), + [anon_sym_AMP_EQ] = ACTIONS(1493), + [anon_sym_PIPE_EQ] = ACTIONS(1493), + [anon_sym_CARET_EQ] = ACTIONS(1493), + [anon_sym_PERCENT_EQ] = ACTIONS(1493), + [anon_sym_LT_LT_EQ] = ACTIONS(1493), + [anon_sym_GT_GT_EQ] = ACTIONS(1493), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1493), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_QMARK_QMARK] = ACTIONS(1495), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [sym_equality_operator] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_GT_GT_GT] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_TILDE_SLASH] = ACTIONS(1493), + [sym_increment_operator] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1495), + [anon_sym_is] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1495), + [anon_sym_QMARK_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_abstract] = ACTIONS(1495), + [anon_sym_class] = ACTIONS(1495), + [anon_sym_super] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1495), + [anon_sym_var] = ACTIONS(1495), + [anon_sym_covariant] = ACTIONS(1495), + [anon_sym_Function] = ACTIONS(1495), + [anon_sym_get] = ACTIONS(1495), + [anon_sym_set] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_final] = ACTIONS(1495), + [anon_sym_external] = ACTIONS(1495), + [anon_sym_this] = ACTIONS(1495), [sym_comment] = ACTIONS(3), }, [325] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3391), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_AMP_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1255), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_QMARK_QMARK] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_QMARK_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), [sym_comment] = ACTIONS(3), }, [326] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_POUND] = ACTIONS(569), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [anon_sym_true] = ACTIONS(571), - [anon_sym_false] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(569), - [anon_sym_r] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_null] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_await] = ACTIONS(571), - [anon_sym_is] = ACTIONS(571), - [anon_sym_as] = ACTIONS(571), - [anon_sym_DOT] = ACTIONS(571), - [anon_sym_QMARK_DOT] = ACTIONS(569), - [anon_sym_DOT_DOT] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_super] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_covariant] = ACTIONS(571), - [anon_sym_Function] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [anon_sym_new] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_external] = ACTIONS(571), - [anon_sym_this] = ACTIONS(571), + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_AMP_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1255), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_QMARK_QMARK] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_QMARK_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), [sym_comment] = ACTIONS(3), }, [327] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3511), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1503), + [sym_decimal_integer_literal] = ACTIONS(1505), + [sym_hex_integer_literal] = ACTIONS(1505), + [sym_octal_integer_literal] = ACTIONS(1503), + [sym_binary_integer_literal] = ACTIONS(1503), + [sym_decimal_floating_point_literal] = ACTIONS(1503), + [sym_hex_floating_point_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1503), + [anon_sym_r] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_STAR_EQ] = ACTIONS(1503), + [anon_sym_SLASH_EQ] = ACTIONS(1503), + [anon_sym_AMP_EQ] = ACTIONS(1503), + [anon_sym_PIPE_EQ] = ACTIONS(1503), + [anon_sym_CARET_EQ] = ACTIONS(1503), + [anon_sym_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_LT_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_GT_EQ] = ACTIONS(1503), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1503), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [sym_equality_operator] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_TILDE_SLASH] = ACTIONS(1503), + [sym_increment_operator] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1505), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_is] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_QMARK_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_AT] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_abstract] = ACTIONS(1505), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_super] = ACTIONS(1505), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_covariant] = ACTIONS(1505), + [anon_sym_Function] = ACTIONS(1505), + [anon_sym_get] = ACTIONS(1505), + [anon_sym_set] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_final] = ACTIONS(1505), + [anon_sym_external] = ACTIONS(1505), + [anon_sym_this] = ACTIONS(1505), [sym_comment] = ACTIONS(3), }, [328] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3012), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3012), - [sym_assignment_expression] = STATE(3012), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym__argument_list] = STATE(3329), - [sym_named_argument] = STATE(3270), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1507), + [sym_decimal_integer_literal] = ACTIONS(1509), + [sym_hex_integer_literal] = ACTIONS(1509), + [sym_octal_integer_literal] = ACTIONS(1507), + [sym_binary_integer_literal] = ACTIONS(1507), + [sym_decimal_floating_point_literal] = ACTIONS(1507), + [sym_hex_floating_point_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1507), + [anon_sym_r] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_QMARK_QMARK] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [sym_equality_operator] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_GT_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1509), + [anon_sym_TILDE_SLASH] = ACTIONS(1507), + [sym_increment_operator] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_is] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_QMARK_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_super] = ACTIONS(1509), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_covariant] = ACTIONS(1509), + [anon_sym_Function] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_final] = ACTIONS(1509), + [anon_sym_external] = ACTIONS(1509), + [anon_sym_this] = ACTIONS(1509), [sym_comment] = ACTIONS(3), }, [329] = { - [aux_sym__if_null_expression] = STATE(750), - [sym_shift_operator] = STATE(698), - [sym_additive_operator] = STATE(699), - [sym_multiplicative_operator] = STATE(700), - [aux_sym_logical_or_expression_repeat1] = STATE(748), - [aux_sym_logical_and_expression_repeat1] = STATE(744), - [aux_sym_bitwise_or_expression_repeat1] = STATE(743), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(736), - [aux_sym_bitwise_and_expression_repeat1] = STATE(742), - [aux_sym_shift_expression_repeat1] = STATE(726), - [aux_sym_additive_expression_repeat1] = STATE(735), - [aux_sym_multiplicative_expression_repeat1] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(584), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), - [anon_sym_r] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_null] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [sym_equality_operator] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_await] = ACTIONS(586), - [anon_sym_is] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_QMARK_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_super] = ACTIONS(586), - [anon_sym_void] = ACTIONS(586), - [anon_sym_var] = ACTIONS(586), - [anon_sym_covariant] = ACTIONS(586), - [anon_sym_Function] = ACTIONS(586), - [anon_sym_get] = ACTIONS(586), - [anon_sym_set] = ACTIONS(586), - [anon_sym_new] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_external] = ACTIONS(586), - [anon_sym_this] = ACTIONS(586), + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1511), + [sym_decimal_integer_literal] = ACTIONS(1513), + [sym_hex_integer_literal] = ACTIONS(1513), + [sym_octal_integer_literal] = ACTIONS(1511), + [sym_binary_integer_literal] = ACTIONS(1511), + [sym_decimal_floating_point_literal] = ACTIONS(1511), + [sym_hex_floating_point_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1511), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1511), + [anon_sym_r] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_throw] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_AMP_EQ] = ACTIONS(1511), + [anon_sym_PIPE_EQ] = ACTIONS(1511), + [anon_sym_CARET_EQ] = ACTIONS(1511), + [anon_sym_PERCENT_EQ] = ACTIONS(1511), + [anon_sym_LT_LT_EQ] = ACTIONS(1511), + [anon_sym_GT_GT_EQ] = ACTIONS(1511), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1511), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_QMARK_QMARK] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [sym_equality_operator] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_GT_GT_GT] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_TILDE_SLASH] = ACTIONS(1511), + [sym_increment_operator] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1513), + [anon_sym_await] = ACTIONS(1513), + [anon_sym_is] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_QMARK_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_AT] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_abstract] = ACTIONS(1513), + [anon_sym_class] = ACTIONS(1513), + [anon_sym_super] = ACTIONS(1513), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_covariant] = ACTIONS(1513), + [anon_sym_Function] = ACTIONS(1513), + [anon_sym_get] = ACTIONS(1513), + [anon_sym_set] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_final] = ACTIONS(1513), + [anon_sym_external] = ACTIONS(1513), + [anon_sym_this] = ACTIONS(1513), [sym_comment] = ACTIONS(3), }, [330] = { - [sym_assignable_selector_part] = STATE(2512), - [sym_selector] = STATE(440), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(762), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(759), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2512), - [aux_sym_assignable_selector_part_repeat1] = STATE(2584), - [aux_sym__postfix_expression_repeat1] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [sym_decimal_integer_literal] = ACTIONS(614), - [sym_hex_integer_literal] = ACTIONS(614), - [sym_octal_integer_literal] = ACTIONS(612), - [sym_binary_integer_literal] = ACTIONS(612), - [sym_decimal_floating_point_literal] = ACTIONS(612), - [sym_hex_floating_point_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(614), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(612), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(612), - [anon_sym_r] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_null] = ACTIONS(614), - [anon_sym_throw] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_QMARK_QMARK] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_AMP_AMP] = ACTIONS(612), - [sym_equality_operator] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_GT_GT_GT] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(612), - [anon_sym_TILDE_SLASH] = ACTIONS(612), - [sym_increment_operator] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_await] = ACTIONS(614), - [anon_sym_is] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(1529), - [anon_sym_QMARK_DOT] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_switch] = ACTIONS(614), - [anon_sym_do] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_try] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(612), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_abstract] = ACTIONS(614), - [anon_sym_class] = ACTIONS(614), - [anon_sym_super] = ACTIONS(614), - [anon_sym_void] = ACTIONS(614), - [anon_sym_var] = ACTIONS(614), - [anon_sym_covariant] = ACTIONS(614), - [anon_sym_Function] = ACTIONS(614), - [anon_sym_get] = ACTIONS(614), - [anon_sym_set] = ACTIONS(614), - [anon_sym_new] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_final] = ACTIONS(614), - [anon_sym_external] = ACTIONS(614), - [anon_sym_this] = ACTIONS(614), + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1515), + [sym_decimal_integer_literal] = ACTIONS(1517), + [sym_hex_integer_literal] = ACTIONS(1517), + [sym_octal_integer_literal] = ACTIONS(1515), + [sym_binary_integer_literal] = ACTIONS(1515), + [sym_decimal_floating_point_literal] = ACTIONS(1515), + [sym_hex_floating_point_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1515), + [anon_sym_r] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_AMP_EQ] = ACTIONS(1515), + [anon_sym_PIPE_EQ] = ACTIONS(1515), + [anon_sym_CARET_EQ] = ACTIONS(1515), + [anon_sym_PERCENT_EQ] = ACTIONS(1515), + [anon_sym_LT_LT_EQ] = ACTIONS(1515), + [anon_sym_GT_GT_EQ] = ACTIONS(1515), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1515), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_QMARK_QMARK] = ACTIONS(1517), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [sym_equality_operator] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1517), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1517), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_GT_GT_GT] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_TILDE_SLASH] = ACTIONS(1515), + [sym_increment_operator] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1517), + [anon_sym_is] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_DOT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_abstract] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_super] = ACTIONS(1517), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_covariant] = ACTIONS(1517), + [anon_sym_Function] = ACTIONS(1517), + [anon_sym_get] = ACTIONS(1517), + [anon_sym_set] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_final] = ACTIONS(1517), + [anon_sym_external] = ACTIONS(1517), + [anon_sym_this] = ACTIONS(1517), [sym_comment] = ACTIONS(3), }, [331] = { - [sym_assignable_selector_part] = STATE(2515), - [sym_selector] = STATE(375), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(762), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(768), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2515), - [aux_sym_assignable_selector_part_repeat1] = STATE(2584), - [aux_sym__postfix_expression_repeat1] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(659), - [sym_identifier] = ACTIONS(661), - [anon_sym_POUND] = ACTIONS(659), - [sym_decimal_integer_literal] = ACTIONS(661), - [sym_hex_integer_literal] = ACTIONS(661), - [sym_octal_integer_literal] = ACTIONS(659), - [sym_binary_integer_literal] = ACTIONS(659), - [sym_decimal_floating_point_literal] = ACTIONS(659), - [sym_hex_floating_point_literal] = ACTIONS(661), - [anon_sym_true] = ACTIONS(661), - [anon_sym_false] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(659), - [anon_sym_r] = ACTIONS(661), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_null] = ACTIONS(661), - [anon_sym_throw] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_QMARK_QMARK] = ACTIONS(659), - [anon_sym_QMARK] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(659), - [anon_sym_AMP_AMP] = ACTIONS(659), - [sym_equality_operator] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(659), - [anon_sym_LT_EQ] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_CARET] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(659), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_GT_GT_GT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(659), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_PERCENT] = ACTIONS(659), - [anon_sym_TILDE_SLASH] = ACTIONS(659), - [sym_increment_operator] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_is] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_QMARK_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_assert] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_yield] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_try] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_class] = ACTIONS(661), - [anon_sym_super] = ACTIONS(661), - [anon_sym_void] = ACTIONS(661), - [anon_sym_var] = ACTIONS(661), - [anon_sym_covariant] = ACTIONS(661), - [anon_sym_Function] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [anon_sym_new] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_final] = ACTIONS(661), - [anon_sym_external] = ACTIONS(661), - [anon_sym_this] = ACTIONS(661), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1519), + [sym_decimal_integer_literal] = ACTIONS(1521), + [sym_hex_integer_literal] = ACTIONS(1521), + [sym_octal_integer_literal] = ACTIONS(1519), + [sym_binary_integer_literal] = ACTIONS(1519), + [sym_decimal_floating_point_literal] = ACTIONS(1519), + [sym_hex_floating_point_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1519), + [anon_sym_r] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_throw] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_AMP_EQ] = ACTIONS(1519), + [anon_sym_PIPE_EQ] = ACTIONS(1519), + [anon_sym_CARET_EQ] = ACTIONS(1519), + [anon_sym_PERCENT_EQ] = ACTIONS(1519), + [anon_sym_LT_LT_EQ] = ACTIONS(1519), + [anon_sym_GT_GT_EQ] = ACTIONS(1519), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1519), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_QMARK_QMARK] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [sym_equality_operator] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_GT_EQ] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1521), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_GT_GT_GT] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1521), + [anon_sym_TILDE_SLASH] = ACTIONS(1519), + [sym_increment_operator] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_await] = ACTIONS(1521), + [anon_sym_is] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1521), + [anon_sym_DOT] = ACTIONS(1521), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_abstract] = ACTIONS(1521), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_super] = ACTIONS(1521), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_covariant] = ACTIONS(1521), + [anon_sym_Function] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1521), + [anon_sym_set] = ACTIONS(1521), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_final] = ACTIONS(1521), + [anon_sym_external] = ACTIONS(1521), + [anon_sym_this] = ACTIONS(1521), [sym_comment] = ACTIONS(3), }, [332] = { - [sym_assignable_selector_part] = STATE(2515), - [sym_selector] = STATE(475), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(762), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(768), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2515), - [aux_sym_assignable_selector_part_repeat1] = STATE(2584), - [aux_sym__postfix_expression_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(659), - [sym_identifier] = ACTIONS(661), - [anon_sym_POUND] = ACTIONS(659), - [sym_decimal_integer_literal] = ACTIONS(661), - [sym_hex_integer_literal] = ACTIONS(661), - [sym_octal_integer_literal] = ACTIONS(659), - [sym_binary_integer_literal] = ACTIONS(659), - [sym_decimal_floating_point_literal] = ACTIONS(659), - [sym_hex_floating_point_literal] = ACTIONS(661), - [anon_sym_true] = ACTIONS(661), - [anon_sym_false] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(661), - [anon_sym_SQUOTE] = ACTIONS(661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(659), - [anon_sym_r] = ACTIONS(661), + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(1523), + [sym_decimal_integer_literal] = ACTIONS(1525), + [sym_hex_integer_literal] = ACTIONS(1525), + [sym_octal_integer_literal] = ACTIONS(1523), + [sym_binary_integer_literal] = ACTIONS(1523), + [sym_decimal_floating_point_literal] = ACTIONS(1523), + [sym_hex_floating_point_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1523), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1523), + [anon_sym_r] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_throw] = ACTIONS(1525), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_AMP_EQ] = ACTIONS(1523), + [anon_sym_PIPE_EQ] = ACTIONS(1523), + [anon_sym_CARET_EQ] = ACTIONS(1523), + [anon_sym_PERCENT_EQ] = ACTIONS(1523), + [anon_sym_LT_LT_EQ] = ACTIONS(1523), + [anon_sym_GT_GT_EQ] = ACTIONS(1523), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1523), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_QMARK_QMARK] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [sym_equality_operator] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_GT_GT_GT] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1525), + [anon_sym_TILDE_SLASH] = ACTIONS(1523), + [sym_increment_operator] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_is] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_DOT] = ACTIONS(1525), + [anon_sym_QMARK_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_abstract] = ACTIONS(1525), + [anon_sym_class] = ACTIONS(1525), + [anon_sym_super] = ACTIONS(1525), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_covariant] = ACTIONS(1525), + [anon_sym_Function] = ACTIONS(1525), + [anon_sym_get] = ACTIONS(1525), + [anon_sym_set] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_final] = ACTIONS(1525), + [anon_sym_external] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1525), + [sym_comment] = ACTIONS(3), + }, + [333] = { + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1527), + [sym_decimal_integer_literal] = ACTIONS(1529), + [sym_hex_integer_literal] = ACTIONS(1529), + [sym_octal_integer_literal] = ACTIONS(1527), + [sym_binary_integer_literal] = ACTIONS(1527), + [sym_decimal_floating_point_literal] = ACTIONS(1527), + [sym_hex_floating_point_literal] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1527), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1527), + [anon_sym_r] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_throw] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_AMP_EQ] = ACTIONS(1527), + [anon_sym_PIPE_EQ] = ACTIONS(1527), + [anon_sym_CARET_EQ] = ACTIONS(1527), + [anon_sym_PERCENT_EQ] = ACTIONS(1527), + [anon_sym_LT_LT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1527), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_QMARK_QMARK] = ACTIONS(1529), + [anon_sym_QMARK] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [sym_equality_operator] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_GT_GT_GT] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_TILDE_SLASH] = ACTIONS(1527), + [sym_increment_operator] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_TILDE] = ACTIONS(1529), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_is] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_QMARK_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_abstract] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1529), + [anon_sym_super] = ACTIONS(1529), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_covariant] = ACTIONS(1529), + [anon_sym_Function] = ACTIONS(1529), + [anon_sym_get] = ACTIONS(1529), + [anon_sym_set] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_final] = ACTIONS(1529), + [anon_sym_external] = ACTIONS(1529), + [anon_sym_this] = ACTIONS(1529), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [ts_builtin_sym_end] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(1531), + [sym_decimal_integer_literal] = ACTIONS(1533), + [sym_hex_integer_literal] = ACTIONS(1533), + [sym_octal_integer_literal] = ACTIONS(1531), + [sym_binary_integer_literal] = ACTIONS(1531), + [sym_decimal_floating_point_literal] = ACTIONS(1531), + [sym_hex_floating_point_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1533), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1531), + [anon_sym_r] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_COMMA] = ACTIONS(1531), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_throw] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_QMARK_QMARK] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [sym_equality_operator] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_GT_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_TILDE_SLASH] = ACTIONS(1531), + [sym_increment_operator] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_await] = ACTIONS(1533), + [anon_sym_is] = ACTIONS(1533), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_QMARK_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1531), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_try] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_abstract] = ACTIONS(1533), + [anon_sym_class] = ACTIONS(1533), + [anon_sym_super] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_covariant] = ACTIONS(1533), + [anon_sym_Function] = ACTIONS(1533), + [anon_sym_get] = ACTIONS(1533), + [anon_sym_set] = ACTIONS(1533), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_final] = ACTIONS(1533), + [anon_sym_external] = ACTIONS(1533), + [anon_sym_this] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(1535), + [sym_decimal_integer_literal] = ACTIONS(1537), + [sym_hex_integer_literal] = ACTIONS(1537), + [sym_octal_integer_literal] = ACTIONS(1535), + [sym_binary_integer_literal] = ACTIONS(1535), + [sym_decimal_floating_point_literal] = ACTIONS(1535), + [sym_hex_floating_point_literal] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1537), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1535), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1535), + [anon_sym_r] = ACTIONS(1537), [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_null] = ACTIONS(661), - [anon_sym_throw] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_QMARK_QMARK] = ACTIONS(659), - [anon_sym_QMARK] = ACTIONS(661), - [anon_sym_PIPE_PIPE] = ACTIONS(659), - [anon_sym_AMP_AMP] = ACTIONS(659), - [sym_equality_operator] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_GT_EQ] = ACTIONS(659), - [anon_sym_LT_EQ] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_CARET] = ACTIONS(659), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(659), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_GT_GT_GT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_STAR] = ACTIONS(659), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_PERCENT] = ACTIONS(659), - [anon_sym_TILDE_SLASH] = ACTIONS(659), - [sym_increment_operator] = ACTIONS(659), + [anon_sym_COMMA] = ACTIONS(1535), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1537), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_AMP_EQ] = ACTIONS(1535), + [anon_sym_PIPE_EQ] = ACTIONS(1535), + [anon_sym_CARET_EQ] = ACTIONS(1535), + [anon_sym_PERCENT_EQ] = ACTIONS(1535), + [anon_sym_LT_LT_EQ] = ACTIONS(1535), + [anon_sym_GT_GT_EQ] = ACTIONS(1535), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1535), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_QMARK_QMARK] = ACTIONS(1537), + [anon_sym_QMARK] = ACTIONS(1537), + [anon_sym_PIPE_PIPE] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [sym_equality_operator] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_GT_EQ] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_CARET] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_LT_LT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1537), + [anon_sym_GT_GT_GT] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_SLASH] = ACTIONS(1537), + [anon_sym_PERCENT] = ACTIONS(1537), + [anon_sym_TILDE_SLASH] = ACTIONS(1535), + [sym_increment_operator] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1537), + [anon_sym_await] = ACTIONS(1537), + [anon_sym_is] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(1537), + [anon_sym_DOT] = ACTIONS(1537), + [anon_sym_QMARK_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_abstract] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1537), + [anon_sym_super] = ACTIONS(1537), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_covariant] = ACTIONS(1537), + [anon_sym_Function] = ACTIONS(1537), + [anon_sym_get] = ACTIONS(1537), + [anon_sym_set] = ACTIONS(1537), + [anon_sym_new] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_final] = ACTIONS(1537), + [anon_sym_external] = ACTIONS(1537), + [anon_sym_this] = ACTIONS(1537), + [sym_comment] = ACTIONS(3), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_POUND] = ACTIONS(1539), + [sym_decimal_integer_literal] = ACTIONS(1541), + [sym_hex_integer_literal] = ACTIONS(1541), + [sym_octal_integer_literal] = ACTIONS(1539), + [sym_binary_integer_literal] = ACTIONS(1539), + [sym_decimal_floating_point_literal] = ACTIONS(1539), + [sym_hex_floating_point_literal] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1539), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1539), + [anon_sym_r] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_throw] = ACTIONS(1541), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_AMP_EQ] = ACTIONS(1539), + [anon_sym_PIPE_EQ] = ACTIONS(1539), + [anon_sym_CARET_EQ] = ACTIONS(1539), + [anon_sym_PERCENT_EQ] = ACTIONS(1539), + [anon_sym_LT_LT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_QMARK_QMARK] = ACTIONS(1541), + [anon_sym_QMARK] = ACTIONS(1541), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [sym_equality_operator] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_GT_GT_GT] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_TILDE_SLASH] = ACTIONS(1539), + [sym_increment_operator] = ACTIONS(1539), [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(661), - [anon_sym_await] = ACTIONS(661), - [anon_sym_is] = ACTIONS(661), - [anon_sym_as] = ACTIONS(661), - [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(1541), + [anon_sym_is] = ACTIONS(1541), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1541), + [anon_sym_QMARK_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1539), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1539), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_abstract] = ACTIONS(1541), + [anon_sym_class] = ACTIONS(1541), + [anon_sym_super] = ACTIONS(1541), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_covariant] = ACTIONS(1541), + [anon_sym_Function] = ACTIONS(1541), + [anon_sym_get] = ACTIONS(1541), + [anon_sym_set] = ACTIONS(1541), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_final] = ACTIONS(1541), + [anon_sym_external] = ACTIONS(1541), + [anon_sym_this] = ACTIONS(1541), + [sym_comment] = ACTIONS(3), + }, + [337] = { + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(1543), + [sym_decimal_integer_literal] = ACTIONS(1545), + [sym_hex_integer_literal] = ACTIONS(1545), + [sym_octal_integer_literal] = ACTIONS(1543), + [sym_binary_integer_literal] = ACTIONS(1543), + [sym_decimal_floating_point_literal] = ACTIONS(1543), + [sym_hex_floating_point_literal] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1545), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1543), + [anon_sym_r] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_throw] = ACTIONS(1545), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_QMARK_QMARK] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1545), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [sym_equality_operator] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_GT_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_TILDE_SLASH] = ACTIONS(1543), + [sym_increment_operator] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_is] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_super] = ACTIONS(1545), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_covariant] = ACTIONS(1545), + [anon_sym_Function] = ACTIONS(1545), + [anon_sym_get] = ACTIONS(1545), + [anon_sym_set] = ACTIONS(1545), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_final] = ACTIONS(1545), + [anon_sym_external] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1545), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(1547), + [sym_decimal_integer_literal] = ACTIONS(1549), + [sym_hex_integer_literal] = ACTIONS(1549), + [sym_octal_integer_literal] = ACTIONS(1547), + [sym_binary_integer_literal] = ACTIONS(1547), + [sym_decimal_floating_point_literal] = ACTIONS(1547), + [sym_hex_floating_point_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1547), + [anon_sym_r] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_QMARK_QMARK] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1549), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [sym_equality_operator] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_GT_GT_GT] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_TILDE_SLASH] = ACTIONS(1547), + [sym_increment_operator] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_is] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_QMARK_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_super] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_covariant] = ACTIONS(1549), + [anon_sym_Function] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_final] = ACTIONS(1549), + [anon_sym_external] = ACTIONS(1549), + [anon_sym_this] = ACTIONS(1549), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [ts_builtin_sym_end] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1415), + [sym_decimal_integer_literal] = ACTIONS(1413), + [sym_hex_integer_literal] = ACTIONS(1413), + [sym_octal_integer_literal] = ACTIONS(1415), + [sym_binary_integer_literal] = ACTIONS(1415), + [sym_decimal_floating_point_literal] = ACTIONS(1415), + [sym_hex_floating_point_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1415), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1415), + [anon_sym_r] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_COMMA] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_throw] = ACTIONS(1413), + [anon_sym_EQ] = ACTIONS(1413), + [anon_sym_PLUS_EQ] = ACTIONS(1415), + [anon_sym_DASH_EQ] = ACTIONS(1415), + [anon_sym_STAR_EQ] = ACTIONS(1415), + [anon_sym_SLASH_EQ] = ACTIONS(1415), + [anon_sym_AMP_EQ] = ACTIONS(1415), + [anon_sym_PIPE_EQ] = ACTIONS(1415), + [anon_sym_CARET_EQ] = ACTIONS(1415), + [anon_sym_PERCENT_EQ] = ACTIONS(1415), + [anon_sym_LT_LT_EQ] = ACTIONS(1415), + [anon_sym_GT_GT_EQ] = ACTIONS(1415), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1415), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_QMARK_QMARK] = ACTIONS(1413), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [sym_equality_operator] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1413), + [anon_sym_GT_EQ] = ACTIONS(1415), + [anon_sym_LT_EQ] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1413), + [anon_sym_GT_GT] = ACTIONS(1413), + [anon_sym_GT_GT_GT] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(1413), + [anon_sym_PERCENT] = ACTIONS(1413), + [anon_sym_TILDE_SLASH] = ACTIONS(1415), + [sym_increment_operator] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_await] = ACTIONS(1413), + [anon_sym_is] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_QMARK_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_AT] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1413), + [anon_sym_abstract] = ACTIONS(1413), + [anon_sym_class] = ACTIONS(1413), + [anon_sym_super] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_covariant] = ACTIONS(1413), + [anon_sym_Function] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_final] = ACTIONS(1413), + [anon_sym_external] = ACTIONS(1413), + [anon_sym_this] = ACTIONS(1413), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(1551), + [sym_decimal_integer_literal] = ACTIONS(1553), + [sym_hex_integer_literal] = ACTIONS(1553), + [sym_octal_integer_literal] = ACTIONS(1551), + [sym_binary_integer_literal] = ACTIONS(1551), + [sym_decimal_floating_point_literal] = ACTIONS(1551), + [sym_hex_floating_point_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1551), + [anon_sym_r] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_QMARK_QMARK] = ACTIONS(1553), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [sym_equality_operator] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_GT_GT_GT] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_TILDE_SLASH] = ACTIONS(1551), + [sym_increment_operator] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1553), + [anon_sym_is] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), [anon_sym_QMARK_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(659), - [anon_sym_assert] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_yield] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_try] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_class] = ACTIONS(661), - [anon_sym_super] = ACTIONS(661), - [anon_sym_void] = ACTIONS(661), - [anon_sym_var] = ACTIONS(661), - [anon_sym_covariant] = ACTIONS(661), - [anon_sym_Function] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), - [anon_sym_new] = ACTIONS(661), - [anon_sym_const] = ACTIONS(661), - [anon_sym_final] = ACTIONS(661), - [anon_sym_external] = ACTIONS(661), - [anon_sym_this] = ACTIONS(661), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_abstract] = ACTIONS(1553), + [anon_sym_class] = ACTIONS(1553), + [anon_sym_super] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_covariant] = ACTIONS(1553), + [anon_sym_Function] = ACTIONS(1553), + [anon_sym_get] = ACTIONS(1553), + [anon_sym_set] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_final] = ACTIONS(1553), + [anon_sym_external] = ACTIONS(1553), + [anon_sym_this] = ACTIONS(1553), [sym_comment] = ACTIONS(3), }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [sym_decimal_integer_literal] = ACTIONS(1180), - [sym_hex_integer_literal] = ACTIONS(1180), - [sym_octal_integer_literal] = ACTIONS(1178), - [sym_binary_integer_literal] = ACTIONS(1178), - [sym_decimal_floating_point_literal] = ACTIONS(1178), - [sym_hex_floating_point_literal] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1178), - [anon_sym_r] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_COLON] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1180), - [anon_sym_throw] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_AMP_EQ] = ACTIONS(1400), - [anon_sym_PIPE_EQ] = ACTIONS(1400), - [anon_sym_CARET_EQ] = ACTIONS(1400), - [anon_sym_PERCENT_EQ] = ACTIONS(1400), - [anon_sym_LT_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_QMARK_QMARK] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [sym_equality_operator] = ACTIONS(1400), + [341] = { + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(1555), + [sym_decimal_integer_literal] = ACTIONS(1557), + [sym_hex_integer_literal] = ACTIONS(1557), + [sym_octal_integer_literal] = ACTIONS(1555), + [sym_binary_integer_literal] = ACTIONS(1555), + [sym_decimal_floating_point_literal] = ACTIONS(1555), + [sym_hex_floating_point_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1555), + [anon_sym_r] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_COMMA] = ACTIONS(1555), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_QMARK_QMARK] = ACTIONS(1557), + [anon_sym_QMARK] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [sym_equality_operator] = ACTIONS(1555), [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1402), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_GT_GT_GT] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_TILDE_SLASH] = ACTIONS(1400), - [sym_increment_operator] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PERCENT] = ACTIONS(1557), + [anon_sym_TILDE_SLASH] = ACTIONS(1555), + [sym_increment_operator] = ACTIONS(1555), [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_await] = ACTIONS(1180), - [anon_sym_is] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_QMARK_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_assert] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_try] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_AT] = ACTIONS(1178), - [anon_sym_super] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1180), - [anon_sym_covariant] = ACTIONS(1180), - [anon_sym_Function] = ACTIONS(1180), - [anon_sym_new] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_final] = ACTIONS(1180), - [anon_sym_this] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1557), + [anon_sym_is] = ACTIONS(1557), + [anon_sym_as] = ACTIONS(1557), + [anon_sym_DOT] = ACTIONS(1557), + [anon_sym_QMARK_DOT] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_yield] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_AT] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1557), + [anon_sym_super] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_covariant] = ACTIONS(1557), + [anon_sym_Function] = ACTIONS(1557), + [anon_sym_get] = ACTIONS(1557), + [anon_sym_set] = ACTIONS(1557), + [anon_sym_new] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_final] = ACTIONS(1557), + [anon_sym_external] = ACTIONS(1557), + [anon_sym_this] = ACTIONS(1557), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_assignable_selector_part] = STATE(2512), - [sym_selector] = STATE(389), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(762), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(759), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(2512), - [aux_sym_assignable_selector_part_repeat1] = STATE(2584), - [aux_sym__postfix_expression_repeat1] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [sym_decimal_integer_literal] = ACTIONS(614), - [sym_hex_integer_literal] = ACTIONS(614), - [sym_octal_integer_literal] = ACTIONS(612), - [sym_binary_integer_literal] = ACTIONS(612), - [sym_decimal_floating_point_literal] = ACTIONS(612), - [sym_hex_floating_point_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(614), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(612), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(612), - [anon_sym_r] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_null] = ACTIONS(614), - [anon_sym_throw] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_QMARK_QMARK] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_AMP_AMP] = ACTIONS(612), - [sym_equality_operator] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_GT_GT_GT] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(612), - [anon_sym_TILDE_SLASH] = ACTIONS(612), - [sym_increment_operator] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_await] = ACTIONS(614), - [anon_sym_is] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_QMARK_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_assert] = ACTIONS(614), - [anon_sym_switch] = ACTIONS(614), - [anon_sym_do] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_try] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(612), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_abstract] = ACTIONS(614), - [anon_sym_class] = ACTIONS(614), - [anon_sym_super] = ACTIONS(614), - [anon_sym_void] = ACTIONS(614), - [anon_sym_var] = ACTIONS(614), - [anon_sym_covariant] = ACTIONS(614), - [anon_sym_Function] = ACTIONS(614), - [anon_sym_get] = ACTIONS(614), - [anon_sym_set] = ACTIONS(614), - [anon_sym_new] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_final] = ACTIONS(614), - [anon_sym_external] = ACTIONS(614), - [anon_sym_this] = ACTIONS(614), + [342] = { + [ts_builtin_sym_end] = ACTIONS(1559), + [sym_identifier] = ACTIONS(1561), + [anon_sym_POUND] = ACTIONS(1559), + [sym_decimal_integer_literal] = ACTIONS(1561), + [sym_hex_integer_literal] = ACTIONS(1561), + [sym_octal_integer_literal] = ACTIONS(1559), + [sym_binary_integer_literal] = ACTIONS(1559), + [sym_decimal_floating_point_literal] = ACTIONS(1559), + [sym_hex_floating_point_literal] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1559), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1559), + [anon_sym_r] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_COMMA] = ACTIONS(1559), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_throw] = ACTIONS(1561), + [anon_sym_EQ] = ACTIONS(1561), + [anon_sym_PLUS_EQ] = ACTIONS(1559), + [anon_sym_DASH_EQ] = ACTIONS(1559), + [anon_sym_STAR_EQ] = ACTIONS(1559), + [anon_sym_SLASH_EQ] = ACTIONS(1559), + [anon_sym_AMP_EQ] = ACTIONS(1559), + [anon_sym_PIPE_EQ] = ACTIONS(1559), + [anon_sym_CARET_EQ] = ACTIONS(1559), + [anon_sym_PERCENT_EQ] = ACTIONS(1559), + [anon_sym_LT_LT_EQ] = ACTIONS(1559), + [anon_sym_GT_GT_EQ] = ACTIONS(1559), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1559), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_QMARK_QMARK] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [sym_equality_operator] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_EQ] = ACTIONS(1559), + [anon_sym_LT_EQ] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_GT_GT_GT] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_PERCENT] = ACTIONS(1561), + [anon_sym_TILDE_SLASH] = ACTIONS(1559), + [sym_increment_operator] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_is] = ACTIONS(1561), + [anon_sym_as] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_QMARK_DOT] = ACTIONS(1559), + [anon_sym_DOT_DOT] = ACTIONS(1559), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_yield] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1561), + [anon_sym_abstract] = ACTIONS(1561), + [anon_sym_class] = ACTIONS(1561), + [anon_sym_super] = ACTIONS(1561), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_covariant] = ACTIONS(1561), + [anon_sym_Function] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_new] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_final] = ACTIONS(1561), + [anon_sym_external] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1561), [sym_comment] = ACTIONS(3), }, - [335] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), + [343] = { + [ts_builtin_sym_end] = ACTIONS(1563), + [sym_identifier] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(1563), + [sym_decimal_integer_literal] = ACTIONS(1565), + [sym_hex_integer_literal] = ACTIONS(1565), + [sym_octal_integer_literal] = ACTIONS(1563), + [sym_binary_integer_literal] = ACTIONS(1563), + [sym_decimal_floating_point_literal] = ACTIONS(1563), + [sym_hex_floating_point_literal] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_SQUOTE] = ACTIONS(1565), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1563), + [anon_sym_r] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_throw] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_QMARK_QMARK] = ACTIONS(1565), + [anon_sym_QMARK] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [sym_equality_operator] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1563), + [anon_sym_LT_EQ] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_GT_GT_GT] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1565), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_TILDE_SLASH] = ACTIONS(1563), + [sym_increment_operator] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_QMARK_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_AT] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_class] = ACTIONS(1565), + [anon_sym_super] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_covariant] = ACTIONS(1565), + [anon_sym_Function] = ACTIONS(1565), + [anon_sym_get] = ACTIONS(1565), + [anon_sym_set] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_final] = ACTIONS(1565), + [anon_sym_external] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(1565), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(1567), + [sym_decimal_integer_literal] = ACTIONS(1569), + [sym_hex_integer_literal] = ACTIONS(1569), + [sym_octal_integer_literal] = ACTIONS(1567), + [sym_binary_integer_literal] = ACTIONS(1567), + [sym_decimal_floating_point_literal] = ACTIONS(1567), + [sym_hex_floating_point_literal] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1567), + [anon_sym_r] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_throw] = ACTIONS(1569), + [anon_sym_EQ] = ACTIONS(1569), + [anon_sym_PLUS_EQ] = ACTIONS(1567), + [anon_sym_DASH_EQ] = ACTIONS(1567), + [anon_sym_STAR_EQ] = ACTIONS(1567), + [anon_sym_SLASH_EQ] = ACTIONS(1567), + [anon_sym_AMP_EQ] = ACTIONS(1567), + [anon_sym_PIPE_EQ] = ACTIONS(1567), + [anon_sym_CARET_EQ] = ACTIONS(1567), + [anon_sym_PERCENT_EQ] = ACTIONS(1567), + [anon_sym_LT_LT_EQ] = ACTIONS(1567), + [anon_sym_GT_GT_EQ] = ACTIONS(1567), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1567), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_QMARK_QMARK] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [sym_equality_operator] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_EQ] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(1569), + [anon_sym_GT_GT_GT] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_PERCENT] = ACTIONS(1569), + [anon_sym_TILDE_SLASH] = ACTIONS(1567), + [sym_increment_operator] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1569), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_is] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_QMARK_DOT] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_AT] = ACTIONS(1567), + [anon_sym_enum] = ACTIONS(1569), + [anon_sym_abstract] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_super] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_covariant] = ACTIONS(1569), + [anon_sym_Function] = ACTIONS(1569), + [anon_sym_get] = ACTIONS(1569), + [anon_sym_set] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_final] = ACTIONS(1569), + [anon_sym_external] = ACTIONS(1569), + [anon_sym_this] = ACTIONS(1569), + [sym_comment] = ACTIONS(3), + }, + [345] = { + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(913), + [sym_decimal_integer_literal] = ACTIONS(915), + [sym_hex_integer_literal] = ACTIONS(915), + [sym_octal_integer_literal] = ACTIONS(913), + [sym_binary_integer_literal] = ACTIONS(913), + [sym_decimal_floating_point_literal] = ACTIONS(913), + [sym_hex_floating_point_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(913), + [anon_sym_r] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_null] = ACTIONS(915), + [anon_sym_throw] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(913), + [anon_sym_DASH_EQ] = ACTIONS(913), + [anon_sym_STAR_EQ] = ACTIONS(913), + [anon_sym_SLASH_EQ] = ACTIONS(913), + [anon_sym_AMP_EQ] = ACTIONS(913), + [anon_sym_PIPE_EQ] = ACTIONS(913), + [anon_sym_CARET_EQ] = ACTIONS(913), + [anon_sym_PERCENT_EQ] = ACTIONS(913), + [anon_sym_LT_LT_EQ] = ACTIONS(913), + [anon_sym_GT_GT_EQ] = ACTIONS(913), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(913), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_QMARK_QMARK] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_AMP_AMP] = ACTIONS(913), + [sym_equality_operator] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_GT_GT_GT] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_TILDE_SLASH] = ACTIONS(913), + [sym_increment_operator] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_is] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_assert] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_try] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_abstract] = ACTIONS(915), + [anon_sym_class] = ACTIONS(915), + [anon_sym_super] = ACTIONS(915), + [anon_sym_void] = ACTIONS(915), + [anon_sym_var] = ACTIONS(915), + [anon_sym_covariant] = ACTIONS(915), + [anon_sym_Function] = ACTIONS(915), + [anon_sym_get] = ACTIONS(915), + [anon_sym_set] = ACTIONS(915), + [anon_sym_new] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_final] = ACTIONS(915), + [anon_sym_external] = ACTIONS(915), + [anon_sym_this] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + }, + [346] = { + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(1571), + [sym_decimal_integer_literal] = ACTIONS(1573), + [sym_hex_integer_literal] = ACTIONS(1573), + [sym_octal_integer_literal] = ACTIONS(1571), + [sym_binary_integer_literal] = ACTIONS(1571), + [sym_decimal_floating_point_literal] = ACTIONS(1571), + [sym_hex_floating_point_literal] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1571), + [anon_sym_r] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_COMMA] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(1573), + [anon_sym_PLUS_EQ] = ACTIONS(1571), + [anon_sym_DASH_EQ] = ACTIONS(1571), + [anon_sym_STAR_EQ] = ACTIONS(1571), + [anon_sym_SLASH_EQ] = ACTIONS(1571), + [anon_sym_AMP_EQ] = ACTIONS(1571), + [anon_sym_PIPE_EQ] = ACTIONS(1571), + [anon_sym_CARET_EQ] = ACTIONS(1571), + [anon_sym_PERCENT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_GT_EQ] = ACTIONS(1571), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1571), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK_QMARK] = ACTIONS(1573), + [anon_sym_QMARK] = ACTIONS(1573), + [anon_sym_PIPE_PIPE] = ACTIONS(1571), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [sym_equality_operator] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_GT_GT_GT] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_PERCENT] = ACTIONS(1573), + [anon_sym_TILDE_SLASH] = ACTIONS(1571), + [sym_increment_operator] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_TILDE] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1573), + [anon_sym_is] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(1573), + [anon_sym_QMARK_DOT] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_yield] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1573), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_super] = ACTIONS(1573), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_covariant] = ACTIONS(1573), + [anon_sym_Function] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), + [anon_sym_new] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_final] = ACTIONS(1573), + [anon_sym_external] = ACTIONS(1573), + [anon_sym_this] = ACTIONS(1573), + [sym_comment] = ACTIONS(3), + }, + [347] = { + [ts_builtin_sym_end] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1577), + [anon_sym_POUND] = ACTIONS(1575), + [sym_decimal_integer_literal] = ACTIONS(1577), + [sym_hex_integer_literal] = ACTIONS(1577), + [sym_octal_integer_literal] = ACTIONS(1575), + [sym_binary_integer_literal] = ACTIONS(1575), + [sym_decimal_floating_point_literal] = ACTIONS(1575), + [sym_hex_floating_point_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1575), + [anon_sym_r] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_throw] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1577), + [anon_sym_PLUS_EQ] = ACTIONS(1575), + [anon_sym_DASH_EQ] = ACTIONS(1575), + [anon_sym_STAR_EQ] = ACTIONS(1575), + [anon_sym_SLASH_EQ] = ACTIONS(1575), + [anon_sym_AMP_EQ] = ACTIONS(1575), + [anon_sym_PIPE_EQ] = ACTIONS(1575), + [anon_sym_CARET_EQ] = ACTIONS(1575), + [anon_sym_PERCENT_EQ] = ACTIONS(1575), + [anon_sym_LT_LT_EQ] = ACTIONS(1575), + [anon_sym_GT_GT_EQ] = ACTIONS(1575), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_QMARK_QMARK] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1575), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [sym_equality_operator] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_EQ] = ACTIONS(1575), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(1577), + [anon_sym_GT_GT_GT] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_SLASH] = ACTIONS(1577), + [anon_sym_PERCENT] = ACTIONS(1577), + [anon_sym_TILDE_SLASH] = ACTIONS(1575), + [sym_increment_operator] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1577), + [anon_sym_is] = ACTIONS(1577), + [anon_sym_as] = ACTIONS(1577), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_QMARK_DOT] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_yield] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_try] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_abstract] = ACTIONS(1577), + [anon_sym_class] = ACTIONS(1577), + [anon_sym_super] = ACTIONS(1577), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_covariant] = ACTIONS(1577), + [anon_sym_Function] = ACTIONS(1577), + [anon_sym_get] = ACTIONS(1577), + [anon_sym_set] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_final] = ACTIONS(1577), + [anon_sym_external] = ACTIONS(1577), + [anon_sym_this] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [348] = { + [ts_builtin_sym_end] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1579), + [sym_decimal_integer_literal] = ACTIONS(1581), + [sym_hex_integer_literal] = ACTIONS(1581), + [sym_octal_integer_literal] = ACTIONS(1579), + [sym_binary_integer_literal] = ACTIONS(1579), + [sym_decimal_floating_point_literal] = ACTIONS(1579), + [sym_hex_floating_point_literal] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1581), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1579), + [anon_sym_r] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_throw] = ACTIONS(1581), + [anon_sym_EQ] = ACTIONS(1581), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_AMP_EQ] = ACTIONS(1579), + [anon_sym_PIPE_EQ] = ACTIONS(1579), + [anon_sym_CARET_EQ] = ACTIONS(1579), + [anon_sym_PERCENT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_QMARK_QMARK] = ACTIONS(1581), + [anon_sym_QMARK] = ACTIONS(1581), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [sym_equality_operator] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_CARET] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_GT_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1581), + [anon_sym_PERCENT] = ACTIONS(1581), + [anon_sym_TILDE_SLASH] = ACTIONS(1579), + [sym_increment_operator] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1581), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_is] = ACTIONS(1581), + [anon_sym_as] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_QMARK_DOT] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_yield] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_AT] = ACTIONS(1579), + [anon_sym_enum] = ACTIONS(1581), + [anon_sym_abstract] = ACTIONS(1581), + [anon_sym_class] = ACTIONS(1581), + [anon_sym_super] = ACTIONS(1581), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_covariant] = ACTIONS(1581), + [anon_sym_Function] = ACTIONS(1581), + [anon_sym_get] = ACTIONS(1581), + [anon_sym_set] = ACTIONS(1581), + [anon_sym_new] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_final] = ACTIONS(1581), + [anon_sym_external] = ACTIONS(1581), + [anon_sym_this] = ACTIONS(1581), + [sym_comment] = ACTIONS(3), + }, + [349] = { + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(1583), + [sym_decimal_integer_literal] = ACTIONS(1585), + [sym_hex_integer_literal] = ACTIONS(1585), + [sym_octal_integer_literal] = ACTIONS(1583), + [sym_binary_integer_literal] = ACTIONS(1583), + [sym_decimal_floating_point_literal] = ACTIONS(1583), + [sym_hex_floating_point_literal] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1583), + [anon_sym_r] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_throw] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1583), + [anon_sym_DASH_EQ] = ACTIONS(1583), + [anon_sym_STAR_EQ] = ACTIONS(1583), + [anon_sym_SLASH_EQ] = ACTIONS(1583), + [anon_sym_AMP_EQ] = ACTIONS(1583), + [anon_sym_PIPE_EQ] = ACTIONS(1583), + [anon_sym_CARET_EQ] = ACTIONS(1583), + [anon_sym_PERCENT_EQ] = ACTIONS(1583), + [anon_sym_LT_LT_EQ] = ACTIONS(1583), + [anon_sym_GT_GT_EQ] = ACTIONS(1583), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1583), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_QMARK_QMARK] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_PIPE_PIPE] = ACTIONS(1583), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [sym_equality_operator] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1585), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_GT_GT_GT] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1585), + [anon_sym_TILDE_SLASH] = ACTIONS(1583), + [sym_increment_operator] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1585), + [anon_sym_await] = ACTIONS(1585), + [anon_sym_is] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_QMARK_DOT] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_AT] = ACTIONS(1583), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_abstract] = ACTIONS(1585), + [anon_sym_class] = ACTIONS(1585), + [anon_sym_super] = ACTIONS(1585), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_covariant] = ACTIONS(1585), + [anon_sym_Function] = ACTIONS(1585), + [anon_sym_get] = ACTIONS(1585), + [anon_sym_set] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_final] = ACTIONS(1585), + [anon_sym_external] = ACTIONS(1585), + [anon_sym_this] = ACTIONS(1585), + [sym_comment] = ACTIONS(3), + }, + [350] = { + [ts_builtin_sym_end] = ACTIONS(1587), + [sym_identifier] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(1587), + [sym_decimal_integer_literal] = ACTIONS(1589), + [sym_hex_integer_literal] = ACTIONS(1589), + [sym_octal_integer_literal] = ACTIONS(1587), + [sym_binary_integer_literal] = ACTIONS(1587), + [sym_decimal_floating_point_literal] = ACTIONS(1587), + [sym_hex_floating_point_literal] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1587), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1587), + [anon_sym_r] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1589), + [anon_sym_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1587), + [anon_sym_DASH_EQ] = ACTIONS(1587), + [anon_sym_STAR_EQ] = ACTIONS(1587), + [anon_sym_SLASH_EQ] = ACTIONS(1587), + [anon_sym_AMP_EQ] = ACTIONS(1587), + [anon_sym_PIPE_EQ] = ACTIONS(1587), + [anon_sym_CARET_EQ] = ACTIONS(1587), + [anon_sym_PERCENT_EQ] = ACTIONS(1587), + [anon_sym_LT_LT_EQ] = ACTIONS(1587), + [anon_sym_GT_GT_EQ] = ACTIONS(1587), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1587), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_QMARK_QMARK] = ACTIONS(1589), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_PIPE_PIPE] = ACTIONS(1587), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [sym_equality_operator] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym_GT] = ACTIONS(1589), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_LT_LT] = ACTIONS(1589), + [anon_sym_GT_GT] = ACTIONS(1589), + [anon_sym_GT_GT_GT] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_SLASH] = ACTIONS(1589), + [anon_sym_PERCENT] = ACTIONS(1589), + [anon_sym_TILDE_SLASH] = ACTIONS(1587), + [sym_increment_operator] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_await] = ACTIONS(1589), + [anon_sym_is] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1589), + [anon_sym_QMARK_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(1587), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_abstract] = ACTIONS(1589), + [anon_sym_class] = ACTIONS(1589), + [anon_sym_super] = ACTIONS(1589), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_covariant] = ACTIONS(1589), + [anon_sym_Function] = ACTIONS(1589), + [anon_sym_get] = ACTIONS(1589), + [anon_sym_set] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_final] = ACTIONS(1589), + [anon_sym_external] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + }, + [351] = { + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(1591), + [sym_decimal_integer_literal] = ACTIONS(1593), + [sym_hex_integer_literal] = ACTIONS(1593), + [sym_octal_integer_literal] = ACTIONS(1591), + [sym_binary_integer_literal] = ACTIONS(1591), + [sym_decimal_floating_point_literal] = ACTIONS(1591), + [sym_hex_floating_point_literal] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1591), + [anon_sym_r] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_COMMA] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_throw] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1591), + [anon_sym_DASH_EQ] = ACTIONS(1591), + [anon_sym_STAR_EQ] = ACTIONS(1591), + [anon_sym_SLASH_EQ] = ACTIONS(1591), + [anon_sym_AMP_EQ] = ACTIONS(1591), + [anon_sym_PIPE_EQ] = ACTIONS(1591), + [anon_sym_CARET_EQ] = ACTIONS(1591), + [anon_sym_PERCENT_EQ] = ACTIONS(1591), + [anon_sym_LT_LT_EQ] = ACTIONS(1591), + [anon_sym_GT_GT_EQ] = ACTIONS(1591), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1591), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_QMARK_QMARK] = ACTIONS(1593), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_PIPE_PIPE] = ACTIONS(1591), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [sym_equality_operator] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1593), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1593), + [anon_sym_CARET] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT_LT] = ACTIONS(1593), + [anon_sym_GT_GT] = ACTIONS(1593), + [anon_sym_GT_GT_GT] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1593), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PERCENT] = ACTIONS(1593), + [anon_sym_TILDE_SLASH] = ACTIONS(1591), + [sym_increment_operator] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1593), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_is] = ACTIONS(1593), + [anon_sym_as] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(1593), + [anon_sym_QMARK_DOT] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1591), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1591), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_abstract] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_super] = ACTIONS(1593), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_covariant] = ACTIONS(1593), + [anon_sym_Function] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_final] = ACTIONS(1593), + [anon_sym_external] = ACTIONS(1593), + [anon_sym_this] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + }, + [352] = { + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(684), + [anon_sym_r] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_null] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(684), + [anon_sym_DASH_EQ] = ACTIONS(684), + [anon_sym_STAR_EQ] = ACTIONS(684), + [anon_sym_SLASH_EQ] = ACTIONS(684), + [anon_sym_AMP_EQ] = ACTIONS(684), + [anon_sym_PIPE_EQ] = ACTIONS(684), + [anon_sym_CARET_EQ] = ACTIONS(684), + [anon_sym_PERCENT_EQ] = ACTIONS(684), + [anon_sym_LT_LT_EQ] = ACTIONS(684), + [anon_sym_GT_GT_EQ] = ACTIONS(684), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(684), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_QMARK_QMARK] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_AMP_AMP] = ACTIONS(684), + [sym_equality_operator] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_GT_GT_GT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_TILDE_SLASH] = ACTIONS(684), + [sym_increment_operator] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_is] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(684), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_super] = ACTIONS(686), + [anon_sym_void] = ACTIONS(686), + [anon_sym_var] = ACTIONS(686), + [anon_sym_covariant] = ACTIONS(686), + [anon_sym_Function] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [anon_sym_new] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_external] = ACTIONS(686), + [anon_sym_this] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + }, + [353] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), [ts_builtin_sym_end] = ACTIONS(584), [sym_identifier] = ACTIONS(586), [anon_sym_POUND] = ACTIONS(584), @@ -46763,498 +49057,133 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(586), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), - [anon_sym_r] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_null] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_await] = ACTIONS(586), - [anon_sym_is] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_super] = ACTIONS(586), - [anon_sym_void] = ACTIONS(586), - [anon_sym_var] = ACTIONS(586), - [anon_sym_covariant] = ACTIONS(586), - [anon_sym_Function] = ACTIONS(586), - [anon_sym_get] = ACTIONS(586), - [anon_sym_set] = ACTIONS(586), - [anon_sym_new] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_external] = ACTIONS(586), - [anon_sym_this] = ACTIONS(586), - [sym_comment] = ACTIONS(3), - }, - [336] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [anon_sym_POUND] = ACTIONS(573), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [anon_sym_true] = ACTIONS(575), - [anon_sym_false] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [anon_sym_SQUOTE] = ACTIONS(575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(573), - [anon_sym_r] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(575), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(575), - [anon_sym_await] = ACTIONS(575), - [anon_sym_is] = ACTIONS(575), - [anon_sym_as] = ACTIONS(575), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_super] = ACTIONS(575), - [anon_sym_void] = ACTIONS(575), - [anon_sym_var] = ACTIONS(575), - [anon_sym_covariant] = ACTIONS(575), - [anon_sym_Function] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), - [anon_sym_new] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_external] = ACTIONS(575), - [anon_sym_this] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - }, - [337] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(565), - [sym_identifier] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(565), - [sym_decimal_integer_literal] = ACTIONS(567), - [sym_hex_integer_literal] = ACTIONS(567), - [sym_octal_integer_literal] = ACTIONS(565), - [sym_binary_integer_literal] = ACTIONS(565), - [sym_decimal_floating_point_literal] = ACTIONS(565), - [sym_hex_floating_point_literal] = ACTIONS(567), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(565), - [anon_sym_r] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_null] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_await] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_DOT_DOT] = ACTIONS(565), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(567), - [anon_sym_do] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_try] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(567), - [anon_sym_class] = ACTIONS(567), - [anon_sym_super] = ACTIONS(567), - [anon_sym_void] = ACTIONS(567), - [anon_sym_var] = ACTIONS(567), - [anon_sym_covariant] = ACTIONS(567), - [anon_sym_Function] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_new] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_final] = ACTIONS(567), - [anon_sym_external] = ACTIONS(567), - [anon_sym_this] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - }, - [338] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_POUND] = ACTIONS(569), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [anon_sym_true] = ACTIONS(571), - [anon_sym_false] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(569), - [anon_sym_r] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_null] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_await] = ACTIONS(571), - [anon_sym_is] = ACTIONS(571), - [anon_sym_as] = ACTIONS(571), - [anon_sym_DOT_DOT] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_super] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_covariant] = ACTIONS(571), - [anon_sym_Function] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [anon_sym_new] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_external] = ACTIONS(571), - [anon_sym_this] = ACTIONS(571), - [sym_comment] = ACTIONS(3), - }, - [339] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [sym_decimal_integer_literal] = ACTIONS(606), - [sym_hex_integer_literal] = ACTIONS(606), - [sym_octal_integer_literal] = ACTIONS(604), - [sym_binary_integer_literal] = ACTIONS(604), - [sym_decimal_floating_point_literal] = ACTIONS(604), - [sym_hex_floating_point_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), - [anon_sym_r] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_null] = ACTIONS(606), - [anon_sym_throw] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_await] = ACTIONS(606), - [anon_sym_is] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(604), - [anon_sym_assert] = ACTIONS(606), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_do] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_try] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(604), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_abstract] = ACTIONS(606), - [anon_sym_class] = ACTIONS(606), - [anon_sym_super] = ACTIONS(606), - [anon_sym_void] = ACTIONS(606), - [anon_sym_var] = ACTIONS(606), - [anon_sym_covariant] = ACTIONS(606), - [anon_sym_Function] = ACTIONS(606), - [anon_sym_get] = ACTIONS(606), - [anon_sym_set] = ACTIONS(606), - [anon_sym_new] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_final] = ACTIONS(606), - [anon_sym_external] = ACTIONS(606), - [anon_sym_this] = ACTIONS(606), + [anon_sym_r] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_null] = ACTIONS(586), + [anon_sym_throw] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(584), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_TILDE] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), + [anon_sym_is] = ACTIONS(586), + [anon_sym_as] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_QMARK_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_do] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_break] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(586), + [anon_sym_abstract] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_super] = ACTIONS(586), + [anon_sym_void] = ACTIONS(586), + [anon_sym_var] = ACTIONS(586), + [anon_sym_covariant] = ACTIONS(586), + [anon_sym_Function] = ACTIONS(586), + [anon_sym_get] = ACTIONS(586), + [anon_sym_set] = ACTIONS(586), + [anon_sym_new] = ACTIONS(586), + [anon_sym_const] = ACTIONS(586), + [anon_sym_final] = ACTIONS(586), + [anon_sym_external] = ACTIONS(586), + [anon_sym_this] = ACTIONS(586), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3468), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3468), - [sym_assignment_expression] = STATE(3468), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_named_argument] = STATE(3260), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_label] = STATE(462), - [sym_identifier] = ACTIONS(1498), + [354] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3526), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3526), + [sym_assignment_expression] = STATE(3526), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(374), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -47282,70 +49211,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), + [anon_sym_SEMI] = ACTIONS(532), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3477), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3477), - [sym_assignment_expression] = STATE(3477), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(355), - [sym_identifier] = ACTIONS(857), + [355] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3484), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3484), + [sym_assignment_expression] = STATE(3484), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(373), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -47373,71 +49305,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(532), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3358), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3358), - [sym_assignment_expression] = STATE(3358), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(1193), - [sym_identifier] = ACTIONS(857), + [356] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3414), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3414), + [sym_assignment_expression] = STATE(3414), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(1242), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -47465,163 +49399,261 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(532), [sym_comment] = ACTIONS(3), }, - [343] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(577), - [sym_identifier] = ACTIONS(579), - [anon_sym_POUND] = ACTIONS(577), - [sym_decimal_integer_literal] = ACTIONS(579), - [sym_hex_integer_literal] = ACTIONS(579), - [sym_octal_integer_literal] = ACTIONS(577), - [sym_binary_integer_literal] = ACTIONS(577), - [sym_decimal_floating_point_literal] = ACTIONS(577), - [sym_hex_floating_point_literal] = ACTIONS(579), - [anon_sym_true] = ACTIONS(579), - [anon_sym_false] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(577), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(577), - [anon_sym_r] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_null] = ACTIONS(579), - [anon_sym_throw] = ACTIONS(579), - [anon_sym_LPAREN] = ACTIONS(577), - [anon_sym_QMARK_QMARK] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(577), - [sym_equality_operator] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), + [357] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(598), + [sym_hex_integer_literal] = ACTIONS(598), + [sym_octal_integer_literal] = ACTIONS(596), + [sym_binary_integer_literal] = ACTIONS(596), + [sym_decimal_floating_point_literal] = ACTIONS(596), + [sym_hex_floating_point_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), + [anon_sym_r] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_null] = ACTIONS(598), + [anon_sym_throw] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_await] = ACTIONS(598), + [anon_sym_is] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(598), + [anon_sym_QMARK_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_do] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_try] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_abstract] = ACTIONS(598), + [anon_sym_class] = ACTIONS(598), + [anon_sym_super] = ACTIONS(598), + [anon_sym_void] = ACTIONS(598), + [anon_sym_var] = ACTIONS(598), + [anon_sym_covariant] = ACTIONS(598), + [anon_sym_Function] = ACTIONS(598), + [anon_sym_get] = ACTIONS(598), + [anon_sym_set] = ACTIONS(598), + [anon_sym_new] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_final] = ACTIONS(598), + [anon_sym_external] = ACTIONS(598), + [anon_sym_this] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [sym_decimal_integer_literal] = ACTIONS(602), + [sym_hex_integer_literal] = ACTIONS(602), + [sym_octal_integer_literal] = ACTIONS(600), + [sym_binary_integer_literal] = ACTIONS(600), + [sym_decimal_floating_point_literal] = ACTIONS(600), + [sym_hex_floating_point_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(600), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(600), + [anon_sym_r] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_null] = ACTIONS(602), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_GT_GT_GT] = ACTIONS(1195), [anon_sym_PLUS] = ACTIONS(556), [anon_sym_DASH] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(560), [anon_sym_SLASH] = ACTIONS(558), [anon_sym_PERCENT] = ACTIONS(560), [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(579), - [anon_sym_await] = ACTIONS(579), - [anon_sym_is] = ACTIONS(579), - [anon_sym_as] = ACTIONS(579), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_assert] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_do] = ACTIONS(579), - [anon_sym_while] = ACTIONS(579), - [anon_sym_break] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(579), - [anon_sym_yield] = ACTIONS(579), - [anon_sym_return] = ACTIONS(579), - [anon_sym_try] = ACTIONS(579), - [anon_sym_if] = ACTIONS(579), - [anon_sym_for] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_abstract] = ACTIONS(579), - [anon_sym_class] = ACTIONS(579), - [anon_sym_super] = ACTIONS(579), - [anon_sym_void] = ACTIONS(579), - [anon_sym_var] = ACTIONS(579), - [anon_sym_covariant] = ACTIONS(579), - [anon_sym_Function] = ACTIONS(579), - [anon_sym_get] = ACTIONS(579), - [anon_sym_set] = ACTIONS(579), - [anon_sym_new] = ACTIONS(579), - [anon_sym_const] = ACTIONS(579), - [anon_sym_final] = ACTIONS(579), - [anon_sym_external] = ACTIONS(579), - [anon_sym_this] = ACTIONS(579), + [sym_increment_operator] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_await] = ACTIONS(602), + [anon_sym_is] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [anon_sym_QMARK_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_assert] = ACTIONS(602), + [anon_sym_switch] = ACTIONS(602), + [anon_sym_do] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_try] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_class] = ACTIONS(602), + [anon_sym_super] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_var] = ACTIONS(602), + [anon_sym_covariant] = ACTIONS(602), + [anon_sym_Function] = ACTIONS(602), + [anon_sym_get] = ACTIONS(602), + [anon_sym_set] = ACTIONS(602), + [anon_sym_new] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_final] = ACTIONS(602), + [anon_sym_external] = ACTIONS(602), + [anon_sym_this] = ACTIONS(602), [sym_comment] = ACTIONS(3), }, - [344] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3416), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3416), - [sym_assignment_expression] = STATE(3416), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(365), - [sym_identifier] = ACTIONS(857), + [359] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3534), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3534), + [sym_assignment_expression] = STATE(3534), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(380), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -47649,24 +49681,400 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [anon_sym_SEMI] = ACTIONS(532), [sym_comment] = ACTIONS(3), }, - [345] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), + [360] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(606), + [sym_hex_integer_literal] = ACTIONS(606), + [sym_octal_integer_literal] = ACTIONS(604), + [sym_binary_integer_literal] = ACTIONS(604), + [sym_decimal_floating_point_literal] = ACTIONS(604), + [sym_hex_floating_point_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), + [anon_sym_r] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_throw] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_await] = ACTIONS(606), + [anon_sym_is] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(606), + [anon_sym_QMARK_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_assert] = ACTIONS(606), + [anon_sym_switch] = ACTIONS(606), + [anon_sym_do] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_try] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_abstract] = ACTIONS(606), + [anon_sym_class] = ACTIONS(606), + [anon_sym_super] = ACTIONS(606), + [anon_sym_void] = ACTIONS(606), + [anon_sym_var] = ACTIONS(606), + [anon_sym_covariant] = ACTIONS(606), + [anon_sym_Function] = ACTIONS(606), + [anon_sym_get] = ACTIONS(606), + [anon_sym_set] = ACTIONS(606), + [anon_sym_new] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_final] = ACTIONS(606), + [anon_sym_external] = ACTIONS(606), + [anon_sym_this] = ACTIONS(606), + [sym_comment] = ACTIONS(3), + }, + [361] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [sym_decimal_integer_literal] = ACTIONS(610), + [sym_hex_integer_literal] = ACTIONS(610), + [sym_octal_integer_literal] = ACTIONS(608), + [sym_binary_integer_literal] = ACTIONS(608), + [sym_decimal_floating_point_literal] = ACTIONS(608), + [sym_hex_floating_point_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(608), + [anon_sym_r] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_null] = ACTIONS(610), + [anon_sym_throw] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_await] = ACTIONS(610), + [anon_sym_is] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(610), + [anon_sym_QMARK_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_assert] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(610), + [anon_sym_do] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_try] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_abstract] = ACTIONS(610), + [anon_sym_class] = ACTIONS(610), + [anon_sym_super] = ACTIONS(610), + [anon_sym_void] = ACTIONS(610), + [anon_sym_var] = ACTIONS(610), + [anon_sym_covariant] = ACTIONS(610), + [anon_sym_Function] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_new] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_final] = ACTIONS(610), + [anon_sym_external] = ACTIONS(610), + [anon_sym_this] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + }, + [362] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(565), + [sym_decimal_integer_literal] = ACTIONS(567), + [sym_hex_integer_literal] = ACTIONS(567), + [sym_octal_integer_literal] = ACTIONS(565), + [sym_binary_integer_literal] = ACTIONS(565), + [sym_decimal_floating_point_literal] = ACTIONS(565), + [sym_hex_floating_point_literal] = ACTIONS(567), + [anon_sym_true] = ACTIONS(567), + [anon_sym_false] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(565), + [anon_sym_r] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_null] = ACTIONS(567), + [anon_sym_throw] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_QMARK_QMARK] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_equality_operator] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_await] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_assert] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(567), + [anon_sym_do] = ACTIONS(567), + [anon_sym_while] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_try] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(567), + [anon_sym_class] = ACTIONS(567), + [anon_sym_super] = ACTIONS(567), + [anon_sym_void] = ACTIONS(567), + [anon_sym_var] = ACTIONS(567), + [anon_sym_covariant] = ACTIONS(567), + [anon_sym_Function] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_new] = ACTIONS(567), + [anon_sym_const] = ACTIONS(567), + [anon_sym_final] = ACTIONS(567), + [anon_sym_external] = ACTIONS(567), + [anon_sym_this] = ACTIONS(567), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(588), + [sym_identifier] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [sym_decimal_integer_literal] = ACTIONS(590), + [sym_hex_integer_literal] = ACTIONS(590), + [sym_octal_integer_literal] = ACTIONS(588), + [sym_binary_integer_literal] = ACTIONS(588), + [sym_decimal_floating_point_literal] = ACTIONS(588), + [sym_hex_floating_point_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_r] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_COMMA] = ACTIONS(588), + [anon_sym_null] = ACTIONS(590), + [anon_sym_throw] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(588), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_await] = ACTIONS(590), + [anon_sym_is] = ACTIONS(590), + [anon_sym_as] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(590), + [anon_sym_QMARK_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_assert] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_try] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_abstract] = ACTIONS(590), + [anon_sym_class] = ACTIONS(590), + [anon_sym_super] = ACTIONS(590), + [anon_sym_void] = ACTIONS(590), + [anon_sym_var] = ACTIONS(590), + [anon_sym_covariant] = ACTIONS(590), + [anon_sym_Function] = ACTIONS(590), + [anon_sym_get] = ACTIONS(590), + [anon_sym_set] = ACTIONS(590), + [anon_sym_new] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_final] = ACTIONS(590), + [anon_sym_external] = ACTIONS(590), + [anon_sym_this] = ACTIONS(590), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), [ts_builtin_sym_end] = ACTIONS(592), [sym_identifier] = ACTIONS(594), [anon_sym_POUND] = ACTIONS(592), @@ -47689,21 +50097,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(594), [anon_sym_throw] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), [anon_sym_LT] = ACTIONS(594), [anon_sym_GT] = ACTIONS(594), [anon_sym_GT_EQ] = ACTIONS(592), [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_GT_GT_GT] = ACTIONS(1195), [anon_sym_PLUS] = ACTIONS(556), [anon_sym_DASH] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(560), @@ -47716,6 +50124,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(594), [anon_sym_is] = ACTIONS(594), [anon_sym_as] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK_DOT] = ACTIONS(592), [anon_sym_DOT_DOT] = ACTIONS(592), [anon_sym_assert] = ACTIONS(594), [anon_sym_switch] = ACTIONS(594), @@ -47746,434 +50156,351 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(594), [sym_comment] = ACTIONS(3), }, - [346] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [sym_decimal_integer_literal] = ACTIONS(610), - [sym_hex_integer_literal] = ACTIONS(610), - [sym_octal_integer_literal] = ACTIONS(608), - [sym_binary_integer_literal] = ACTIONS(608), - [sym_decimal_floating_point_literal] = ACTIONS(608), - [sym_hex_floating_point_literal] = ACTIONS(610), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(608), - [anon_sym_r] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_null] = ACTIONS(610), - [anon_sym_throw] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), + [365] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3397), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3397), + [sym_assignment_expression] = STATE(3397), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym__semicolon] = STATE(370), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [anon_sym_SEMI] = ACTIONS(532), + [sym_comment] = ACTIONS(3), + }, + [366] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(576), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), + [anon_sym_r] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_null] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_GT_GT_GT] = ACTIONS(1195), [anon_sym_PLUS] = ACTIONS(556), [anon_sym_DASH] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(560), [anon_sym_SLASH] = ACTIONS(558), [anon_sym_PERCENT] = ACTIONS(560), [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_await] = ACTIONS(610), - [anon_sym_is] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_assert] = ACTIONS(610), - [anon_sym_switch] = ACTIONS(610), - [anon_sym_do] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_try] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_abstract] = ACTIONS(610), - [anon_sym_class] = ACTIONS(610), - [anon_sym_super] = ACTIONS(610), - [anon_sym_void] = ACTIONS(610), - [anon_sym_var] = ACTIONS(610), - [anon_sym_covariant] = ACTIONS(610), - [anon_sym_Function] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_new] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_final] = ACTIONS(610), - [anon_sym_external] = ACTIONS(610), - [anon_sym_this] = ACTIONS(610), + [sym_increment_operator] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_await] = ACTIONS(578), + [anon_sym_is] = ACTIONS(578), + [anon_sym_as] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_QMARK_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_super] = ACTIONS(578), + [anon_sym_void] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [anon_sym_covariant] = ACTIONS(578), + [anon_sym_Function] = ACTIONS(578), + [anon_sym_get] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [anon_sym_const] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_external] = ACTIONS(578), + [anon_sym_this] = ACTIONS(578), [sym_comment] = ACTIONS(3), }, - [347] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [sym_decimal_integer_literal] = ACTIONS(598), - [sym_hex_integer_literal] = ACTIONS(598), - [sym_octal_integer_literal] = ACTIONS(596), - [sym_binary_integer_literal] = ACTIONS(596), - [sym_decimal_floating_point_literal] = ACTIONS(596), - [sym_hex_floating_point_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), - [anon_sym_r] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_throw] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), + [367] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(572), + [anon_sym_r] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_null] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_GT_GT_GT] = ACTIONS(1195), [anon_sym_PLUS] = ACTIONS(556), [anon_sym_DASH] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(560), [anon_sym_SLASH] = ACTIONS(558), [anon_sym_PERCENT] = ACTIONS(560), [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_await] = ACTIONS(598), - [anon_sym_is] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_switch] = ACTIONS(598), - [anon_sym_do] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_try] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_abstract] = ACTIONS(598), - [anon_sym_class] = ACTIONS(598), - [anon_sym_super] = ACTIONS(598), - [anon_sym_void] = ACTIONS(598), - [anon_sym_var] = ACTIONS(598), - [anon_sym_covariant] = ACTIONS(598), - [anon_sym_Function] = ACTIONS(598), - [anon_sym_get] = ACTIONS(598), - [anon_sym_set] = ACTIONS(598), - [anon_sym_new] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_final] = ACTIONS(598), - [anon_sym_external] = ACTIONS(598), - [anon_sym_this] = ACTIONS(598), - [sym_comment] = ACTIONS(3), - }, - [348] = { - [sym_identifier] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [sym_decimal_integer_literal] = ACTIONS(1180), - [sym_hex_integer_literal] = ACTIONS(1180), - [sym_octal_integer_literal] = ACTIONS(1178), - [sym_binary_integer_literal] = ACTIONS(1178), - [sym_decimal_floating_point_literal] = ACTIONS(1178), - [sym_hex_floating_point_literal] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1178), - [anon_sym_r] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_COLON] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1180), - [anon_sym_throw] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_AMP_EQ] = ACTIONS(1400), - [anon_sym_PIPE_EQ] = ACTIONS(1400), - [anon_sym_CARET_EQ] = ACTIONS(1400), - [anon_sym_PERCENT_EQ] = ACTIONS(1400), - [anon_sym_LT_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_QMARK_QMARK] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [sym_equality_operator] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1402), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_TILDE_SLASH] = ACTIONS(1400), - [sym_increment_operator] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_await] = ACTIONS(1180), - [anon_sym_is] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_QMARK_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_assert] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_try] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_AT] = ACTIONS(1178), - [anon_sym_super] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1180), - [anon_sym_covariant] = ACTIONS(1180), - [anon_sym_Function] = ACTIONS(1180), - [anon_sym_new] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_final] = ACTIONS(1180), - [anon_sym_this] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - }, - [349] = { - [sym_identifier] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [sym_decimal_integer_literal] = ACTIONS(1180), - [sym_hex_integer_literal] = ACTIONS(1180), - [sym_octal_integer_literal] = ACTIONS(1178), - [sym_binary_integer_literal] = ACTIONS(1178), - [sym_decimal_floating_point_literal] = ACTIONS(1178), - [sym_hex_floating_point_literal] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1178), - [anon_sym_r] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_null] = ACTIONS(1180), - [anon_sym_throw] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_AMP_EQ] = ACTIONS(1400), - [anon_sym_PIPE_EQ] = ACTIONS(1400), - [anon_sym_CARET_EQ] = ACTIONS(1400), - [anon_sym_PERCENT_EQ] = ACTIONS(1400), - [anon_sym_LT_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_QMARK_QMARK] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [sym_equality_operator] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1402), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_TILDE_SLASH] = ACTIONS(1400), - [sym_increment_operator] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_await] = ACTIONS(1180), - [anon_sym_is] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_QMARK_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_assert] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_case] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_try] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_AT] = ACTIONS(1178), - [anon_sym_super] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1180), - [anon_sym_covariant] = ACTIONS(1180), - [anon_sym_Function] = ACTIONS(1180), - [anon_sym_new] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_final] = ACTIONS(1180), - [anon_sym_this] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1400), + [sym_increment_operator] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_is] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(574), + [anon_sym_QMARK_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_super] = ACTIONS(574), + [anon_sym_void] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [anon_sym_covariant] = ACTIONS(574), + [anon_sym_Function] = ACTIONS(574), + [anon_sym_get] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_external] = ACTIONS(574), + [anon_sym_this] = ACTIONS(574), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3420), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3420), - [sym_assignment_expression] = STATE(3420), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(358), - [sym_identifier] = ACTIONS(857), + [368] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3567), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3567), + [sym_assignment_expression] = STATE(3567), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_named_argument] = STATE(3139), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_label] = STATE(473), + [sym_identifier] = ACTIONS(1099), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -48201,163 +50528,165 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(532), [sym_comment] = ACTIONS(3), }, - [351] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [sym_decimal_integer_literal] = ACTIONS(602), - [sym_hex_integer_literal] = ACTIONS(602), - [sym_octal_integer_literal] = ACTIONS(600), - [sym_binary_integer_literal] = ACTIONS(600), - [sym_decimal_floating_point_literal] = ACTIONS(600), - [sym_hex_floating_point_literal] = ACTIONS(602), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(600), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(600), - [anon_sym_r] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_null] = ACTIONS(602), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), + [369] = { + [aux_sym__if_null_expression] = STATE(784), + [sym_shift_operator] = STATE(644), + [sym_additive_operator] = STATE(643), + [sym_multiplicative_operator] = STATE(642), + [aux_sym_logical_or_expression_repeat1] = STATE(783), + [aux_sym_logical_and_expression_repeat1] = STATE(782), + [aux_sym_bitwise_or_expression_repeat1] = STATE(781), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(780), + [aux_sym_bitwise_and_expression_repeat1] = STATE(779), + [aux_sym_shift_expression_repeat1] = STATE(760), + [aux_sym_additive_expression_repeat1] = STATE(763), + [aux_sym_multiplicative_expression_repeat1] = STATE(764), + [ts_builtin_sym_end] = ACTIONS(580), + [sym_identifier] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(580), + [sym_decimal_integer_literal] = ACTIONS(582), + [sym_hex_integer_literal] = ACTIONS(582), + [sym_octal_integer_literal] = ACTIONS(580), + [sym_binary_integer_literal] = ACTIONS(580), + [sym_decimal_floating_point_literal] = ACTIONS(580), + [sym_hex_floating_point_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(582), + [anon_sym_false] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(580), + [anon_sym_r] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_null] = ACTIONS(582), + [anon_sym_throw] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(580), + [anon_sym_QMARK_QMARK] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [sym_equality_operator] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1195), [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), + [anon_sym_GT_GT_GT] = ACTIONS(1195), [anon_sym_PLUS] = ACTIONS(556), [anon_sym_DASH] = ACTIONS(556), [anon_sym_STAR] = ACTIONS(560), [anon_sym_SLASH] = ACTIONS(558), [anon_sym_PERCENT] = ACTIONS(560), [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_TILDE] = ACTIONS(602), - [anon_sym_await] = ACTIONS(602), - [anon_sym_is] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_assert] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(602), - [anon_sym_do] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_yield] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_try] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_AT] = ACTIONS(600), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(602), - [anon_sym_class] = ACTIONS(602), - [anon_sym_super] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_var] = ACTIONS(602), - [anon_sym_covariant] = ACTIONS(602), - [anon_sym_Function] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_new] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_final] = ACTIONS(602), - [anon_sym_external] = ACTIONS(602), - [anon_sym_this] = ACTIONS(602), + [sym_increment_operator] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_await] = ACTIONS(582), + [anon_sym_is] = ACTIONS(582), + [anon_sym_as] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_QMARK_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_assert] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(582), + [anon_sym_do] = ACTIONS(582), + [anon_sym_while] = ACTIONS(582), + [anon_sym_break] = ACTIONS(582), + [anon_sym_continue] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_return] = ACTIONS(582), + [anon_sym_try] = ACTIONS(582), + [anon_sym_if] = ACTIONS(582), + [anon_sym_for] = ACTIONS(582), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(582), + [anon_sym_abstract] = ACTIONS(582), + [anon_sym_class] = ACTIONS(582), + [anon_sym_super] = ACTIONS(582), + [anon_sym_void] = ACTIONS(582), + [anon_sym_var] = ACTIONS(582), + [anon_sym_covariant] = ACTIONS(582), + [anon_sym_Function] = ACTIONS(582), + [anon_sym_get] = ACTIONS(582), + [anon_sym_set] = ACTIONS(582), + [anon_sym_new] = ACTIONS(582), + [anon_sym_const] = ACTIONS(582), + [anon_sym_final] = ACTIONS(582), + [anon_sym_external] = ACTIONS(582), + [anon_sym_this] = ACTIONS(582), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3455), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3455), - [sym_assignment_expression] = STATE(3455), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym__semicolon] = STATE(368), - [sym_identifier] = ACTIONS(857), + [370] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3241), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3241), + [sym_assignment_expression] = STATE(3241), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -48377,6 +50706,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1598), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -48385,162 +50715,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(532), [sym_comment] = ACTIONS(3), }, - [353] = { - [aux_sym__if_null_expression] = STATE(866), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(867), - [aux_sym_logical_and_expression_repeat1] = STATE(868), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [sym_decimal_integer_literal] = ACTIONS(590), - [sym_hex_integer_literal] = ACTIONS(590), - [sym_octal_integer_literal] = ACTIONS(588), - [sym_binary_integer_literal] = ACTIONS(588), - [sym_decimal_floating_point_literal] = ACTIONS(588), - [sym_hex_floating_point_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), - [anon_sym_r] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_null] = ACTIONS(590), - [anon_sym_throw] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [sym_equality_operator] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_is] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_switch] = ACTIONS(590), - [anon_sym_do] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_try] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_abstract] = ACTIONS(590), - [anon_sym_class] = ACTIONS(590), - [anon_sym_super] = ACTIONS(590), - [anon_sym_void] = ACTIONS(590), - [anon_sym_var] = ACTIONS(590), - [anon_sym_covariant] = ACTIONS(590), - [anon_sym_Function] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), - [anon_sym_new] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_final] = ACTIONS(590), - [anon_sym_external] = ACTIONS(590), - [anon_sym_this] = ACTIONS(590), + [371] = { + [sym_assignable_selector_part] = STATE(2547), + [sym_selector] = STATE(586), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(853), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(886), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2547), + [aux_sym_assignable_selector_part_repeat1] = STATE(2601), + [aux_sym__postfix_expression_repeat1] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(622), + [sym_hex_integer_literal] = ACTIONS(622), + [sym_octal_integer_literal] = ACTIONS(620), + [sym_binary_integer_literal] = ACTIONS(620), + [sym_decimal_floating_point_literal] = ACTIONS(620), + [sym_hex_floating_point_literal] = ACTIONS(622), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(620), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(620), + [anon_sym_r] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_null] = ACTIONS(622), + [anon_sym_throw] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_QMARK_QMARK] = ACTIONS(620), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_AMP_AMP] = ACTIONS(620), + [sym_equality_operator] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(620), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_TILDE_SLASH] = ACTIONS(620), + [sym_increment_operator] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_is] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1603), + [anon_sym_QMARK_DOT] = ACTIONS(1606), + [anon_sym_DOT_DOT] = ACTIONS(620), + [anon_sym_assert] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(622), + [anon_sym_do] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_try] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_abstract] = ACTIONS(622), + [anon_sym_class] = ACTIONS(622), + [anon_sym_super] = ACTIONS(622), + [anon_sym_void] = ACTIONS(622), + [anon_sym_var] = ACTIONS(622), + [anon_sym_covariant] = ACTIONS(622), + [anon_sym_Function] = ACTIONS(622), + [anon_sym_get] = ACTIONS(622), + [anon_sym_set] = ACTIONS(622), + [anon_sym_new] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_final] = ACTIONS(622), + [anon_sym_external] = ACTIONS(622), + [anon_sym_this] = ACTIONS(622), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3024), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3024), - [sym_assignment_expression] = STATE(3024), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [372] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3410), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3410), + [sym_assignment_expression] = STATE(3410), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -48560,78 +50892,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(1579), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1609), [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3110), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3110), - [sym_assignment_expression] = STATE(3110), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [373] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3353), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3353), + [sym_assignment_expression] = STATE(3353), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -48651,7 +50985,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -48660,251 +50994,350 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_assignable_selector_part] = STATE(362), - [sym_arguments] = STATE(2967), - [sym_argument_part] = STATE(2622), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(755), - [sym_type_arguments] = STATE(3505), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(362), - [aux_sym_assignable_selector_part_repeat1] = STATE(2622), - [ts_builtin_sym_end] = ACTIONS(647), - [sym_identifier] = ACTIONS(645), - [anon_sym_POUND] = ACTIONS(647), - [sym_decimal_integer_literal] = ACTIONS(645), - [sym_hex_integer_literal] = ACTIONS(645), - [sym_octal_integer_literal] = ACTIONS(647), - [sym_binary_integer_literal] = ACTIONS(647), - [sym_decimal_floating_point_literal] = ACTIONS(647), - [sym_hex_floating_point_literal] = ACTIONS(645), - [anon_sym_true] = ACTIONS(645), - [anon_sym_false] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_SQUOTE] = ACTIONS(645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(647), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(647), - [anon_sym_r] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_COMMA] = ACTIONS(647), - [anon_sym_null] = ACTIONS(645), - [anon_sym_throw] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_QMARK] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [sym_equality_operator] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_TILDE_SLASH] = ACTIONS(647), - [sym_increment_operator] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_await] = ACTIONS(645), - [anon_sym_is] = ACTIONS(645), - [anon_sym_as] = ACTIONS(645), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_QMARK_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(647), - [anon_sym_assert] = ACTIONS(645), - [anon_sym_switch] = ACTIONS(645), - [anon_sym_do] = ACTIONS(645), - [anon_sym_while] = ACTIONS(645), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(645), - [anon_sym_return] = ACTIONS(645), - [anon_sym_try] = ACTIONS(645), - [anon_sym_if] = ACTIONS(645), - [anon_sym_for] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_class] = ACTIONS(645), - [anon_sym_super] = ACTIONS(645), - [anon_sym_void] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_covariant] = ACTIONS(645), - [anon_sym_Function] = ACTIONS(645), - [anon_sym_get] = ACTIONS(645), - [anon_sym_set] = ACTIONS(645), - [anon_sym_new] = ACTIONS(645), - [anon_sym_const] = ACTIONS(645), - [anon_sym_final] = ACTIONS(645), - [anon_sym_external] = ACTIONS(645), - [anon_sym_this] = ACTIONS(645), + [374] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3343), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3343), + [sym_assignment_expression] = STATE(3343), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_assignable_selector_part] = STATE(366), - [sym_arguments] = STATE(2967), - [sym_argument_part] = STATE(2622), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(755), - [sym_type_arguments] = STATE(3505), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(366), - [aux_sym_assignable_selector_part_repeat1] = STATE(2622), - [ts_builtin_sym_end] = ACTIONS(707), - [sym_identifier] = ACTIONS(709), - [anon_sym_POUND] = ACTIONS(707), - [sym_decimal_integer_literal] = ACTIONS(709), - [sym_hex_integer_literal] = ACTIONS(709), - [sym_octal_integer_literal] = ACTIONS(707), - [sym_binary_integer_literal] = ACTIONS(707), - [sym_decimal_floating_point_literal] = ACTIONS(707), - [sym_hex_floating_point_literal] = ACTIONS(709), - [anon_sym_true] = ACTIONS(709), - [anon_sym_false] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_SQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(707), - [anon_sym_r] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_COMMA] = ACTIONS(707), - [anon_sym_null] = ACTIONS(709), - [anon_sym_throw] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_QMARK_QMARK] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(707), - [sym_equality_operator] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(709), - [anon_sym_GT_EQ] = ACTIONS(707), - [anon_sym_LT_EQ] = ACTIONS(707), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_GT_GT_GT] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_SLASH] = ACTIONS(709), - [anon_sym_PERCENT] = ACTIONS(707), - [anon_sym_TILDE_SLASH] = ACTIONS(707), - [sym_increment_operator] = ACTIONS(707), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_await] = ACTIONS(709), - [anon_sym_is] = ACTIONS(709), - [anon_sym_as] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_QMARK_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(707), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(709), - [anon_sym_do] = ACTIONS(709), - [anon_sym_while] = ACTIONS(709), - [anon_sym_break] = ACTIONS(709), - [anon_sym_continue] = ACTIONS(709), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_return] = ACTIONS(709), - [anon_sym_try] = ACTIONS(709), - [anon_sym_if] = ACTIONS(709), - [anon_sym_for] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(707), - [anon_sym_enum] = ACTIONS(709), - [anon_sym_abstract] = ACTIONS(709), - [anon_sym_class] = ACTIONS(709), - [anon_sym_super] = ACTIONS(709), - [anon_sym_void] = ACTIONS(709), - [anon_sym_var] = ACTIONS(709), - [anon_sym_covariant] = ACTIONS(709), - [anon_sym_Function] = ACTIONS(709), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(709), - [anon_sym_new] = ACTIONS(709), - [anon_sym_const] = ACTIONS(709), - [anon_sym_final] = ACTIONS(709), - [anon_sym_external] = ACTIONS(709), - [anon_sym_this] = ACTIONS(709), + [375] = { + [sym_assignable_selector_part] = STATE(2555), + [sym_selector] = STATE(583), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(853), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(788), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2555), + [aux_sym_assignable_selector_part_repeat1] = STATE(2601), + [aux_sym__postfix_expression_repeat1] = STATE(583), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_POUND] = ACTIONS(649), + [sym_decimal_integer_literal] = ACTIONS(651), + [sym_hex_integer_literal] = ACTIONS(651), + [sym_octal_integer_literal] = ACTIONS(649), + [sym_binary_integer_literal] = ACTIONS(649), + [sym_decimal_floating_point_literal] = ACTIONS(649), + [sym_hex_floating_point_literal] = ACTIONS(651), + [anon_sym_true] = ACTIONS(651), + [anon_sym_false] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(649), + [anon_sym_r] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_null] = ACTIONS(651), + [anon_sym_throw] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_QMARK_QMARK] = ACTIONS(649), + [anon_sym_QMARK] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [sym_equality_operator] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_GT_GT] = ACTIONS(651), + [anon_sym_GT_GT_GT] = ACTIONS(649), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_TILDE_SLASH] = ACTIONS(649), + [sym_increment_operator] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_await] = ACTIONS(651), + [anon_sym_is] = ACTIONS(651), + [anon_sym_as] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(1624), + [anon_sym_QMARK_DOT] = ACTIONS(1627), + [anon_sym_DOT_DOT] = ACTIONS(649), + [anon_sym_assert] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(651), + [anon_sym_do] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(651), + [anon_sym_return] = ACTIONS(651), + [anon_sym_try] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_enum] = ACTIONS(651), + [anon_sym_abstract] = ACTIONS(651), + [anon_sym_class] = ACTIONS(651), + [anon_sym_super] = ACTIONS(651), + [anon_sym_void] = ACTIONS(651), + [anon_sym_var] = ACTIONS(651), + [anon_sym_covariant] = ACTIONS(651), + [anon_sym_Function] = ACTIONS(651), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(651), + [anon_sym_new] = ACTIONS(651), + [anon_sym_const] = ACTIONS(651), + [anon_sym_final] = ACTIONS(651), + [anon_sym_external] = ACTIONS(651), + [anon_sym_this] = ACTIONS(651), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3250), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3250), - [sym_assignment_expression] = STATE(3250), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [376] = { + [sym_assignable_selector_part] = STATE(2555), + [sym_selector] = STATE(587), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(853), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(788), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2555), + [aux_sym_assignable_selector_part_repeat1] = STATE(2601), + [aux_sym__postfix_expression_repeat1] = STATE(587), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_POUND] = ACTIONS(649), + [sym_decimal_integer_literal] = ACTIONS(651), + [sym_hex_integer_literal] = ACTIONS(651), + [sym_octal_integer_literal] = ACTIONS(649), + [sym_binary_integer_literal] = ACTIONS(649), + [sym_decimal_floating_point_literal] = ACTIONS(649), + [sym_hex_floating_point_literal] = ACTIONS(651), + [anon_sym_true] = ACTIONS(651), + [anon_sym_false] = ACTIONS(651), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(649), + [anon_sym_r] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_null] = ACTIONS(651), + [anon_sym_throw] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_QMARK_QMARK] = ACTIONS(649), + [anon_sym_QMARK] = ACTIONS(651), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(649), + [sym_equality_operator] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_GT_GT] = ACTIONS(651), + [anon_sym_GT_GT_GT] = ACTIONS(649), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_TILDE_SLASH] = ACTIONS(649), + [sym_increment_operator] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_await] = ACTIONS(651), + [anon_sym_is] = ACTIONS(651), + [anon_sym_as] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_QMARK_DOT] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(649), + [anon_sym_assert] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(651), + [anon_sym_do] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(651), + [anon_sym_return] = ACTIONS(651), + [anon_sym_try] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_enum] = ACTIONS(651), + [anon_sym_abstract] = ACTIONS(651), + [anon_sym_class] = ACTIONS(651), + [anon_sym_super] = ACTIONS(651), + [anon_sym_void] = ACTIONS(651), + [anon_sym_var] = ACTIONS(651), + [anon_sym_covariant] = ACTIONS(651), + [anon_sym_Function] = ACTIONS(651), + [anon_sym_get] = ACTIONS(651), + [anon_sym_set] = ACTIONS(651), + [anon_sym_new] = ACTIONS(651), + [anon_sym_const] = ACTIONS(651), + [anon_sym_final] = ACTIONS(651), + [anon_sym_external] = ACTIONS(651), + [anon_sym_this] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + }, + [377] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3038), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3038), + [sym_assignment_expression] = STATE(3038), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -48924,7 +51357,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_QMARK] = ACTIONS(1634), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -48933,69 +51366,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3192), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3192), - [sym_assignment_expression] = STATE(3192), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [378] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3302), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3302), + [sym_assignment_expression] = STATE(3302), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -49015,7 +51450,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1636), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -49024,69 +51459,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3321), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3321), - [sym_assignment_expression] = STATE(3321), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [379] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3249), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3249), + [sym_assignment_expression] = STATE(3249), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -49106,7 +51543,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1638), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -49115,69 +51552,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3124), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3124), - [sym_assignment_expression] = STATE(3124), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [380] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3259), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3259), + [sym_assignment_expression] = STATE(3259), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -49197,7 +51636,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -49206,160 +51645,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_assignable_selector_part] = STATE(366), - [sym_arguments] = STATE(2967), - [sym_argument_part] = STATE(2622), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(755), - [sym_type_arguments] = STATE(3505), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(366), - [aux_sym_assignable_selector_part_repeat1] = STATE(2622), - [ts_builtin_sym_end] = ACTIONS(707), - [sym_identifier] = ACTIONS(709), - [anon_sym_POUND] = ACTIONS(707), - [sym_decimal_integer_literal] = ACTIONS(709), - [sym_hex_integer_literal] = ACTIONS(709), - [sym_octal_integer_literal] = ACTIONS(707), - [sym_binary_integer_literal] = ACTIONS(707), - [sym_decimal_floating_point_literal] = ACTIONS(707), - [sym_hex_floating_point_literal] = ACTIONS(709), - [anon_sym_true] = ACTIONS(709), - [anon_sym_false] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_SQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(707), - [anon_sym_r] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_COMMA] = ACTIONS(707), - [anon_sym_null] = ACTIONS(709), - [anon_sym_throw] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_QMARK_QMARK] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(707), - [sym_equality_operator] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(709), - [anon_sym_GT_EQ] = ACTIONS(707), - [anon_sym_LT_EQ] = ACTIONS(707), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(707), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_GT_GT_GT] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(707), - [anon_sym_SLASH] = ACTIONS(709), - [anon_sym_PERCENT] = ACTIONS(707), - [anon_sym_TILDE_SLASH] = ACTIONS(707), - [sym_increment_operator] = ACTIONS(707), - [anon_sym_BANG] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_await] = ACTIONS(709), - [anon_sym_is] = ACTIONS(709), - [anon_sym_as] = ACTIONS(709), - [anon_sym_DOT] = ACTIONS(1603), - [anon_sym_QMARK_DOT] = ACTIONS(1606), - [anon_sym_DOT_DOT] = ACTIONS(707), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(709), - [anon_sym_do] = ACTIONS(709), - [anon_sym_while] = ACTIONS(709), - [anon_sym_break] = ACTIONS(709), - [anon_sym_continue] = ACTIONS(709), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_return] = ACTIONS(709), - [anon_sym_try] = ACTIONS(709), - [anon_sym_if] = ACTIONS(709), - [anon_sym_for] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(707), - [anon_sym_enum] = ACTIONS(709), - [anon_sym_abstract] = ACTIONS(709), - [anon_sym_class] = ACTIONS(709), - [anon_sym_super] = ACTIONS(709), - [anon_sym_void] = ACTIONS(709), - [anon_sym_var] = ACTIONS(709), - [anon_sym_covariant] = ACTIONS(709), - [anon_sym_Function] = ACTIONS(709), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(709), - [anon_sym_new] = ACTIONS(709), - [anon_sym_const] = ACTIONS(709), - [anon_sym_final] = ACTIONS(709), - [anon_sym_external] = ACTIONS(709), - [anon_sym_this] = ACTIONS(709), + [381] = { + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1325), + [sym_decimal_integer_literal] = ACTIONS(1327), + [sym_hex_integer_literal] = ACTIONS(1327), + [sym_octal_integer_literal] = ACTIONS(1325), + [sym_binary_integer_literal] = ACTIONS(1325), + [sym_decimal_floating_point_literal] = ACTIONS(1325), + [sym_hex_floating_point_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1325), + [anon_sym_r] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_null] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_AMP_EQ] = ACTIONS(1321), + [anon_sym_PIPE_EQ] = ACTIONS(1321), + [anon_sym_CARET_EQ] = ACTIONS(1321), + [anon_sym_PERCENT_EQ] = ACTIONS(1321), + [anon_sym_LT_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_QMARK_QMARK] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [sym_equality_operator] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_LT_LT] = ACTIONS(1323), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_GT_GT_GT] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1323), + [anon_sym_TILDE_SLASH] = ACTIONS(1321), + [sym_increment_operator] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_is] = ACTIONS(1323), + [anon_sym_as] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_QMARK_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_assert] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_super] = ACTIONS(1327), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_covariant] = ACTIONS(1327), + [anon_sym_Function] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_final] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1321), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3356), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3356), - [sym_assignment_expression] = STATE(3356), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [382] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3208), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3208), + [sym_assignment_expression] = STATE(3208), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -49379,78 +51822,358 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1648), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1609), [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [364] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3187), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3187), - [sym_assignment_expression] = STATE(3187), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [383] = { + [sym_assignable_selector_part] = STATE(2547), + [sym_selector] = STATE(584), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(853), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(886), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(2547), + [aux_sym_assignable_selector_part_repeat1] = STATE(2601), + [aux_sym__postfix_expression_repeat1] = STATE(584), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(622), + [sym_hex_integer_literal] = ACTIONS(622), + [sym_octal_integer_literal] = ACTIONS(620), + [sym_binary_integer_literal] = ACTIONS(620), + [sym_decimal_floating_point_literal] = ACTIONS(620), + [sym_hex_floating_point_literal] = ACTIONS(622), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(620), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(620), + [anon_sym_r] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_null] = ACTIONS(622), + [anon_sym_throw] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_QMARK_QMARK] = ACTIONS(620), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_AMP_AMP] = ACTIONS(620), + [sym_equality_operator] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(620), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_GT_GT_GT] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_TILDE_SLASH] = ACTIONS(620), + [sym_increment_operator] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(640), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_is] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_QMARK_DOT] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(620), + [anon_sym_assert] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(622), + [anon_sym_do] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_try] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_abstract] = ACTIONS(622), + [anon_sym_class] = ACTIONS(622), + [anon_sym_super] = ACTIONS(622), + [anon_sym_void] = ACTIONS(622), + [anon_sym_var] = ACTIONS(622), + [anon_sym_covariant] = ACTIONS(622), + [anon_sym_Function] = ACTIONS(622), + [anon_sym_get] = ACTIONS(622), + [anon_sym_set] = ACTIONS(622), + [anon_sym_new] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_final] = ACTIONS(622), + [anon_sym_external] = ACTIONS(622), + [anon_sym_this] = ACTIONS(622), + [sym_comment] = ACTIONS(3), + }, + [384] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3233), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3233), + [sym_assignment_expression] = STATE(3233), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [385] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(580), + [sym_identifier] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(580), + [sym_decimal_integer_literal] = ACTIONS(582), + [sym_hex_integer_literal] = ACTIONS(582), + [sym_octal_integer_literal] = ACTIONS(580), + [sym_binary_integer_literal] = ACTIONS(580), + [sym_decimal_floating_point_literal] = ACTIONS(580), + [sym_hex_floating_point_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(582), + [anon_sym_false] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(580), + [anon_sym_r] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_null] = ACTIONS(582), + [anon_sym_throw] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(580), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_await] = ACTIONS(582), + [anon_sym_is] = ACTIONS(582), + [anon_sym_as] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_assert] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(582), + [anon_sym_do] = ACTIONS(582), + [anon_sym_while] = ACTIONS(582), + [anon_sym_break] = ACTIONS(582), + [anon_sym_continue] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_return] = ACTIONS(582), + [anon_sym_try] = ACTIONS(582), + [anon_sym_if] = ACTIONS(582), + [anon_sym_for] = ACTIONS(582), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(582), + [anon_sym_abstract] = ACTIONS(582), + [anon_sym_class] = ACTIONS(582), + [anon_sym_super] = ACTIONS(582), + [anon_sym_void] = ACTIONS(582), + [anon_sym_var] = ACTIONS(582), + [anon_sym_covariant] = ACTIONS(582), + [anon_sym_Function] = ACTIONS(582), + [anon_sym_get] = ACTIONS(582), + [anon_sym_set] = ACTIONS(582), + [anon_sym_new] = ACTIONS(582), + [anon_sym_const] = ACTIONS(582), + [anon_sym_final] = ACTIONS(582), + [anon_sym_external] = ACTIONS(582), + [anon_sym_this] = ACTIONS(582), + [sym_comment] = ACTIONS(3), + }, + [386] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3567), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3567), + [sym_assignment_expression] = STATE(3567), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -49470,7 +52193,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(33), [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1611), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -49479,76 +52201,538 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3245), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3245), - [sym_assignment_expression] = STATE(3245), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [387] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(2308), + [sym__real_expression] = STATE(1923), + [sym__below_relational_expression] = STATE(2703), + [sym_throw_expression_without_cascade] = STATE(2308), + [sym_assignment_expression_without_cascade] = STATE(2308), + [sym_assignable_expression] = STATE(2528), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1923), + [sym_conditional_expression] = STATE(1923), + [sym_logical_or_expression] = STATE(1923), + [sym_logical_and_expression] = STATE(1923), + [sym_equality_expression] = STATE(1923), + [sym_relational_expression] = STATE(1923), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2353), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [388] = { + [sym__literal] = STATE(1041), + [sym_symbol_literal] = STATE(1041), + [sym_true] = STATE(1041), + [sym_false] = STATE(1041), + [sym_string_literal] = STATE(1041), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1041), + [sym_set_or_map_literal] = STATE(1041), + [sym_null_literal] = STATE(1041), + [sym__expression] = STATE(2185), + [sym__real_expression] = STATE(1507), + [sym__below_relational_expression] = STATE(2693), + [sym_throw_expression] = STATE(2185), + [sym_assignment_expression] = STATE(2185), + [sym_assignable_expression] = STATE(2539), + [sym_function_expression] = STATE(1041), + [sym_if_null_expression] = STATE(1507), + [sym_conditional_expression] = STATE(1507), + [sym_logical_or_expression] = STATE(1507), + [sym_logical_and_expression] = STATE(1507), + [sym_equality_expression] = STATE(1507), + [sym_relational_expression] = STATE(1507), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1041), + [sym_const_object_expression] = STATE(1041), + [sym__primary] = STATE(1041), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1041), + [sym_super] = STATE(2359), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1710), + [sym_hex_integer_literal] = ACTIONS(1710), + [sym_octal_integer_literal] = ACTIONS(1712), + [sym_binary_integer_literal] = ACTIONS(1712), + [sym_decimal_floating_point_literal] = ACTIONS(1712), + [sym_hex_floating_point_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [389] = { + [sym__literal] = STATE(106), + [sym_symbol_literal] = STATE(106), + [sym_true] = STATE(106), + [sym_false] = STATE(106), + [sym_string_literal] = STATE(106), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(106), + [sym_set_or_map_literal] = STATE(106), + [sym_null_literal] = STATE(106), + [sym__expression_without_cascade] = STATE(347), + [sym__real_expression] = STATE(94), + [sym__below_relational_expression] = STATE(2689), + [sym_throw_expression_without_cascade] = STATE(347), + [sym_assignment_expression_without_cascade] = STATE(347), + [sym_assignable_expression] = STATE(2535), + [sym_function_expression] = STATE(106), + [sym_if_null_expression] = STATE(94), + [sym_conditional_expression] = STATE(94), + [sym_logical_or_expression] = STATE(94), + [sym_logical_and_expression] = STATE(94), + [sym_equality_expression] = STATE(94), + [sym_relational_expression] = STATE(94), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(106), + [sym_const_object_expression] = STATE(106), + [sym__primary] = STATE(106), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(106), + [sym_super] = STATE(2314), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1724), + [sym_hex_integer_literal] = ACTIONS(1724), + [sym_octal_integer_literal] = ACTIONS(1726), + [sym_binary_integer_literal] = ACTIONS(1726), + [sym_decimal_floating_point_literal] = ACTIONS(1726), + [sym_hex_floating_point_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [390] = { + [sym__literal] = STATE(1041), + [sym_symbol_literal] = STATE(1041), + [sym_true] = STATE(1041), + [sym_false] = STATE(1041), + [sym_string_literal] = STATE(1041), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1041), + [sym_set_or_map_literal] = STATE(1041), + [sym_null_literal] = STATE(1041), + [sym__expression] = STATE(2132), + [sym__real_expression] = STATE(1507), + [sym__below_relational_expression] = STATE(2693), + [sym_throw_expression] = STATE(2132), + [sym_assignment_expression] = STATE(2132), + [sym_assignable_expression] = STATE(2539), + [sym_function_expression] = STATE(1041), + [sym_if_null_expression] = STATE(1507), + [sym_conditional_expression] = STATE(1507), + [sym_logical_or_expression] = STATE(1507), + [sym_logical_and_expression] = STATE(1507), + [sym_equality_expression] = STATE(1507), + [sym_relational_expression] = STATE(1507), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1041), + [sym_const_object_expression] = STATE(1041), + [sym__primary] = STATE(1041), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1041), + [sym_super] = STATE(2359), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1710), + [sym_hex_integer_literal] = ACTIONS(1710), + [sym_octal_integer_literal] = ACTIONS(1712), + [sym_binary_integer_literal] = ACTIONS(1712), + [sym_decimal_floating_point_literal] = ACTIONS(1712), + [sym_hex_floating_point_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [391] = { + [sym__literal] = STATE(1037), + [sym_symbol_literal] = STATE(1037), + [sym_true] = STATE(1037), + [sym_false] = STATE(1037), + [sym_string_literal] = STATE(1037), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1037), + [sym_set_or_map_literal] = STATE(1037), + [sym_null_literal] = STATE(1037), + [sym__expression] = STATE(1912), + [sym__real_expression] = STATE(1309), + [sym__below_relational_expression] = STATE(2677), + [sym_throw_expression] = STATE(1912), + [sym_assignment_expression] = STATE(1912), + [sym_assignable_expression] = STATE(2519), + [sym_function_expression] = STATE(1037), + [sym_if_null_expression] = STATE(1309), + [sym_conditional_expression] = STATE(1309), + [sym_logical_or_expression] = STATE(1309), + [sym_logical_and_expression] = STATE(1309), + [sym_equality_expression] = STATE(1309), + [sym_relational_expression] = STATE(1309), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1037), + [sym_const_object_expression] = STATE(1037), + [sym__primary] = STATE(1037), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1037), + [sym_super] = STATE(2362), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1762), + [sym_hex_integer_literal] = ACTIONS(1762), + [sym_octal_integer_literal] = ACTIONS(1764), + [sym_binary_integer_literal] = ACTIONS(1764), + [sym_decimal_floating_point_literal] = ACTIONS(1764), + [sym_hex_floating_point_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [392] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression] = STATE(1956), + [sym__real_expression] = STATE(1591), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression] = STATE(1956), + [sym_assignment_expression] = STATE(1956), + [sym_assignable_expression] = STATE(2530), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1591), + [sym_conditional_expression] = STATE(1591), + [sym_logical_or_expression] = STATE(1591), + [sym_logical_and_expression] = STATE(1591), + [sym_equality_expression] = STATE(1591), + [sym_relational_expression] = STATE(1591), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -49559,262 +52743,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1613), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_assignable_selector_part] = STATE(366), - [sym_arguments] = STATE(2967), - [sym_argument_part] = STATE(2622), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(755), - [sym_type_arguments] = STATE(3505), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(366), - [aux_sym_assignable_selector_part_repeat1] = STATE(2622), - [ts_builtin_sym_end] = ACTIONS(688), - [sym_identifier] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(688), - [sym_decimal_integer_literal] = ACTIONS(690), - [sym_hex_integer_literal] = ACTIONS(690), - [sym_octal_integer_literal] = ACTIONS(688), - [sym_binary_integer_literal] = ACTIONS(688), - [sym_decimal_floating_point_literal] = ACTIONS(688), - [sym_hex_floating_point_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(690), - [anon_sym_false] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_DQUOTE] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(690), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(688), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(688), - [anon_sym_r] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_COMMA] = ACTIONS(688), - [anon_sym_null] = ACTIONS(690), - [anon_sym_throw] = ACTIONS(690), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_QMARK_QMARK] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [anon_sym_AMP_AMP] = ACTIONS(688), - [sym_equality_operator] = ACTIONS(688), - [anon_sym_LT] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_GT_EQ] = ACTIONS(688), - [anon_sym_LT_EQ] = ACTIONS(688), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_CARET] = ACTIONS(688), - [anon_sym_AMP] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(688), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_GT_GT_GT] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(688), - [anon_sym_TILDE_SLASH] = ACTIONS(688), - [sym_increment_operator] = ACTIONS(688), - [anon_sym_BANG] = ACTIONS(690), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_await] = ACTIONS(690), - [anon_sym_is] = ACTIONS(690), - [anon_sym_as] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1618), - [anon_sym_QMARK_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(690), - [anon_sym_switch] = ACTIONS(690), - [anon_sym_do] = ACTIONS(690), - [anon_sym_while] = ACTIONS(690), - [anon_sym_break] = ACTIONS(690), - [anon_sym_continue] = ACTIONS(690), - [anon_sym_yield] = ACTIONS(690), - [anon_sym_return] = ACTIONS(690), - [anon_sym_try] = ACTIONS(690), - [anon_sym_if] = ACTIONS(690), - [anon_sym_for] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(688), - [anon_sym_enum] = ACTIONS(690), - [anon_sym_abstract] = ACTIONS(690), - [anon_sym_class] = ACTIONS(690), - [anon_sym_super] = ACTIONS(690), - [anon_sym_void] = ACTIONS(690), - [anon_sym_var] = ACTIONS(690), - [anon_sym_covariant] = ACTIONS(690), - [anon_sym_Function] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), - [anon_sym_new] = ACTIONS(690), - [anon_sym_const] = ACTIONS(690), - [anon_sym_final] = ACTIONS(690), - [anon_sym_external] = ACTIONS(690), - [anon_sym_this] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - }, - [367] = { - [sym_assignable_selector_part] = STATE(357), - [sym_arguments] = STATE(2967), - [sym_argument_part] = STATE(2622), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(755), - [sym_type_arguments] = STATE(3505), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_expression_repeat1] = STATE(357), - [aux_sym_assignable_selector_part_repeat1] = STATE(2622), - [ts_builtin_sym_end] = ACTIONS(647), - [sym_identifier] = ACTIONS(645), - [anon_sym_POUND] = ACTIONS(647), - [sym_decimal_integer_literal] = ACTIONS(645), - [sym_hex_integer_literal] = ACTIONS(645), - [sym_octal_integer_literal] = ACTIONS(647), - [sym_binary_integer_literal] = ACTIONS(647), - [sym_decimal_floating_point_literal] = ACTIONS(647), - [sym_hex_floating_point_literal] = ACTIONS(645), - [anon_sym_true] = ACTIONS(645), - [anon_sym_false] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(647), - [anon_sym_DQUOTE] = ACTIONS(645), - [anon_sym_SQUOTE] = ACTIONS(645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(647), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(647), - [anon_sym_r] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_COMMA] = ACTIONS(647), - [anon_sym_null] = ACTIONS(645), - [anon_sym_throw] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_QMARK_QMARK] = ACTIONS(647), - [anon_sym_QMARK] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_AMP_AMP] = ACTIONS(647), - [sym_equality_operator] = ACTIONS(647), - [anon_sym_LT] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(647), - [anon_sym_LT_EQ] = ACTIONS(647), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(647), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_GT_GT_GT] = ACTIONS(647), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_TILDE_SLASH] = ACTIONS(647), - [sym_increment_operator] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_await] = ACTIONS(645), - [anon_sym_is] = ACTIONS(645), - [anon_sym_as] = ACTIONS(645), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_QMARK_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(647), - [anon_sym_assert] = ACTIONS(645), - [anon_sym_switch] = ACTIONS(645), - [anon_sym_do] = ACTIONS(645), - [anon_sym_while] = ACTIONS(645), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(645), - [anon_sym_yield] = ACTIONS(645), - [anon_sym_return] = ACTIONS(645), - [anon_sym_try] = ACTIONS(645), - [anon_sym_if] = ACTIONS(645), - [anon_sym_for] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_enum] = ACTIONS(645), - [anon_sym_abstract] = ACTIONS(645), - [anon_sym_class] = ACTIONS(645), - [anon_sym_super] = ACTIONS(645), - [anon_sym_void] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_covariant] = ACTIONS(645), - [anon_sym_Function] = ACTIONS(645), - [anon_sym_get] = ACTIONS(645), - [anon_sym_set] = ACTIONS(645), - [anon_sym_new] = ACTIONS(645), - [anon_sym_const] = ACTIONS(645), - [anon_sym_final] = ACTIONS(645), - [anon_sym_external] = ACTIONS(645), - [anon_sym_this] = ACTIONS(645), - [sym_comment] = ACTIONS(3), - }, - [368] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3182), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3182), - [sym_assignment_expression] = STATE(3182), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [393] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3723), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3723), + [sym_assignment_expression_without_cascade] = STATE(3723), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -49832,87 +52835,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(1624), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression] = STATE(1398), - [sym__real_expression] = STATE(969), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1398), - [sym_assignable_expression] = STATE(2479), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(969), - [sym_conditional_expression] = STATE(969), - [sym_logical_or_expression] = STATE(969), - [sym_logical_and_expression] = STATE(969), - [sym_equality_expression] = STATE(969), - [sym_relational_expression] = STATE(969), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [394] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression] = STATE(1910), + [sym__real_expression] = STATE(1591), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression] = STATE(1910), + [sym_assignment_expression] = STATE(1910), + [sym_assignable_expression] = STATE(2530), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1591), + [sym_conditional_expression] = STATE(1591), + [sym_logical_or_expression] = STATE(1591), + [sym_logical_and_expression] = STATE(1591), + [sym_equality_expression] = STATE(1591), + [sym_relational_expression] = STATE(1591), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -49923,176 +52927,180 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1630), + [anon_sym_throw] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym__literal] = STATE(1012), - [sym_symbol_literal] = STATE(1012), - [sym_true] = STATE(1012), - [sym_false] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1012), - [sym_set_or_map_literal] = STATE(1012), - [sym_null_literal] = STATE(1012), - [sym__expression_without_cascade] = STATE(1771), - [sym__real_expression] = STATE(1473), - [sym__below_relational_expression] = STATE(2660), - [sym_throw_expression_without_cascade] = STATE(1771), - [sym_assignment_expression_without_cascade] = STATE(1771), - [sym_assignable_expression] = STATE(2497), - [sym_function_expression] = STATE(1012), - [sym_if_null_expression] = STATE(1473), - [sym_conditional_expression] = STATE(1473), - [sym_logical_or_expression] = STATE(1473), - [sym_logical_and_expression] = STATE(1473), - [sym_equality_expression] = STATE(1473), - [sym_relational_expression] = STATE(1473), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1012), - [sym_const_object_expression] = STATE(1012), - [sym__primary] = STATE(1012), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1012), - [sym_super] = STATE(2319), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1640), - [sym_hex_integer_literal] = ACTIONS(1640), - [sym_octal_integer_literal] = ACTIONS(1642), - [sym_binary_integer_literal] = ACTIONS(1642), - [sym_decimal_floating_point_literal] = ACTIONS(1642), - [sym_hex_floating_point_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [395] = { + [sym__literal] = STATE(1037), + [sym_symbol_literal] = STATE(1037), + [sym_true] = STATE(1037), + [sym_false] = STATE(1037), + [sym_string_literal] = STATE(1037), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1037), + [sym_set_or_map_literal] = STATE(1037), + [sym_null_literal] = STATE(1037), + [sym__expression] = STATE(1830), + [sym__real_expression] = STATE(1309), + [sym__below_relational_expression] = STATE(2677), + [sym_throw_expression] = STATE(1830), + [sym_assignment_expression] = STATE(1830), + [sym_assignable_expression] = STATE(2519), + [sym_function_expression] = STATE(1037), + [sym_if_null_expression] = STATE(1309), + [sym_conditional_expression] = STATE(1309), + [sym_logical_or_expression] = STATE(1309), + [sym_logical_and_expression] = STATE(1309), + [sym_equality_expression] = STATE(1309), + [sym_relational_expression] = STATE(1309), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1037), + [sym_const_object_expression] = STATE(1037), + [sym__primary] = STATE(1037), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1037), + [sym_super] = STATE(2362), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1762), + [sym_hex_integer_literal] = ACTIONS(1762), + [sym_octal_integer_literal] = ACTIONS(1764), + [sym_binary_integer_literal] = ACTIONS(1764), + [sym_decimal_floating_point_literal] = ACTIONS(1764), + [sym_hex_floating_point_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression] = STATE(1744), - [sym__real_expression] = STATE(1278), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_assignable_expression] = STATE(2469), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1278), - [sym_conditional_expression] = STATE(1278), - [sym_logical_or_expression] = STATE(1278), - [sym_logical_and_expression] = STATE(1278), - [sym_equality_expression] = STATE(1278), - [sym_relational_expression] = STATE(1278), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [396] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3479), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3479), + [sym_assignment_expression] = STATE(3479), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -50103,86 +53111,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression] = STATE(1398), - [sym__real_expression] = STATE(1037), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1398), - [sym_assignable_expression] = STATE(2475), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(1037), - [sym_conditional_expression] = STATE(1037), - [sym_logical_or_expression] = STATE(1037), - [sym_logical_and_expression] = STATE(1037), - [sym_equality_expression] = STATE(1037), - [sym_relational_expression] = STATE(1037), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [397] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression_without_cascade] = STATE(1881), + [sym__real_expression] = STATE(1521), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression_without_cascade] = STATE(1881), + [sym_assignment_expression_without_cascade] = STATE(1881), + [sym_assignable_expression] = STATE(2532), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1521), + [sym_conditional_expression] = STATE(1521), + [sym_logical_or_expression] = STATE(1521), + [sym_logical_and_expression] = STATE(1521), + [sym_equality_expression] = STATE(1521), + [sym_relational_expression] = STATE(1521), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -50193,176 +53203,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1688), + [anon_sym_throw] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym__literal] = STATE(110), - [sym_symbol_literal] = STATE(110), - [sym_true] = STATE(110), - [sym_false] = STATE(110), - [sym_string_literal] = STATE(110), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(110), - [sym_set_or_map_literal] = STATE(110), - [sym_null_literal] = STATE(110), - [sym__expression] = STATE(235), - [sym__real_expression] = STATE(90), - [sym__below_relational_expression] = STATE(2654), - [sym_throw_expression] = STATE(235), - [sym_assignment_expression] = STATE(235), - [sym_assignable_expression] = STATE(2483), - [sym_function_expression] = STATE(110), - [sym_if_null_expression] = STATE(90), - [sym_conditional_expression] = STATE(90), - [sym_logical_or_expression] = STATE(90), - [sym_logical_and_expression] = STATE(90), - [sym_equality_expression] = STATE(90), - [sym_relational_expression] = STATE(90), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(110), - [sym_const_object_expression] = STATE(110), - [sym__primary] = STATE(110), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(110), - [sym_super] = STATE(2279), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1694), - [sym_hex_integer_literal] = ACTIONS(1694), - [sym_octal_integer_literal] = ACTIONS(1696), - [sym_binary_integer_literal] = ACTIONS(1696), - [sym_decimal_floating_point_literal] = ACTIONS(1696), - [sym_hex_floating_point_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [374] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3533), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3533), - [sym_assignment_expression_without_cascade] = STATE(3533), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [398] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression_without_cascade] = STATE(1882), + [sym__real_expression] = STATE(1521), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression_without_cascade] = STATE(1882), + [sym_assignment_expression_without_cascade] = STATE(1882), + [sym_assignable_expression] = STATE(2532), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1521), + [sym_conditional_expression] = STATE(1521), + [sym_logical_or_expression] = STATE(1521), + [sym_logical_and_expression] = STATE(1521), + [sym_equality_expression] = STATE(1521), + [sym_relational_expression] = STATE(1521), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -50373,266 +53295,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_selector] = STATE(474), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(760), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(760), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym__postfix_expression_repeat1] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(785), - [sym_decimal_integer_literal] = ACTIONS(787), - [sym_hex_integer_literal] = ACTIONS(787), - [sym_octal_integer_literal] = ACTIONS(785), - [sym_binary_integer_literal] = ACTIONS(785), - [sym_decimal_floating_point_literal] = ACTIONS(785), - [sym_hex_floating_point_literal] = ACTIONS(787), - [anon_sym_true] = ACTIONS(787), - [anon_sym_false] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(785), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), - [anon_sym_r] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [anon_sym_throw] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_QMARK_QMARK] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [sym_equality_operator] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(787), - [anon_sym_GT_GT_GT] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_TILDE_SLASH] = ACTIONS(785), - [sym_increment_operator] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(787), - [anon_sym_await] = ACTIONS(787), - [anon_sym_is] = ACTIONS(787), - [anon_sym_as] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_QMARK_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(785), - [anon_sym_assert] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(787), - [anon_sym_do] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(787), - [anon_sym_yield] = ACTIONS(787), - [anon_sym_return] = ACTIONS(787), - [anon_sym_try] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(787), - [anon_sym_abstract] = ACTIONS(787), - [anon_sym_class] = ACTIONS(787), - [anon_sym_super] = ACTIONS(787), - [anon_sym_void] = ACTIONS(787), - [anon_sym_var] = ACTIONS(787), - [anon_sym_covariant] = ACTIONS(787), - [anon_sym_Function] = ACTIONS(787), - [anon_sym_get] = ACTIONS(787), - [anon_sym_set] = ACTIONS(787), - [anon_sym_new] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_final] = ACTIONS(787), - [anon_sym_external] = ACTIONS(787), - [anon_sym_this] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - }, - [376] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(2259), - [sym__real_expression] = STATE(1579), - [sym__below_relational_expression] = STATE(2634), - [sym_throw_expression_without_cascade] = STATE(2259), - [sym_assignment_expression_without_cascade] = STATE(2259), - [sym_assignable_expression] = STATE(2490), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1579), - [sym_conditional_expression] = STATE(1579), - [sym_logical_or_expression] = STATE(1579), - [sym_logical_and_expression] = STATE(1579), - [sym_equality_expression] = STATE(1579), - [sym_relational_expression] = STATE(1579), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2301), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [377] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3666), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3666), - [sym_assignment_expression_without_cascade] = STATE(3666), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [399] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression_without_cascade] = STATE(1888), + [sym__real_expression] = STATE(1521), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression_without_cascade] = STATE(1888), + [sym_assignment_expression_without_cascade] = STATE(1888), + [sym_assignable_expression] = STATE(2532), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1521), + [sym_conditional_expression] = STATE(1521), + [sym_logical_or_expression] = STATE(1521), + [sym_logical_and_expression] = STATE(1521), + [sym_equality_expression] = STATE(1521), + [sym_relational_expression] = STATE(1521), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -50643,79 +53387,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3679), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3679), - [sym_assignment_expression_without_cascade] = STATE(3679), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [400] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(1453), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -50733,169 +53479,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression] = STATE(1095), - [sym__real_expression] = STATE(554), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression] = STATE(1095), - [sym_assignment_expression] = STATE(1095), - [sym_assignable_expression] = STATE(2485), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(554), - [sym_conditional_expression] = STATE(554), - [sym_logical_or_expression] = STATE(554), - [sym_logical_and_expression] = STATE(554), - [sym_equality_expression] = STATE(554), - [sym_relational_expression] = STATE(554), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [380] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3517), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3517), - [sym_assignment_expression] = STATE(3517), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [401] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3618), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3618), + [sym_assignment_expression_without_cascade] = STATE(3618), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -50913,86 +53571,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression_without_cascade] = STATE(2141), - [sym__real_expression] = STATE(1526), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression_without_cascade] = STATE(2141), - [sym_assignment_expression_without_cascade] = STATE(2141), - [sym_assignable_expression] = STATE(2495), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1526), - [sym_conditional_expression] = STATE(1526), - [sym_logical_or_expression] = STATE(1526), - [sym_logical_and_expression] = STATE(1526), - [sym_equality_expression] = STATE(1526), - [sym_relational_expression] = STATE(1526), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [402] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression] = STATE(2056), + [sym__real_expression] = STATE(1634), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression] = STATE(2056), + [sym_assignment_expression] = STATE(2056), + [sym_assignable_expression] = STATE(2545), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1634), + [sym_conditional_expression] = STATE(1634), + [sym_logical_or_expression] = STATE(1634), + [sym_logical_and_expression] = STATE(1634), + [sym_equality_expression] = STATE(1634), + [sym_relational_expression] = STATE(1634), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -51003,86 +53663,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_throw] = ACTIONS(1794), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3575), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3575), - [sym_assignment_expression_without_cascade] = STATE(3575), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [403] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression_without_cascade] = STATE(1415), + [sym__real_expression] = STATE(1011), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression_without_cascade] = STATE(1415), + [sym_assignment_expression_without_cascade] = STATE(1415), + [sym_assignable_expression] = STATE(2542), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1011), + [sym_conditional_expression] = STATE(1011), + [sym_logical_or_expression] = STATE(1011), + [sym_logical_and_expression] = STATE(1011), + [sym_equality_expression] = STATE(1011), + [sym_relational_expression] = STATE(1011), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -51093,79 +53755,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2256), - [sym__real_expression] = STATE(1592), - [sym__below_relational_expression] = STATE(2663), - [sym_throw_expression_without_cascade] = STATE(2256), - [sym_assignment_expression_without_cascade] = STATE(2256), - [sym_assignable_expression] = STATE(2489), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1592), - [sym_conditional_expression] = STATE(1592), - [sym_logical_or_expression] = STATE(1592), - [sym_logical_and_expression] = STATE(1592), - [sym_equality_expression] = STATE(1592), - [sym_relational_expression] = STATE(1592), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2289), - [sym_identifier] = ACTIONS(857), + [404] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3583), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3583), + [sym_assignment_expression] = STATE(3583), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -51183,7 +53847,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), @@ -51193,69 +53857,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2240), - [sym__real_expression] = STATE(1592), - [sym__below_relational_expression] = STATE(2663), - [sym_throw_expression_without_cascade] = STATE(2240), - [sym_assignment_expression_without_cascade] = STATE(2240), - [sym_assignable_expression] = STATE(2489), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1592), - [sym_conditional_expression] = STATE(1592), - [sym_logical_or_expression] = STATE(1592), - [sym_logical_and_expression] = STATE(1592), - [sym_equality_expression] = STATE(1592), - [sym_relational_expression] = STATE(1592), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2289), - [sym_identifier] = ACTIONS(857), + [405] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3613), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3613), + [sym_assignment_expression] = STATE(3613), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -51273,7 +53939,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), @@ -51283,69 +53949,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2256), - [sym__real_expression] = STATE(1931), - [sym__below_relational_expression] = STATE(2638), - [sym_throw_expression_without_cascade] = STATE(2256), - [sym_assignment_expression_without_cascade] = STATE(2256), - [sym_assignable_expression] = STATE(2499), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1931), - [sym_conditional_expression] = STATE(1931), - [sym_logical_or_expression] = STATE(1931), - [sym_logical_and_expression] = STATE(1931), - [sym_equality_expression] = STATE(1931), - [sym_relational_expression] = STATE(1931), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2286), - [sym_identifier] = ACTIONS(857), + [406] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3626), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3626), + [sym_assignment_expression] = STATE(3626), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -51363,79 +54031,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1779), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3771), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3771), - [sym_assignment_expression_without_cascade] = STATE(3771), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [407] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3632), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3632), + [sym_assignment_expression] = STATE(3632), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -51453,86 +54123,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3548), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3548), - [sym_assignment_expression_without_cascade] = STATE(3548), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [408] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression] = STATE(1757), + [sym__real_expression] = STATE(1313), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression] = STATE(1757), + [sym_assignment_expression] = STATE(1757), + [sym_assignable_expression] = STATE(2526), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1313), + [sym_conditional_expression] = STATE(1313), + [sym_logical_or_expression] = STATE(1313), + [sym_logical_and_expression] = STATE(1313), + [sym_equality_expression] = STATE(1313), + [sym_relational_expression] = STATE(1313), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -51543,349 +54215,1001 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3530), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3530), - [sym_assignment_expression] = STATE(3530), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), + [409] = { + [sym__literal] = STATE(1041), + [sym_symbol_literal] = STATE(1041), + [sym_true] = STATE(1041), + [sym_false] = STATE(1041), + [sym_string_literal] = STATE(1041), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1041), + [sym_set_or_map_literal] = STATE(1041), + [sym_null_literal] = STATE(1041), + [sym__expression_without_cascade] = STATE(2049), + [sym__real_expression] = STATE(1557), + [sym__below_relational_expression] = STATE(2693), + [sym_throw_expression_without_cascade] = STATE(2049), + [sym_assignment_expression_without_cascade] = STATE(2049), + [sym_assignable_expression] = STATE(2524), + [sym_function_expression] = STATE(1041), + [sym_if_null_expression] = STATE(1557), + [sym_conditional_expression] = STATE(1557), + [sym_logical_or_expression] = STATE(1557), + [sym_logical_and_expression] = STATE(1557), + [sym_equality_expression] = STATE(1557), + [sym_relational_expression] = STATE(1557), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1041), + [sym_const_object_expression] = STATE(1041), + [sym__primary] = STATE(1041), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1041), + [sym_super] = STATE(2359), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1710), + [sym_hex_integer_literal] = ACTIONS(1710), + [sym_octal_integer_literal] = ACTIONS(1712), + [sym_binary_integer_literal] = ACTIONS(1712), + [sym_decimal_floating_point_literal] = ACTIONS(1712), + [sym_hex_floating_point_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [410] = { + [sym__literal] = STATE(1041), + [sym_symbol_literal] = STATE(1041), + [sym_true] = STATE(1041), + [sym_false] = STATE(1041), + [sym_string_literal] = STATE(1041), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1041), + [sym_set_or_map_literal] = STATE(1041), + [sym_null_literal] = STATE(1041), + [sym__expression_without_cascade] = STATE(2137), + [sym__real_expression] = STATE(1557), + [sym__below_relational_expression] = STATE(2693), + [sym_throw_expression_without_cascade] = STATE(2137), + [sym_assignment_expression_without_cascade] = STATE(2137), + [sym_assignable_expression] = STATE(2524), + [sym_function_expression] = STATE(1041), + [sym_if_null_expression] = STATE(1557), + [sym_conditional_expression] = STATE(1557), + [sym_logical_or_expression] = STATE(1557), + [sym_logical_and_expression] = STATE(1557), + [sym_equality_expression] = STATE(1557), + [sym_relational_expression] = STATE(1557), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1041), + [sym_const_object_expression] = STATE(1041), + [sym__primary] = STATE(1041), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1041), + [sym_super] = STATE(2359), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1710), + [sym_hex_integer_literal] = ACTIONS(1710), + [sym_octal_integer_literal] = ACTIONS(1712), + [sym_binary_integer_literal] = ACTIONS(1712), + [sym_decimal_floating_point_literal] = ACTIONS(1712), + [sym_hex_floating_point_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [411] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(1802), + [sym__real_expression] = STATE(1923), + [sym__below_relational_expression] = STATE(2703), + [sym_throw_expression_without_cascade] = STATE(1802), + [sym_assignment_expression_without_cascade] = STATE(1802), + [sym_assignable_expression] = STATE(2520), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1923), + [sym_conditional_expression] = STATE(1923), + [sym_logical_or_expression] = STATE(1923), + [sym_logical_and_expression] = STATE(1923), + [sym_equality_expression] = STATE(1923), + [sym_relational_expression] = STATE(1923), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2353), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [412] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(945), + [sym__real_expression] = STATE(385), + [sym__below_relational_expression] = STATE(2704), + [sym_throw_expression_without_cascade] = STATE(945), + [sym_assignment_expression_without_cascade] = STATE(945), + [sym_assignable_expression] = STATE(2533), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(385), + [sym_conditional_expression] = STATE(385), + [sym_logical_or_expression] = STATE(385), + [sym_logical_and_expression] = STATE(385), + [sym_equality_expression] = STATE(385), + [sym_relational_expression] = STATE(385), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2355), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1750), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_selector] = STATE(474), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(760), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(760), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym__postfix_expression_repeat1] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(741), - [sym_identifier] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(741), - [sym_decimal_integer_literal] = ACTIONS(743), - [sym_hex_integer_literal] = ACTIONS(743), - [sym_octal_integer_literal] = ACTIONS(741), - [sym_binary_integer_literal] = ACTIONS(741), - [sym_decimal_floating_point_literal] = ACTIONS(741), - [sym_hex_floating_point_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(743), - [anon_sym_false] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(741), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(741), - [anon_sym_r] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_null] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_QMARK_QMARK] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [sym_equality_operator] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(743), - [anon_sym_GT_GT_GT] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_TILDE_SLASH] = ACTIONS(741), - [sym_increment_operator] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_await] = ACTIONS(743), - [anon_sym_is] = ACTIONS(743), - [anon_sym_as] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_QMARK_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_assert] = ACTIONS(743), - [anon_sym_switch] = ACTIONS(743), - [anon_sym_do] = ACTIONS(743), - [anon_sym_while] = ACTIONS(743), - [anon_sym_break] = ACTIONS(743), - [anon_sym_continue] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(743), - [anon_sym_return] = ACTIONS(743), - [anon_sym_try] = ACTIONS(743), - [anon_sym_if] = ACTIONS(743), - [anon_sym_for] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(743), - [anon_sym_abstract] = ACTIONS(743), - [anon_sym_class] = ACTIONS(743), - [anon_sym_super] = ACTIONS(743), - [anon_sym_void] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_covariant] = ACTIONS(743), - [anon_sym_Function] = ACTIONS(743), - [anon_sym_get] = ACTIONS(743), - [anon_sym_set] = ACTIONS(743), - [anon_sym_new] = ACTIONS(743), - [anon_sym_const] = ACTIONS(743), - [anon_sym_final] = ACTIONS(743), - [anon_sym_external] = ACTIONS(743), - [anon_sym_this] = ACTIONS(743), + [413] = { + [sym__literal] = STATE(106), + [sym_symbol_literal] = STATE(106), + [sym_true] = STATE(106), + [sym_false] = STATE(106), + [sym_string_literal] = STATE(106), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(106), + [sym_set_or_map_literal] = STATE(106), + [sym_null_literal] = STATE(106), + [sym__expression_without_cascade] = STATE(318), + [sym__real_expression] = STATE(94), + [sym__below_relational_expression] = STATE(2689), + [sym_throw_expression_without_cascade] = STATE(318), + [sym_assignment_expression_without_cascade] = STATE(318), + [sym_assignable_expression] = STATE(2535), + [sym_function_expression] = STATE(106), + [sym_if_null_expression] = STATE(94), + [sym_conditional_expression] = STATE(94), + [sym_logical_or_expression] = STATE(94), + [sym_logical_and_expression] = STATE(94), + [sym_equality_expression] = STATE(94), + [sym_relational_expression] = STATE(94), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(106), + [sym_const_object_expression] = STATE(106), + [sym__primary] = STATE(106), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(106), + [sym_super] = STATE(2314), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1724), + [sym_hex_integer_literal] = ACTIONS(1724), + [sym_octal_integer_literal] = ACTIONS(1726), + [sym_binary_integer_literal] = ACTIONS(1726), + [sym_decimal_floating_point_literal] = ACTIONS(1726), + [sym_hex_floating_point_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [414] = { + [sym__literal] = STATE(1037), + [sym_symbol_literal] = STATE(1037), + [sym_true] = STATE(1037), + [sym_false] = STATE(1037), + [sym_string_literal] = STATE(1037), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1037), + [sym_set_or_map_literal] = STATE(1037), + [sym_null_literal] = STATE(1037), + [sym__expression] = STATE(1795), + [sym__real_expression] = STATE(1309), + [sym__below_relational_expression] = STATE(2677), + [sym_throw_expression] = STATE(1795), + [sym_assignment_expression] = STATE(1795), + [sym_assignable_expression] = STATE(2519), + [sym_function_expression] = STATE(1037), + [sym_if_null_expression] = STATE(1309), + [sym_conditional_expression] = STATE(1309), + [sym_logical_or_expression] = STATE(1309), + [sym_logical_and_expression] = STATE(1309), + [sym_equality_expression] = STATE(1309), + [sym_relational_expression] = STATE(1309), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1037), + [sym_const_object_expression] = STATE(1037), + [sym__primary] = STATE(1037), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1037), + [sym_super] = STATE(2362), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1762), + [sym_hex_integer_literal] = ACTIONS(1762), + [sym_octal_integer_literal] = ACTIONS(1764), + [sym_binary_integer_literal] = ACTIONS(1764), + [sym_decimal_floating_point_literal] = ACTIONS(1764), + [sym_hex_floating_point_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [415] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(584), + [sym_decimal_integer_literal] = ACTIONS(586), + [sym_hex_integer_literal] = ACTIONS(586), + [sym_octal_integer_literal] = ACTIONS(584), + [sym_binary_integer_literal] = ACTIONS(584), + [sym_decimal_floating_point_literal] = ACTIONS(584), + [sym_hex_floating_point_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(586), + [anon_sym_false] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_r] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_COMMA] = ACTIONS(584), + [anon_sym_null] = ACTIONS(586), + [anon_sym_throw] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(584), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_TILDE] = ACTIONS(586), + [anon_sym_await] = ACTIONS(586), + [anon_sym_is] = ACTIONS(586), + [anon_sym_as] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_assert] = ACTIONS(586), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_do] = ACTIONS(586), + [anon_sym_while] = ACTIONS(586), + [anon_sym_break] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(586), + [anon_sym_abstract] = ACTIONS(586), + [anon_sym_class] = ACTIONS(586), + [anon_sym_super] = ACTIONS(586), + [anon_sym_void] = ACTIONS(586), + [anon_sym_var] = ACTIONS(586), + [anon_sym_covariant] = ACTIONS(586), + [anon_sym_Function] = ACTIONS(586), + [anon_sym_get] = ACTIONS(586), + [anon_sym_set] = ACTIONS(586), + [anon_sym_new] = ACTIONS(586), + [anon_sym_const] = ACTIONS(586), + [anon_sym_final] = ACTIONS(586), + [anon_sym_external] = ACTIONS(586), + [anon_sym_this] = ACTIONS(586), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3563), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3563), - [sym_assignment_expression_without_cascade] = STATE(3563), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(37), + [416] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(942), + [sym__real_expression] = STATE(385), + [sym__below_relational_expression] = STATE(2704), + [sym_throw_expression_without_cascade] = STATE(942), + [sym_assignment_expression_without_cascade] = STATE(942), + [sym_assignable_expression] = STATE(2533), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(385), + [sym_conditional_expression] = STATE(385), + [sym_logical_or_expression] = STATE(385), + [sym_logical_and_expression] = STATE(385), + [sym_equality_expression] = STATE(385), + [sym_relational_expression] = STATE(385), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2355), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1750), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3718), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3718), - [sym_assignment_expression] = STATE(3718), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [417] = { + [sym__literal] = STATE(1037), + [sym_symbol_literal] = STATE(1037), + [sym_true] = STATE(1037), + [sym_false] = STATE(1037), + [sym_string_literal] = STATE(1037), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1037), + [sym_set_or_map_literal] = STATE(1037), + [sym_null_literal] = STATE(1037), + [sym__expression] = STATE(1776), + [sym__real_expression] = STATE(1309), + [sym__below_relational_expression] = STATE(2677), + [sym_throw_expression] = STATE(1776), + [sym_assignment_expression] = STATE(1776), + [sym_assignable_expression] = STATE(2519), + [sym_function_expression] = STATE(1037), + [sym_if_null_expression] = STATE(1309), + [sym_conditional_expression] = STATE(1309), + [sym_logical_or_expression] = STATE(1309), + [sym_logical_and_expression] = STATE(1309), + [sym_equality_expression] = STATE(1309), + [sym_relational_expression] = STATE(1309), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1037), + [sym_const_object_expression] = STATE(1037), + [sym__primary] = STATE(1037), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1037), + [sym_super] = STATE(2362), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1762), + [sym_hex_integer_literal] = ACTIONS(1762), + [sym_octal_integer_literal] = ACTIONS(1764), + [sym_binary_integer_literal] = ACTIONS(1764), + [sym_decimal_floating_point_literal] = ACTIONS(1764), + [sym_hex_floating_point_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [418] = { + [sym__literal] = STATE(103), + [sym_symbol_literal] = STATE(103), + [sym_true] = STATE(103), + [sym_false] = STATE(103), + [sym_string_literal] = STATE(103), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(103), + [sym_set_or_map_literal] = STATE(103), + [sym_null_literal] = STATE(103), + [sym__expression] = STATE(803), + [sym__real_expression] = STATE(249), + [sym__below_relational_expression] = STATE(2692), + [sym_throw_expression] = STATE(803), + [sym_assignment_expression] = STATE(803), + [sym_assignable_expression] = STATE(2514), + [sym_function_expression] = STATE(103), + [sym_if_null_expression] = STATE(249), + [sym_conditional_expression] = STATE(249), + [sym_logical_or_expression] = STATE(249), + [sym_logical_and_expression] = STATE(249), + [sym_equality_expression] = STATE(249), + [sym_relational_expression] = STATE(249), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(103), + [sym_const_object_expression] = STATE(103), + [sym__primary] = STATE(103), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(103), + [sym_super] = STATE(2330), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1826), + [sym_hex_integer_literal] = ACTIONS(1826), + [sym_octal_integer_literal] = ACTIONS(1828), + [sym_binary_integer_literal] = ACTIONS(1828), + [sym_decimal_floating_point_literal] = ACTIONS(1828), + [sym_hex_floating_point_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [419] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3380), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3380), + [sym_assignment_expression] = STATE(3380), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -51913,76 +55237,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3808), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3808), - [sym_assignment_expression] = STATE(3808), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [420] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression] = STATE(2107), + [sym__real_expression] = STATE(1634), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression] = STATE(2107), + [sym_assignment_expression] = STATE(2107), + [sym_assignable_expression] = STATE(2545), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1634), + [sym_conditional_expression] = STATE(1634), + [sym_logical_or_expression] = STATE(1634), + [sym_logical_and_expression] = STATE(1634), + [sym_equality_expression] = STATE(1634), + [sym_relational_expression] = STATE(1634), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -51993,86 +55319,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1794), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3805), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3805), - [sym_assignment_expression_without_cascade] = STATE(3805), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [421] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression] = STATE(2097), + [sym__real_expression] = STATE(1634), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression] = STATE(2097), + [sym_assignment_expression] = STATE(2097), + [sym_assignable_expression] = STATE(2545), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1634), + [sym_conditional_expression] = STATE(1634), + [sym_logical_or_expression] = STATE(1634), + [sym_logical_and_expression] = STATE(1634), + [sym_equality_expression] = STATE(1634), + [sym_relational_expression] = STATE(1634), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -52083,86 +55411,456 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1794), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression] = STATE(1396), - [sym__real_expression] = STATE(1037), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1396), - [sym_assignable_expression] = STATE(2475), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(1037), - [sym_conditional_expression] = STATE(1037), - [sym_logical_or_expression] = STATE(1037), - [sym_logical_and_expression] = STATE(1037), - [sym_equality_expression] = STATE(1037), - [sym_relational_expression] = STATE(1037), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [422] = { + [sym__literal] = STATE(103), + [sym_symbol_literal] = STATE(103), + [sym_true] = STATE(103), + [sym_false] = STATE(103), + [sym_string_literal] = STATE(103), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(103), + [sym_set_or_map_literal] = STATE(103), + [sym_null_literal] = STATE(103), + [sym__expression] = STATE(868), + [sym__real_expression] = STATE(249), + [sym__below_relational_expression] = STATE(2692), + [sym_throw_expression] = STATE(868), + [sym_assignment_expression] = STATE(868), + [sym_assignable_expression] = STATE(2514), + [sym_function_expression] = STATE(103), + [sym_if_null_expression] = STATE(249), + [sym_conditional_expression] = STATE(249), + [sym_logical_or_expression] = STATE(249), + [sym_logical_and_expression] = STATE(249), + [sym_equality_expression] = STATE(249), + [sym_relational_expression] = STATE(249), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(103), + [sym_const_object_expression] = STATE(103), + [sym__primary] = STATE(103), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(103), + [sym_super] = STATE(2330), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1826), + [sym_hex_integer_literal] = ACTIONS(1826), + [sym_octal_integer_literal] = ACTIONS(1828), + [sym_binary_integer_literal] = ACTIONS(1828), + [sym_decimal_floating_point_literal] = ACTIONS(1828), + [sym_hex_floating_point_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [423] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(572), + [anon_sym_r] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_null] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_is] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_super] = ACTIONS(574), + [anon_sym_void] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [anon_sym_covariant] = ACTIONS(574), + [anon_sym_Function] = ACTIONS(574), + [anon_sym_get] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_external] = ACTIONS(574), + [anon_sym_this] = ACTIONS(574), + [sym_comment] = ACTIONS(3), + }, + [424] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(576), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), + [anon_sym_r] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_null] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_await] = ACTIONS(578), + [anon_sym_is] = ACTIONS(578), + [anon_sym_as] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_super] = ACTIONS(578), + [anon_sym_void] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [anon_sym_covariant] = ACTIONS(578), + [anon_sym_Function] = ACTIONS(578), + [anon_sym_get] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [anon_sym_const] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_external] = ACTIONS(578), + [anon_sym_this] = ACTIONS(578), + [sym_comment] = ACTIONS(3), + }, + [425] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(565), + [sym_decimal_integer_literal] = ACTIONS(567), + [sym_hex_integer_literal] = ACTIONS(567), + [sym_octal_integer_literal] = ACTIONS(565), + [sym_binary_integer_literal] = ACTIONS(565), + [sym_decimal_floating_point_literal] = ACTIONS(565), + [sym_hex_floating_point_literal] = ACTIONS(567), + [anon_sym_true] = ACTIONS(567), + [anon_sym_false] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(565), + [anon_sym_r] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_null] = ACTIONS(567), + [anon_sym_throw] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_QMARK_QMARK] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_equality_operator] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_await] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_assert] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(567), + [anon_sym_do] = ACTIONS(567), + [anon_sym_while] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_try] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(567), + [anon_sym_class] = ACTIONS(567), + [anon_sym_super] = ACTIONS(567), + [anon_sym_void] = ACTIONS(567), + [anon_sym_var] = ACTIONS(567), + [anon_sym_covariant] = ACTIONS(567), + [anon_sym_Function] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_new] = ACTIONS(567), + [anon_sym_const] = ACTIONS(567), + [anon_sym_final] = ACTIONS(567), + [anon_sym_external] = ACTIONS(567), + [anon_sym_this] = ACTIONS(567), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression_without_cascade] = STATE(1951), + [sym__real_expression] = STATE(1521), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression_without_cascade] = STATE(1951), + [sym_assignment_expression_without_cascade] = STATE(1951), + [sym_assignable_expression] = STATE(2532), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1521), + [sym_conditional_expression] = STATE(1521), + [sym_logical_or_expression] = STATE(1521), + [sym_logical_and_expression] = STATE(1521), + [sym_equality_expression] = STATE(1521), + [sym_relational_expression] = STATE(1521), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -52173,86 +55871,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1688), + [anon_sym_throw] = ACTIONS(1788), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3584), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3584), - [sym_assignment_expression] = STATE(3584), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [427] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression_without_cascade] = STATE(2086), + [sym__real_expression] = STATE(1569), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression_without_cascade] = STATE(2086), + [sym_assignment_expression_without_cascade] = STATE(2086), + [sym_assignable_expression] = STATE(2540), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1569), + [sym_conditional_expression] = STATE(1569), + [sym_logical_or_expression] = STATE(1569), + [sym_logical_and_expression] = STATE(1569), + [sym_equality_expression] = STATE(1569), + [sym_relational_expression] = STATE(1569), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -52263,86 +55963,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2263), - [sym__real_expression] = STATE(1592), - [sym__below_relational_expression] = STATE(2663), - [sym_throw_expression_without_cascade] = STATE(2263), - [sym_assignment_expression_without_cascade] = STATE(2263), - [sym_assignable_expression] = STATE(2489), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1592), - [sym_conditional_expression] = STATE(1592), - [sym_logical_or_expression] = STATE(1592), - [sym_logical_and_expression] = STATE(1592), - [sym_equality_expression] = STATE(1592), - [sym_relational_expression] = STATE(1592), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2289), - [sym_identifier] = ACTIONS(857), + [428] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression_without_cascade] = STATE(2084), + [sym__real_expression] = STATE(1569), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression_without_cascade] = STATE(2084), + [sym_assignment_expression_without_cascade] = STATE(2084), + [sym_assignable_expression] = STATE(2540), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1569), + [sym_conditional_expression] = STATE(1569), + [sym_logical_or_expression] = STATE(1569), + [sym_logical_and_expression] = STATE(1569), + [sym_equality_expression] = STATE(1569), + [sym_relational_expression] = STATE(1569), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -52353,86 +56055,272 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3382), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3382), - [sym_assignment_expression] = STATE(3382), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [429] = { + [sym__literal] = STATE(1046), + [sym_symbol_literal] = STATE(1046), + [sym_true] = STATE(1046), + [sym_false] = STATE(1046), + [sym_string_literal] = STATE(1046), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1046), + [sym_set_or_map_literal] = STATE(1046), + [sym_null_literal] = STATE(1046), + [sym__expression_without_cascade] = STATE(1365), + [sym__real_expression] = STATE(1007), + [sym__below_relational_expression] = STATE(2695), + [sym_throw_expression_without_cascade] = STATE(1365), + [sym_assignment_expression_without_cascade] = STATE(1365), + [sym_assignable_expression] = STATE(2518), + [sym_function_expression] = STATE(1046), + [sym_if_null_expression] = STATE(1007), + [sym_conditional_expression] = STATE(1007), + [sym_logical_or_expression] = STATE(1007), + [sym_logical_and_expression] = STATE(1007), + [sym_equality_expression] = STATE(1007), + [sym_relational_expression] = STATE(1007), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1046), + [sym_const_object_expression] = STATE(1046), + [sym__primary] = STATE(1046), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1046), + [sym_super] = STATE(2344), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1841), + [sym_hex_integer_literal] = ACTIONS(1841), + [sym_octal_integer_literal] = ACTIONS(1843), + [sym_binary_integer_literal] = ACTIONS(1843), + [sym_decimal_floating_point_literal] = ACTIONS(1843), + [sym_hex_floating_point_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [430] = { + [sym__literal] = STATE(1046), + [sym_symbol_literal] = STATE(1046), + [sym_true] = STATE(1046), + [sym_false] = STATE(1046), + [sym_string_literal] = STATE(1046), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1046), + [sym_set_or_map_literal] = STATE(1046), + [sym_null_literal] = STATE(1046), + [sym__expression_without_cascade] = STATE(1361), + [sym__real_expression] = STATE(1007), + [sym__below_relational_expression] = STATE(2695), + [sym_throw_expression_without_cascade] = STATE(1361), + [sym_assignment_expression_without_cascade] = STATE(1361), + [sym_assignable_expression] = STATE(2518), + [sym_function_expression] = STATE(1046), + [sym_if_null_expression] = STATE(1007), + [sym_conditional_expression] = STATE(1007), + [sym_logical_or_expression] = STATE(1007), + [sym_logical_and_expression] = STATE(1007), + [sym_equality_expression] = STATE(1007), + [sym_relational_expression] = STATE(1007), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1046), + [sym_const_object_expression] = STATE(1046), + [sym__primary] = STATE(1046), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1046), + [sym_super] = STATE(2344), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1841), + [sym_hex_integer_literal] = ACTIONS(1841), + [sym_octal_integer_literal] = ACTIONS(1843), + [sym_binary_integer_literal] = ACTIONS(1843), + [sym_decimal_floating_point_literal] = ACTIONS(1843), + [sym_hex_floating_point_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [431] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression_without_cascade] = STATE(2074), + [sym__real_expression] = STATE(1569), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression_without_cascade] = STATE(2074), + [sym_assignment_expression_without_cascade] = STATE(2074), + [sym_assignable_expression] = STATE(2540), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1569), + [sym_conditional_expression] = STATE(1569), + [sym_logical_or_expression] = STATE(1569), + [sym_logical_and_expression] = STATE(1569), + [sym_equality_expression] = STATE(1569), + [sym_relational_expression] = STATE(1569), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -52443,79 +56331,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2240), - [sym__real_expression] = STATE(1931), - [sym__below_relational_expression] = STATE(2638), - [sym_throw_expression_without_cascade] = STATE(2240), - [sym_assignment_expression_without_cascade] = STATE(2240), - [sym_assignable_expression] = STATE(2499), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1931), - [sym_conditional_expression] = STATE(1931), - [sym_logical_or_expression] = STATE(1931), - [sym_logical_and_expression] = STATE(1931), - [sym_equality_expression] = STATE(1931), - [sym_relational_expression] = STATE(1931), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2286), - [sym_identifier] = ACTIONS(857), + [432] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3638), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3638), + [sym_assignment_expression] = STATE(3638), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -52533,79 +56423,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1779), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [399] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3506), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3506), - [sym_assignment_expression] = STATE(3506), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [433] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3653), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3653), + [sym_assignment_expression] = STATE(3653), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -52633,339 +56525,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [400] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression] = STATE(1455), - [sym__real_expression] = STATE(1037), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression] = STATE(1455), - [sym_assignment_expression] = STATE(1455), - [sym_assignable_expression] = STATE(2475), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(1037), - [sym_conditional_expression] = STATE(1037), - [sym_logical_or_expression] = STATE(1037), - [sym_logical_and_expression] = STATE(1037), - [sym_equality_expression] = STATE(1037), - [sym_relational_expression] = STATE(1037), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [401] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression] = STATE(1086), - [sym__real_expression] = STATE(554), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression] = STATE(1086), - [sym_assignment_expression] = STATE(1086), - [sym_assignable_expression] = STATE(2485), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(554), - [sym_conditional_expression] = STATE(554), - [sym_logical_or_expression] = STATE(554), - [sym_logical_and_expression] = STATE(554), - [sym_equality_expression] = STATE(554), - [sym_relational_expression] = STATE(554), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [402] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression] = STATE(2098), - [sym__real_expression] = STATE(1482), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2098), - [sym_assignable_expression] = STATE(2478), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1482), - [sym_conditional_expression] = STATE(1482), - [sym_logical_or_expression] = STATE(1482), - [sym_logical_and_expression] = STATE(1482), - [sym_equality_expression] = STATE(1482), - [sym_relational_expression] = STATE(1482), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [403] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3604), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3604), - [sym_assignment_expression] = STATE(3604), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [434] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3675), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3675), + [sym_assignment_expression] = STATE(3675), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -52993,69 +56617,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3758), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3758), - [sym_assignment_expression] = STATE(3758), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [435] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3705), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3705), + [sym_assignment_expression] = STATE(3705), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -53083,76 +56709,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3476), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3476), - [sym_assignment_expression] = STATE(3476), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [436] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression] = STATE(1892), + [sym__real_expression] = STATE(1313), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression] = STATE(1892), + [sym_assignment_expression] = STATE(1892), + [sym_assignable_expression] = STATE(2526), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1313), + [sym_conditional_expression] = STATE(1313), + [sym_logical_or_expression] = STATE(1313), + [sym_logical_and_expression] = STATE(1313), + [sym_equality_expression] = STATE(1313), + [sym_relational_expression] = STATE(1313), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -53163,79 +56791,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3454), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3454), - [sym_assignment_expression] = STATE(3454), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [437] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3764), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3764), + [sym_assignment_expression] = STATE(3764), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -53263,69 +56893,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [407] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3623), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3623), - [sym_assignment_expression] = STATE(3623), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [438] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3767), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3767), + [sym_assignment_expression_without_cascade] = STATE(3767), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -53343,86 +56975,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [408] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3757), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3757), - [sym_assignment_expression_without_cascade] = STATE(3757), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [439] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression_without_cascade] = STATE(1486), + [sym__real_expression] = STATE(1011), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression_without_cascade] = STATE(1486), + [sym_assignment_expression_without_cascade] = STATE(1486), + [sym_assignable_expression] = STATE(2542), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1011), + [sym_conditional_expression] = STATE(1011), + [sym_logical_or_expression] = STATE(1011), + [sym_logical_and_expression] = STATE(1011), + [sym_equality_expression] = STATE(1011), + [sym_relational_expression] = STATE(1011), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -53433,79 +57067,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3607), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3607), - [sym_assignment_expression] = STATE(3607), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [440] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3814), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3814), + [sym_assignment_expression] = STATE(3814), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -53533,69 +57169,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3624), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3624), - [sym_assignment_expression] = STATE(3624), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [441] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3817), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3817), + [sym_assignment_expression_without_cascade] = STATE(3817), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -53613,79 +57251,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3453), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3453), - [sym_assignment_expression] = STATE(3453), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [442] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3857), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3857), + [sym_assignment_expression] = STATE(3857), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -53713,69 +57353,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2263), - [sym__real_expression] = STATE(1931), - [sym__below_relational_expression] = STATE(2638), - [sym_throw_expression_without_cascade] = STATE(2263), - [sym_assignment_expression_without_cascade] = STATE(2263), - [sym_assignable_expression] = STATE(2499), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1931), - [sym_conditional_expression] = STATE(1931), - [sym_logical_or_expression] = STATE(1931), - [sym_logical_and_expression] = STATE(1931), - [sym_equality_expression] = STATE(1931), - [sym_relational_expression] = STATE(1931), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2286), - [sym_identifier] = ACTIONS(857), + [443] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2297), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(2297), + [sym_assignment_expression_without_cascade] = STATE(2297), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -53793,86 +57435,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1779), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3383), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3383), - [sym_assignment_expression] = STATE(3383), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [444] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression] = STATE(2145), + [sym__real_expression] = STATE(1499), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2145), + [sym_assignable_expression] = STATE(2529), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1499), + [sym_conditional_expression] = STATE(1499), + [sym_logical_or_expression] = STATE(1499), + [sym_logical_and_expression] = STATE(1499), + [sym_equality_expression] = STATE(1499), + [sym_relational_expression] = STATE(1499), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -53883,79 +57527,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3547), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3547), - [sym_assignment_expression] = STATE(3547), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [445] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3714), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3714), + [sym_assignment_expression] = STATE(3714), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -53979,163 +57625,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [415] = { - [sym__literal] = STATE(110), - [sym_symbol_literal] = STATE(110), - [sym_true] = STATE(110), - [sym_false] = STATE(110), - [sym_string_literal] = STATE(110), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(110), - [sym_set_or_map_literal] = STATE(110), - [sym_null_literal] = STATE(110), - [sym__expression] = STATE(271), - [sym__real_expression] = STATE(90), - [sym__below_relational_expression] = STATE(2654), - [sym_throw_expression] = STATE(271), - [sym_assignment_expression] = STATE(271), - [sym_assignable_expression] = STATE(2483), - [sym_function_expression] = STATE(110), - [sym_if_null_expression] = STATE(90), - [sym_conditional_expression] = STATE(90), - [sym_logical_or_expression] = STATE(90), - [sym_logical_and_expression] = STATE(90), - [sym_equality_expression] = STATE(90), - [sym_relational_expression] = STATE(90), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(110), - [sym_const_object_expression] = STATE(110), - [sym__primary] = STATE(110), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(110), - [sym_super] = STATE(2279), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1694), - [sym_hex_integer_literal] = ACTIONS(1694), - [sym_octal_integer_literal] = ACTIONS(1696), - [sym_binary_integer_literal] = ACTIONS(1696), - [sym_decimal_floating_point_literal] = ACTIONS(1696), - [sym_hex_floating_point_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [416] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3532), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3532), - [sym_assignment_expression] = STATE(3532), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [446] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(1109), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(1109), + [sym_assignment_expression] = STATE(1109), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -54163,76 +57721,722 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression] = STATE(1421), - [sym__real_expression] = STATE(969), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression] = STATE(1421), - [sym_assignment_expression] = STATE(1421), - [sym_assignable_expression] = STATE(2479), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(969), - [sym_conditional_expression] = STATE(969), - [sym_logical_or_expression] = STATE(969), - [sym_logical_and_expression] = STATE(969), - [sym_equality_expression] = STATE(969), - [sym_relational_expression] = STATE(969), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), + [447] = { + [sym__literal] = STATE(106), + [sym_symbol_literal] = STATE(106), + [sym_true] = STATE(106), + [sym_false] = STATE(106), + [sym_string_literal] = STATE(106), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(106), + [sym_set_or_map_literal] = STATE(106), + [sym_null_literal] = STATE(106), + [sym__expression_without_cascade] = STATE(350), + [sym__real_expression] = STATE(94), + [sym__below_relational_expression] = STATE(2689), + [sym_throw_expression_without_cascade] = STATE(350), + [sym_assignment_expression_without_cascade] = STATE(350), + [sym_assignable_expression] = STATE(2535), + [sym_function_expression] = STATE(106), + [sym_if_null_expression] = STATE(94), + [sym_conditional_expression] = STATE(94), + [sym_logical_or_expression] = STATE(94), + [sym_logical_and_expression] = STATE(94), + [sym_equality_expression] = STATE(94), + [sym_relational_expression] = STATE(94), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(106), + [sym_const_object_expression] = STATE(106), + [sym__primary] = STATE(106), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(106), + [sym_super] = STATE(2314), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1724), + [sym_hex_integer_literal] = ACTIONS(1724), + [sym_octal_integer_literal] = ACTIONS(1726), + [sym_binary_integer_literal] = ACTIONS(1726), + [sym_decimal_floating_point_literal] = ACTIONS(1726), + [sym_hex_floating_point_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [448] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(1110), + [sym__real_expression] = STATE(747), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression_without_cascade] = STATE(1110), + [sym_assignment_expression_without_cascade] = STATE(1110), + [sym_assignable_expression] = STATE(2543), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(747), + [sym_conditional_expression] = STATE(747), + [sym_logical_or_expression] = STATE(747), + [sym_logical_and_expression] = STATE(747), + [sym_equality_expression] = STATE(747), + [sym_relational_expression] = STATE(747), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), + [sym_negation_operator] = STATE(3008), [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [449] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(936), + [sym__real_expression] = STATE(385), + [sym__below_relational_expression] = STATE(2704), + [sym_throw_expression_without_cascade] = STATE(936), + [sym_assignment_expression_without_cascade] = STATE(936), + [sym_assignable_expression] = STATE(2533), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(385), + [sym_conditional_expression] = STATE(385), + [sym_logical_or_expression] = STATE(385), + [sym_logical_and_expression] = STATE(385), + [sym_equality_expression] = STATE(385), + [sym_relational_expression] = STATE(385), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2355), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [450] = { + [sym__literal] = STATE(103), + [sym_symbol_literal] = STATE(103), + [sym_true] = STATE(103), + [sym_false] = STATE(103), + [sym_string_literal] = STATE(103), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(103), + [sym_set_or_map_literal] = STATE(103), + [sym_null_literal] = STATE(103), + [sym__expression] = STATE(884), + [sym__real_expression] = STATE(249), + [sym__below_relational_expression] = STATE(2692), + [sym_throw_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_assignable_expression] = STATE(2514), + [sym_function_expression] = STATE(103), + [sym_if_null_expression] = STATE(249), + [sym_conditional_expression] = STATE(249), + [sym_logical_or_expression] = STATE(249), + [sym_logical_and_expression] = STATE(249), + [sym_equality_expression] = STATE(249), + [sym_relational_expression] = STATE(249), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(103), + [sym_const_object_expression] = STATE(103), + [sym__primary] = STATE(103), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(103), + [sym_super] = STATE(2330), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1826), + [sym_hex_integer_literal] = ACTIONS(1826), + [sym_octal_integer_literal] = ACTIONS(1828), + [sym_binary_integer_literal] = ACTIONS(1828), + [sym_decimal_floating_point_literal] = ACTIONS(1828), + [sym_hex_floating_point_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [451] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(1113), + [sym__real_expression] = STATE(747), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression_without_cascade] = STATE(1113), + [sym_assignment_expression_without_cascade] = STATE(1113), + [sym_assignable_expression] = STATE(2543), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(747), + [sym_conditional_expression] = STATE(747), + [sym_logical_or_expression] = STATE(747), + [sym_logical_and_expression] = STATE(747), + [sym_equality_expression] = STATE(747), + [sym_relational_expression] = STATE(747), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [452] = { + [sym__literal] = STATE(103), + [sym_symbol_literal] = STATE(103), + [sym_true] = STATE(103), + [sym_false] = STATE(103), + [sym_string_literal] = STATE(103), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(103), + [sym_set_or_map_literal] = STATE(103), + [sym_null_literal] = STATE(103), + [sym__expression] = STATE(866), + [sym__real_expression] = STATE(249), + [sym__below_relational_expression] = STATE(2692), + [sym_throw_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_assignable_expression] = STATE(2514), + [sym_function_expression] = STATE(103), + [sym_if_null_expression] = STATE(249), + [sym_conditional_expression] = STATE(249), + [sym_logical_or_expression] = STATE(249), + [sym_logical_and_expression] = STATE(249), + [sym_equality_expression] = STATE(249), + [sym_relational_expression] = STATE(249), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(103), + [sym_const_object_expression] = STATE(103), + [sym__primary] = STATE(103), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(103), + [sym_super] = STATE(2330), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1826), + [sym_hex_integer_literal] = ACTIONS(1826), + [sym_octal_integer_literal] = ACTIONS(1828), + [sym_binary_integer_literal] = ACTIONS(1828), + [sym_decimal_floating_point_literal] = ACTIONS(1828), + [sym_hex_floating_point_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [453] = { + [sym__literal] = STATE(106), + [sym_symbol_literal] = STATE(106), + [sym_true] = STATE(106), + [sym_false] = STATE(106), + [sym_string_literal] = STATE(106), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(106), + [sym_set_or_map_literal] = STATE(106), + [sym_null_literal] = STATE(106), + [sym__expression] = STATE(337), + [sym__real_expression] = STATE(90), + [sym__below_relational_expression] = STATE(2689), + [sym_throw_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_assignable_expression] = STATE(2521), + [sym_function_expression] = STATE(106), + [sym_if_null_expression] = STATE(90), + [sym_conditional_expression] = STATE(90), + [sym_logical_or_expression] = STATE(90), + [sym_logical_and_expression] = STATE(90), + [sym_equality_expression] = STATE(90), + [sym_relational_expression] = STATE(90), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(106), + [sym_const_object_expression] = STATE(106), + [sym__primary] = STATE(106), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(106), + [sym_super] = STATE(2314), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1724), + [sym_hex_integer_literal] = ACTIONS(1724), + [sym_octal_integer_literal] = ACTIONS(1726), + [sym_binary_integer_literal] = ACTIONS(1726), + [sym_decimal_floating_point_literal] = ACTIONS(1726), + [sym_hex_floating_point_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [454] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression] = STATE(1956), + [sym__real_expression] = STATE(1313), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression] = STATE(1956), + [sym_assignment_expression] = STATE(1956), + [sym_assignable_expression] = STATE(2526), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1313), + [sym_conditional_expression] = STATE(1313), + [sym_logical_or_expression] = STATE(1313), + [sym_logical_and_expression] = STATE(1313), + [sym_equality_expression] = STATE(1313), + [sym_relational_expression] = STATE(1313), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -54243,86 +58447,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1630), + [anon_sym_throw] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3522), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3522), - [sym_assignment_expression] = STATE(3522), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [455] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression] = STATE(1910), + [sym__real_expression] = STATE(1313), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression] = STATE(1910), + [sym_assignment_expression] = STATE(1910), + [sym_assignable_expression] = STATE(2526), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1313), + [sym_conditional_expression] = STATE(1313), + [sym_logical_or_expression] = STATE(1313), + [sym_logical_and_expression] = STATE(1313), + [sym_equality_expression] = STATE(1313), + [sym_relational_expression] = STATE(1313), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -54333,86 +58539,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1810), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3555), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3555), - [sym_assignment_expression] = STATE(3555), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [456] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression] = STATE(1448), + [sym__real_expression] = STATE(1069), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression] = STATE(1448), + [sym_assignment_expression] = STATE(1448), + [sym_assignable_expression] = STATE(2536), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_logical_or_expression] = STATE(1069), + [sym_logical_and_expression] = STATE(1069), + [sym_equality_expression] = STATE(1069), + [sym_relational_expression] = STATE(1069), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -54423,79 +58631,265 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2240), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(2240), - [sym_assignment_expression_without_cascade] = STATE(2240), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [457] = { + [sym__literal] = STATE(106), + [sym_symbol_literal] = STATE(106), + [sym_true] = STATE(106), + [sym_false] = STATE(106), + [sym_string_literal] = STATE(106), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(106), + [sym_set_or_map_literal] = STATE(106), + [sym_null_literal] = STATE(106), + [sym__expression] = STATE(253), + [sym__real_expression] = STATE(90), + [sym__below_relational_expression] = STATE(2689), + [sym_throw_expression] = STATE(253), + [sym_assignment_expression] = STATE(253), + [sym_assignable_expression] = STATE(2521), + [sym_function_expression] = STATE(106), + [sym_if_null_expression] = STATE(90), + [sym_conditional_expression] = STATE(90), + [sym_logical_or_expression] = STATE(90), + [sym_logical_and_expression] = STATE(90), + [sym_equality_expression] = STATE(90), + [sym_relational_expression] = STATE(90), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(106), + [sym_const_object_expression] = STATE(106), + [sym__primary] = STATE(106), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(106), + [sym_super] = STATE(2314), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1724), + [sym_hex_integer_literal] = ACTIONS(1724), + [sym_octal_integer_literal] = ACTIONS(1726), + [sym_binary_integer_literal] = ACTIONS(1726), + [sym_decimal_floating_point_literal] = ACTIONS(1726), + [sym_hex_floating_point_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [sym__literal] = STATE(103), + [sym_symbol_literal] = STATE(103), + [sym_true] = STATE(103), + [sym_false] = STATE(103), + [sym_string_literal] = STATE(103), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(103), + [sym_set_or_map_literal] = STATE(103), + [sym_null_literal] = STATE(103), + [sym__expression_without_cascade] = STATE(827), + [sym__real_expression] = STATE(369), + [sym__below_relational_expression] = STATE(2692), + [sym_throw_expression_without_cascade] = STATE(827), + [sym_assignment_expression_without_cascade] = STATE(827), + [sym_assignable_expression] = STATE(2546), + [sym_function_expression] = STATE(103), + [sym_if_null_expression] = STATE(369), + [sym_conditional_expression] = STATE(369), + [sym_logical_or_expression] = STATE(369), + [sym_logical_and_expression] = STATE(369), + [sym_equality_expression] = STATE(369), + [sym_relational_expression] = STATE(369), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(103), + [sym_const_object_expression] = STATE(103), + [sym__primary] = STATE(103), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(103), + [sym_super] = STATE(2330), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1826), + [sym_hex_integer_literal] = ACTIONS(1826), + [sym_octal_integer_literal] = ACTIONS(1828), + [sym_binary_integer_literal] = ACTIONS(1828), + [sym_decimal_floating_point_literal] = ACTIONS(1828), + [sym_hex_floating_point_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [459] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3704), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3704), + [sym_assignment_expression_without_cascade] = STATE(3704), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -54513,176 +58907,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(933), - [sym__real_expression] = STATE(558), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression_without_cascade] = STATE(933), - [sym_assignment_expression_without_cascade] = STATE(933), - [sym_assignable_expression] = STATE(2470), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(558), - [sym_conditional_expression] = STATE(558), - [sym_logical_or_expression] = STATE(558), - [sym_logical_and_expression] = STATE(558), - [sym_equality_expression] = STATE(558), - [sym_relational_expression] = STATE(558), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [422] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2256), - [sym__real_expression] = STATE(1886), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression_without_cascade] = STATE(2256), - [sym_assignment_expression_without_cascade] = STATE(2256), - [sym_assignable_expression] = STATE(2472), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1886), - [sym_conditional_expression] = STATE(1886), - [sym_logical_or_expression] = STATE(1886), - [sym_logical_and_expression] = STATE(1886), - [sym_equality_expression] = STATE(1886), - [sym_relational_expression] = STATE(1886), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [460] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression_without_cascade] = STATE(1488), + [sym__real_expression] = STATE(1011), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression_without_cascade] = STATE(1488), + [sym_assignment_expression_without_cascade] = STATE(1488), + [sym_assignable_expression] = STATE(2542), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1011), + [sym_conditional_expression] = STATE(1011), + [sym_logical_or_expression] = STATE(1011), + [sym_logical_and_expression] = STATE(1011), + [sym_equality_expression] = STATE(1011), + [sym_relational_expression] = STATE(1011), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -54693,86 +58999,180 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1794), + [anon_sym_throw] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3684), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3684), - [sym_assignment_expression] = STATE(3684), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [461] = { + [sym__literal] = STATE(1037), + [sym_symbol_literal] = STATE(1037), + [sym_true] = STATE(1037), + [sym_false] = STATE(1037), + [sym_string_literal] = STATE(1037), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1037), + [sym_set_or_map_literal] = STATE(1037), + [sym_null_literal] = STATE(1037), + [sym__expression_without_cascade] = STATE(1834), + [sym__real_expression] = STATE(1509), + [sym__below_relational_expression] = STATE(2677), + [sym_throw_expression_without_cascade] = STATE(1834), + [sym_assignment_expression_without_cascade] = STATE(1834), + [sym_assignable_expression] = STATE(2516), + [sym_function_expression] = STATE(1037), + [sym_if_null_expression] = STATE(1509), + [sym_conditional_expression] = STATE(1509), + [sym_logical_or_expression] = STATE(1509), + [sym_logical_and_expression] = STATE(1509), + [sym_equality_expression] = STATE(1509), + [sym_relational_expression] = STATE(1509), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1037), + [sym_const_object_expression] = STATE(1037), + [sym__primary] = STATE(1037), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1037), + [sym_super] = STATE(2362), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1762), + [sym_hex_integer_literal] = ACTIONS(1762), + [sym_octal_integer_literal] = ACTIONS(1764), + [sym_binary_integer_literal] = ACTIONS(1764), + [sym_decimal_floating_point_literal] = ACTIONS(1764), + [sym_hex_floating_point_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [462] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression] = STATE(1453), + [sym__real_expression] = STATE(1069), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_assignable_expression] = STATE(2536), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_logical_or_expression] = STATE(1069), + [sym_logical_and_expression] = STATE(1069), + [sym_equality_expression] = STATE(1069), + [sym_relational_expression] = STATE(1069), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -54783,259 +59183,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym__literal] = STATE(110), - [sym_symbol_literal] = STATE(110), - [sym_true] = STATE(110), - [sym_false] = STATE(110), - [sym_string_literal] = STATE(110), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(110), - [sym_set_or_map_literal] = STATE(110), - [sym_null_literal] = STATE(110), - [sym__expression] = STATE(253), - [sym__real_expression] = STATE(90), - [sym__below_relational_expression] = STATE(2654), - [sym_throw_expression] = STATE(253), - [sym_assignment_expression] = STATE(253), - [sym_assignable_expression] = STATE(2483), - [sym_function_expression] = STATE(110), - [sym_if_null_expression] = STATE(90), - [sym_conditional_expression] = STATE(90), - [sym_logical_or_expression] = STATE(90), - [sym_logical_and_expression] = STATE(90), - [sym_equality_expression] = STATE(90), - [sym_relational_expression] = STATE(90), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(110), - [sym_const_object_expression] = STATE(110), - [sym__primary] = STATE(110), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(110), - [sym_super] = STATE(2279), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1694), - [sym_hex_integer_literal] = ACTIONS(1694), - [sym_octal_integer_literal] = ACTIONS(1696), - [sym_binary_integer_literal] = ACTIONS(1696), - [sym_decimal_floating_point_literal] = ACTIONS(1696), - [sym_hex_floating_point_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [425] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(939), - [sym__real_expression] = STATE(558), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression_without_cascade] = STATE(939), - [sym_assignment_expression_without_cascade] = STATE(939), - [sym_assignable_expression] = STATE(2470), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(558), - [sym_conditional_expression] = STATE(558), - [sym_logical_or_expression] = STATE(558), - [sym_logical_and_expression] = STATE(558), - [sym_equality_expression] = STATE(558), - [sym_relational_expression] = STATE(558), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [426] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2263), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(2263), - [sym_assignment_expression_without_cascade] = STATE(2263), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [463] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3737), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3737), + [sym_assignment_expression_without_cascade] = STATE(3737), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -55053,79 +59275,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(1070), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1070), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [464] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3391), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3391), + [sym_assignment_expression] = STATE(3391), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -55153,76 +59377,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3761), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3761), - [sym_assignment_expression_without_cascade] = STATE(3761), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [465] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression_without_cascade] = STATE(2192), + [sym__real_expression] = STATE(1569), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression_without_cascade] = STATE(2192), + [sym_assignment_expression_without_cascade] = STATE(2192), + [sym_assignable_expression] = STATE(2540), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1569), + [sym_conditional_expression] = STATE(1569), + [sym_logical_or_expression] = STATE(1569), + [sym_logical_and_expression] = STATE(1569), + [sym_equality_expression] = STATE(1569), + [sym_relational_expression] = STATE(1569), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -55233,349 +59459,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1839), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(935), - [sym__real_expression] = STATE(558), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression_without_cascade] = STATE(935), - [sym_assignment_expression_without_cascade] = STATE(935), - [sym_assignable_expression] = STATE(2470), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(558), - [sym_conditional_expression] = STATE(558), - [sym_logical_or_expression] = STATE(558), - [sym_logical_and_expression] = STATE(558), - [sym_equality_expression] = STATE(558), - [sym_relational_expression] = STATE(558), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [430] = { - [sym__literal] = STATE(110), - [sym_symbol_literal] = STATE(110), - [sym_true] = STATE(110), - [sym_false] = STATE(110), - [sym_string_literal] = STATE(110), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(110), - [sym_set_or_map_literal] = STATE(110), - [sym_null_literal] = STATE(110), - [sym__expression_without_cascade] = STATE(294), - [sym__real_expression] = STATE(97), - [sym__below_relational_expression] = STATE(2654), - [sym_throw_expression_without_cascade] = STATE(294), - [sym_assignment_expression_without_cascade] = STATE(294), - [sym_assignable_expression] = STATE(2473), - [sym_function_expression] = STATE(110), - [sym_if_null_expression] = STATE(97), - [sym_conditional_expression] = STATE(97), - [sym_logical_or_expression] = STATE(97), - [sym_logical_and_expression] = STATE(97), - [sym_equality_expression] = STATE(97), - [sym_relational_expression] = STATE(97), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(110), - [sym_const_object_expression] = STATE(110), - [sym__primary] = STATE(110), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(110), - [sym_super] = STATE(2279), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1694), - [sym_hex_integer_literal] = ACTIONS(1694), - [sym_octal_integer_literal] = ACTIONS(1696), - [sym_binary_integer_literal] = ACTIONS(1696), - [sym_decimal_floating_point_literal] = ACTIONS(1696), - [sym_hex_floating_point_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(1052), - [sym__real_expression] = STATE(558), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression_without_cascade] = STATE(1052), - [sym_assignment_expression_without_cascade] = STATE(1052), - [sym_assignable_expression] = STATE(2471), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(558), - [sym_conditional_expression] = STATE(558), - [sym_logical_or_expression] = STATE(558), - [sym_logical_and_expression] = STATE(558), - [sym_equality_expression] = STATE(558), - [sym_relational_expression] = STATE(558), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [432] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3544), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3544), - [sym_assignment_expression] = STATE(3544), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [466] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2285), + [sym__real_expression] = STATE(1622), + [sym__below_relational_expression] = STATE(2696), + [sym_throw_expression_without_cascade] = STATE(2285), + [sym_assignment_expression_without_cascade] = STATE(2285), + [sym_assignable_expression] = STATE(2525), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1622), + [sym_conditional_expression] = STATE(1622), + [sym_logical_or_expression] = STATE(1622), + [sym_logical_and_expression] = STATE(1622), + [sym_equality_expression] = STATE(1622), + [sym_relational_expression] = STATE(1622), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2326), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -55593,7 +59551,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1863), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), @@ -55603,69 +59561,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [433] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3759), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3759), - [sym_assignment_expression] = STATE(3759), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [467] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2279), + [sym__real_expression] = STATE(1622), + [sym__below_relational_expression] = STATE(2696), + [sym_throw_expression_without_cascade] = STATE(2279), + [sym_assignment_expression_without_cascade] = STATE(2279), + [sym_assignable_expression] = STATE(2525), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1622), + [sym_conditional_expression] = STATE(1622), + [sym_logical_or_expression] = STATE(1622), + [sym_logical_and_expression] = STATE(1622), + [sym_equality_expression] = STATE(1622), + [sym_relational_expression] = STATE(1622), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2326), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -55683,7 +59643,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1863), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), @@ -55693,69 +59653,163 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [434] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3023), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3023), - [sym_assignment_expression] = STATE(3023), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [468] = { + [sym__literal] = STATE(1046), + [sym_symbol_literal] = STATE(1046), + [sym_true] = STATE(1046), + [sym_false] = STATE(1046), + [sym_string_literal] = STATE(1046), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1046), + [sym_set_or_map_literal] = STATE(1046), + [sym_null_literal] = STATE(1046), + [sym__expression_without_cascade] = STATE(1427), + [sym__real_expression] = STATE(1007), + [sym__below_relational_expression] = STATE(2695), + [sym_throw_expression_without_cascade] = STATE(1427), + [sym_assignment_expression_without_cascade] = STATE(1427), + [sym_assignable_expression] = STATE(2518), + [sym_function_expression] = STATE(1046), + [sym_if_null_expression] = STATE(1007), + [sym_conditional_expression] = STATE(1007), + [sym_logical_or_expression] = STATE(1007), + [sym_logical_and_expression] = STATE(1007), + [sym_equality_expression] = STATE(1007), + [sym_relational_expression] = STATE(1007), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1046), + [sym_const_object_expression] = STATE(1046), + [sym__primary] = STATE(1046), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1046), + [sym_super] = STATE(2344), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1841), + [sym_hex_integer_literal] = ACTIONS(1841), + [sym_octal_integer_literal] = ACTIONS(1843), + [sym_binary_integer_literal] = ACTIONS(1843), + [sym_decimal_floating_point_literal] = ACTIONS(1843), + [sym_hex_floating_point_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [469] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3851), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3851), + [sym_assignment_expression_without_cascade] = STATE(3851), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -55773,79 +59827,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3654), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3654), - [sym_assignment_expression] = STATE(3654), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [470] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3782), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3782), + [sym_assignment_expression] = STATE(3782), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -55873,256 +59929,170 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym__literal] = STATE(1009), - [sym_symbol_literal] = STATE(1009), - [sym_true] = STATE(1009), - [sym_false] = STATE(1009), - [sym_string_literal] = STATE(1009), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1009), - [sym_set_or_map_literal] = STATE(1009), - [sym_null_literal] = STATE(1009), - [sym__expression_without_cascade] = STATE(2033), - [sym__real_expression] = STATE(1534), - [sym__below_relational_expression] = STATE(2661), - [sym_throw_expression_without_cascade] = STATE(2033), - [sym_assignment_expression_without_cascade] = STATE(2033), - [sym_assignable_expression] = STATE(2504), - [sym_function_expression] = STATE(1009), - [sym_if_null_expression] = STATE(1534), - [sym_conditional_expression] = STATE(1534), - [sym_logical_or_expression] = STATE(1534), - [sym_logical_and_expression] = STATE(1534), - [sym_equality_expression] = STATE(1534), - [sym_relational_expression] = STATE(1534), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1009), - [sym_const_object_expression] = STATE(1009), - [sym__primary] = STATE(1009), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1009), - [sym_super] = STATE(2313), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1800), - [sym_hex_integer_literal] = ACTIONS(1800), - [sym_octal_integer_literal] = ACTIONS(1802), - [sym_binary_integer_literal] = ACTIONS(1802), - [sym_decimal_floating_point_literal] = ACTIONS(1802), - [sym_hex_floating_point_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [471] = { + [sym__literal] = STATE(1037), + [sym_symbol_literal] = STATE(1037), + [sym_true] = STATE(1037), + [sym_false] = STATE(1037), + [sym_string_literal] = STATE(1037), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1037), + [sym_set_or_map_literal] = STATE(1037), + [sym_null_literal] = STATE(1037), + [sym__expression_without_cascade] = STATE(1820), + [sym__real_expression] = STATE(1509), + [sym__below_relational_expression] = STATE(2677), + [sym_throw_expression_without_cascade] = STATE(1820), + [sym_assignment_expression_without_cascade] = STATE(1820), + [sym_assignable_expression] = STATE(2516), + [sym_function_expression] = STATE(1037), + [sym_if_null_expression] = STATE(1509), + [sym_conditional_expression] = STATE(1509), + [sym_logical_or_expression] = STATE(1509), + [sym_logical_and_expression] = STATE(1509), + [sym_equality_expression] = STATE(1509), + [sym_relational_expression] = STATE(1509), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1037), + [sym_const_object_expression] = STATE(1037), + [sym__primary] = STATE(1037), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1037), + [sym_super] = STATE(2362), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1762), + [sym_hex_integer_literal] = ACTIONS(1762), + [sym_octal_integer_literal] = ACTIONS(1764), + [sym_binary_integer_literal] = ACTIONS(1764), + [sym_decimal_floating_point_literal] = ACTIONS(1764), + [sym_hex_floating_point_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym__literal] = STATE(1009), - [sym_symbol_literal] = STATE(1009), - [sym_true] = STATE(1009), - [sym_false] = STATE(1009), - [sym_string_literal] = STATE(1009), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1009), - [sym_set_or_map_literal] = STATE(1009), - [sym_null_literal] = STATE(1009), - [sym__expression_without_cascade] = STATE(2043), - [sym__real_expression] = STATE(1534), - [sym__below_relational_expression] = STATE(2661), - [sym_throw_expression_without_cascade] = STATE(2043), - [sym_assignment_expression_without_cascade] = STATE(2043), - [sym_assignable_expression] = STATE(2504), - [sym_function_expression] = STATE(1009), - [sym_if_null_expression] = STATE(1534), - [sym_conditional_expression] = STATE(1534), - [sym_logical_or_expression] = STATE(1534), - [sym_logical_and_expression] = STATE(1534), - [sym_equality_expression] = STATE(1534), - [sym_relational_expression] = STATE(1534), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1009), - [sym_const_object_expression] = STATE(1009), - [sym__primary] = STATE(1009), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1009), - [sym_super] = STATE(2313), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), + [472] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression] = STATE(1367), + [sym__real_expression] = STATE(1069), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1367), + [sym_assignable_expression] = STATE(2536), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_logical_or_expression] = STATE(1069), + [sym_logical_and_expression] = STATE(1069), + [sym_equality_expression] = STATE(1069), + [sym_relational_expression] = STATE(1069), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(1800), [sym_hex_integer_literal] = ACTIONS(1800), [sym_octal_integer_literal] = ACTIONS(1802), [sym_binary_integer_literal] = ACTIONS(1802), [sym_decimal_floating_point_literal] = ACTIONS(1802), [sym_hex_floating_point_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [438] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression] = STATE(1729), - [sym__real_expression] = STATE(1278), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression] = STATE(1729), - [sym_assignment_expression] = STATE(1729), - [sym_assignable_expression] = STATE(2469), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1278), - [sym_conditional_expression] = STATE(1278), - [sym_logical_or_expression] = STATE(1278), - [sym_logical_and_expression] = STATE(1278), - [sym_equality_expression] = STATE(1278), - [sym_relational_expression] = STATE(1278), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -56133,79 +60103,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3015), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3015), - [sym_assignment_expression] = STATE(3015), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [473] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3520), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3520), + [sym_assignment_expression] = STATE(3520), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -56233,166 +60205,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_selector] = STATE(474), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(760), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(760), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym__postfix_expression_repeat1] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(741), - [sym_identifier] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(741), - [sym_decimal_integer_literal] = ACTIONS(743), - [sym_hex_integer_literal] = ACTIONS(743), - [sym_octal_integer_literal] = ACTIONS(741), - [sym_binary_integer_literal] = ACTIONS(741), - [sym_decimal_floating_point_literal] = ACTIONS(741), - [sym_hex_floating_point_literal] = ACTIONS(743), - [anon_sym_true] = ACTIONS(743), - [anon_sym_false] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_DQUOTE] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(743), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(741), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(741), - [anon_sym_r] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_null] = ACTIONS(743), - [anon_sym_throw] = ACTIONS(743), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_QMARK_QMARK] = ACTIONS(741), - [anon_sym_QMARK] = ACTIONS(743), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_AMP_AMP] = ACTIONS(741), - [sym_equality_operator] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(743), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(743), - [anon_sym_CARET] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(743), - [anon_sym_LT_LT] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(743), - [anon_sym_GT_GT_GT] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(743), - [anon_sym_DASH] = ACTIONS(743), - [anon_sym_STAR] = ACTIONS(741), - [anon_sym_SLASH] = ACTIONS(743), - [anon_sym_PERCENT] = ACTIONS(741), - [anon_sym_TILDE_SLASH] = ACTIONS(741), - [sym_increment_operator] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_await] = ACTIONS(743), - [anon_sym_is] = ACTIONS(743), - [anon_sym_as] = ACTIONS(743), - [anon_sym_DOT] = ACTIONS(1810), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_DOT_DOT] = ACTIONS(741), - [anon_sym_assert] = ACTIONS(743), - [anon_sym_switch] = ACTIONS(743), - [anon_sym_do] = ACTIONS(743), - [anon_sym_while] = ACTIONS(743), - [anon_sym_break] = ACTIONS(743), - [anon_sym_continue] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(743), - [anon_sym_return] = ACTIONS(743), - [anon_sym_try] = ACTIONS(743), - [anon_sym_if] = ACTIONS(743), - [anon_sym_for] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(743), - [anon_sym_abstract] = ACTIONS(743), - [anon_sym_class] = ACTIONS(743), - [anon_sym_super] = ACTIONS(743), - [anon_sym_void] = ACTIONS(743), - [anon_sym_var] = ACTIONS(743), - [anon_sym_covariant] = ACTIONS(743), - [anon_sym_Function] = ACTIONS(743), - [anon_sym_get] = ACTIONS(743), - [anon_sym_set] = ACTIONS(743), - [anon_sym_new] = ACTIONS(743), - [anon_sym_const] = ACTIONS(743), - [anon_sym_final] = ACTIONS(743), - [anon_sym_external] = ACTIONS(743), - [anon_sym_this] = ACTIONS(743), - [sym_comment] = ACTIONS(3), - }, - [441] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression_without_cascade] = STATE(1363), - [sym__real_expression] = STATE(975), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression_without_cascade] = STATE(1363), - [sym_assignment_expression_without_cascade] = STATE(1363), - [sym_assignable_expression] = STATE(2488), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(975), - [sym_conditional_expression] = STATE(975), - [sym_logical_or_expression] = STATE(975), - [sym_logical_and_expression] = STATE(975), - [sym_equality_expression] = STATE(975), - [sym_relational_expression] = STATE(975), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [474] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2297), + [sym__real_expression] = STATE(1622), + [sym__below_relational_expression] = STATE(2696), + [sym_throw_expression_without_cascade] = STATE(2297), + [sym_assignment_expression_without_cascade] = STATE(2297), + [sym_assignable_expression] = STATE(2525), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1622), + [sym_conditional_expression] = STATE(1622), + [sym_logical_or_expression] = STATE(1622), + [sym_logical_and_expression] = STATE(1622), + [sym_equality_expression] = STATE(1622), + [sym_relational_expression] = STATE(1622), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2326), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -56403,79 +60287,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1816), + [anon_sym_throw] = ACTIONS(1863), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3648), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3648), - [sym_assignment_expression_without_cascade] = STATE(3648), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [475] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3780), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3780), + [sym_assignment_expression_without_cascade] = STATE(3780), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -56493,79 +60379,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2263), - [sym__real_expression] = STATE(1886), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression_without_cascade] = STATE(2263), - [sym_assignment_expression_without_cascade] = STATE(2263), - [sym_assignable_expression] = STATE(2472), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1886), - [sym_conditional_expression] = STATE(1886), - [sym_logical_or_expression] = STATE(1886), - [sym_logical_and_expression] = STATE(1886), - [sym_equality_expression] = STATE(1886), - [sym_relational_expression] = STATE(1886), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [476] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3706), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3706), + [sym_assignment_expression] = STATE(3706), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -56583,7 +60471,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1794), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), @@ -56593,159 +60481,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [444] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression_without_cascade] = STATE(2032), - [sym__real_expression] = STATE(1526), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression_without_cascade] = STATE(2032), - [sym_assignment_expression_without_cascade] = STATE(2032), - [sym_assignable_expression] = STATE(2495), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1526), - [sym_conditional_expression] = STATE(1526), - [sym_logical_or_expression] = STATE(1526), - [sym_logical_and_expression] = STATE(1526), - [sym_equality_expression] = STATE(1526), - [sym_relational_expression] = STATE(1526), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3569), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3569), - [sym_assignment_expression] = STATE(3569), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [477] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3690), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3690), + [sym_assignment_expression] = STATE(3690), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -56773,76 +60573,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression] = STATE(2070), - [sym__real_expression] = STATE(1597), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2070), - [sym_assignable_expression] = STATE(2480), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1597), - [sym_conditional_expression] = STATE(1597), - [sym_logical_or_expression] = STATE(1597), - [sym_logical_and_expression] = STATE(1597), - [sym_equality_expression] = STATE(1597), - [sym_relational_expression] = STATE(1597), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [478] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression] = STATE(1446), + [sym__real_expression] = STATE(1069), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression] = STATE(1446), + [sym_assignment_expression] = STATE(1446), + [sym_assignable_expression] = STATE(2536), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_logical_or_expression] = STATE(1069), + [sym_logical_and_expression] = STATE(1069), + [sym_equality_expression] = STATE(1069), + [sym_relational_expression] = STATE(1069), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -56853,79 +60655,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1818), + [anon_sym_throw] = ACTIONS(1857), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3585), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3585), - [sym_assignment_expression] = STATE(3585), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [479] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3687), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3687), + [sym_assignment_expression_without_cascade] = STATE(3687), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -56943,86 +60747,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [448] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression] = STATE(2070), - [sym__real_expression] = STATE(1482), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2070), - [sym_assignable_expression] = STATE(2478), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1482), - [sym_conditional_expression] = STATE(1482), - [sym_logical_or_expression] = STATE(1482), - [sym_logical_and_expression] = STATE(1482), - [sym_equality_expression] = STATE(1482), - [sym_relational_expression] = STATE(1482), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [480] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3594), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3594), + [sym_assignment_expression] = STATE(3594), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -57033,86 +60839,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression_without_cascade] = STATE(2038), - [sym__real_expression] = STATE(1526), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression_without_cascade] = STATE(2038), - [sym_assignment_expression_without_cascade] = STATE(2038), - [sym_assignable_expression] = STATE(2495), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1526), - [sym_conditional_expression] = STATE(1526), - [sym_logical_or_expression] = STATE(1526), - [sym_logical_and_expression] = STATE(1526), - [sym_equality_expression] = STATE(1526), - [sym_relational_expression] = STATE(1526), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [481] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3829), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3829), + [sym_assignment_expression_without_cascade] = STATE(3829), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -57123,86 +60931,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression_without_cascade] = STATE(2040), - [sym__real_expression] = STATE(1526), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression_without_cascade] = STATE(2040), - [sym_assignment_expression_without_cascade] = STATE(2040), - [sym_assignable_expression] = STATE(2495), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1526), - [sym_conditional_expression] = STATE(1526), - [sym_logical_or_expression] = STATE(1526), - [sym_logical_and_expression] = STATE(1526), - [sym_equality_expression] = STATE(1526), - [sym_relational_expression] = STATE(1526), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [482] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression] = STATE(2056), + [sym__real_expression] = STATE(1499), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression] = STATE(2056), + [sym_assignment_expression] = STATE(2056), + [sym_assignable_expression] = STATE(2529), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1499), + [sym_conditional_expression] = STATE(1499), + [sym_logical_or_expression] = STATE(1499), + [sym_logical_and_expression] = STATE(1499), + [sym_equality_expression] = STATE(1499), + [sym_relational_expression] = STATE(1499), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -57213,86 +61023,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression_without_cascade] = STATE(1849), - [sym__real_expression] = STATE(1478), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression_without_cascade] = STATE(1849), - [sym_assignment_expression_without_cascade] = STATE(1849), - [sym_assignable_expression] = STATE(2474), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1478), - [sym_conditional_expression] = STATE(1478), - [sym_logical_or_expression] = STATE(1478), - [sym_logical_and_expression] = STATE(1478), - [sym_equality_expression] = STATE(1478), - [sym_relational_expression] = STATE(1478), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [483] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3596), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3596), + [sym_assignment_expression] = STATE(3596), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -57303,176 +61115,548 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1820), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym__literal] = STATE(109), - [sym_symbol_literal] = STATE(109), - [sym_true] = STATE(109), - [sym_false] = STATE(109), - [sym_string_literal] = STATE(109), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(109), - [sym_set_or_map_literal] = STATE(109), - [sym_null_literal] = STATE(109), - [sym__expression] = STATE(774), - [sym__real_expression] = STATE(193), - [sym__below_relational_expression] = STATE(2641), - [sym_throw_expression] = STATE(774), - [sym_assignment_expression] = STATE(774), - [sym_assignable_expression] = STATE(2503), - [sym_function_expression] = STATE(109), - [sym_if_null_expression] = STATE(193), - [sym_conditional_expression] = STATE(193), - [sym_logical_or_expression] = STATE(193), - [sym_logical_and_expression] = STATE(193), - [sym_equality_expression] = STATE(193), - [sym_relational_expression] = STATE(193), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(109), - [sym_const_object_expression] = STATE(109), - [sym__primary] = STATE(109), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(109), - [sym_super] = STATE(2325), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1822), - [sym_hex_integer_literal] = ACTIONS(1822), - [sym_octal_integer_literal] = ACTIONS(1824), - [sym_binary_integer_literal] = ACTIONS(1824), - [sym_decimal_floating_point_literal] = ACTIONS(1824), - [sym_hex_floating_point_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [484] = { + [sym__literal] = STATE(106), + [sym_symbol_literal] = STATE(106), + [sym_true] = STATE(106), + [sym_false] = STATE(106), + [sym_string_literal] = STATE(106), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(106), + [sym_set_or_map_literal] = STATE(106), + [sym_null_literal] = STATE(106), + [sym__expression_without_cascade] = STATE(351), + [sym__real_expression] = STATE(94), + [sym__below_relational_expression] = STATE(2689), + [sym_throw_expression_without_cascade] = STATE(351), + [sym_assignment_expression_without_cascade] = STATE(351), + [sym_assignable_expression] = STATE(2535), + [sym_function_expression] = STATE(106), + [sym_if_null_expression] = STATE(94), + [sym_conditional_expression] = STATE(94), + [sym_logical_or_expression] = STATE(94), + [sym_logical_and_expression] = STATE(94), + [sym_equality_expression] = STATE(94), + [sym_relational_expression] = STATE(94), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(106), + [sym_const_object_expression] = STATE(106), + [sym__primary] = STATE(106), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(106), + [sym_super] = STATE(2314), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1724), + [sym_hex_integer_literal] = ACTIONS(1724), + [sym_octal_integer_literal] = ACTIONS(1726), + [sym_binary_integer_literal] = ACTIONS(1726), + [sym_decimal_floating_point_literal] = ACTIONS(1726), + [sym_hex_floating_point_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression] = STATE(2138), - [sym__real_expression] = STATE(1597), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression] = STATE(2138), - [sym_assignment_expression] = STATE(2138), - [sym_assignable_expression] = STATE(2480), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1597), - [sym_conditional_expression] = STATE(1597), - [sym_logical_or_expression] = STATE(1597), - [sym_logical_and_expression] = STATE(1597), - [sym_equality_expression] = STATE(1597), - [sym_relational_expression] = STATE(1597), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [485] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(588), + [sym_identifier] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [sym_decimal_integer_literal] = ACTIONS(590), + [sym_hex_integer_literal] = ACTIONS(590), + [sym_octal_integer_literal] = ACTIONS(588), + [sym_binary_integer_literal] = ACTIONS(588), + [sym_decimal_floating_point_literal] = ACTIONS(588), + [sym_hex_floating_point_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_r] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_COMMA] = ACTIONS(588), + [anon_sym_null] = ACTIONS(590), + [anon_sym_throw] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(588), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_await] = ACTIONS(590), + [anon_sym_is] = ACTIONS(590), + [anon_sym_as] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_assert] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_try] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_abstract] = ACTIONS(590), + [anon_sym_class] = ACTIONS(590), + [anon_sym_super] = ACTIONS(590), + [anon_sym_void] = ACTIONS(590), + [anon_sym_var] = ACTIONS(590), + [anon_sym_covariant] = ACTIONS(590), + [anon_sym_Function] = ACTIONS(590), + [anon_sym_get] = ACTIONS(590), + [anon_sym_set] = ACTIONS(590), + [anon_sym_new] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_final] = ACTIONS(590), + [anon_sym_external] = ACTIONS(590), + [anon_sym_this] = ACTIONS(590), + [sym_comment] = ACTIONS(3), + }, + [486] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [sym_decimal_integer_literal] = ACTIONS(594), + [sym_hex_integer_literal] = ACTIONS(594), + [sym_octal_integer_literal] = ACTIONS(592), + [sym_binary_integer_literal] = ACTIONS(592), + [sym_decimal_floating_point_literal] = ACTIONS(592), + [sym_hex_floating_point_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(592), + [anon_sym_r] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_null] = ACTIONS(594), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_await] = ACTIONS(594), + [anon_sym_is] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_assert] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_do] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_try] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(594), + [anon_sym_abstract] = ACTIONS(594), + [anon_sym_class] = ACTIONS(594), + [anon_sym_super] = ACTIONS(594), + [anon_sym_void] = ACTIONS(594), + [anon_sym_var] = ACTIONS(594), + [anon_sym_covariant] = ACTIONS(594), + [anon_sym_Function] = ACTIONS(594), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_new] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_final] = ACTIONS(594), + [anon_sym_external] = ACTIONS(594), + [anon_sym_this] = ACTIONS(594), + [sym_comment] = ACTIONS(3), + }, + [487] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(598), + [sym_hex_integer_literal] = ACTIONS(598), + [sym_octal_integer_literal] = ACTIONS(596), + [sym_binary_integer_literal] = ACTIONS(596), + [sym_decimal_floating_point_literal] = ACTIONS(596), + [sym_hex_floating_point_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), + [anon_sym_r] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_null] = ACTIONS(598), + [anon_sym_throw] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_await] = ACTIONS(598), + [anon_sym_is] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_do] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_try] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_abstract] = ACTIONS(598), + [anon_sym_class] = ACTIONS(598), + [anon_sym_super] = ACTIONS(598), + [anon_sym_void] = ACTIONS(598), + [anon_sym_var] = ACTIONS(598), + [anon_sym_covariant] = ACTIONS(598), + [anon_sym_Function] = ACTIONS(598), + [anon_sym_get] = ACTIONS(598), + [anon_sym_set] = ACTIONS(598), + [anon_sym_new] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_final] = ACTIONS(598), + [anon_sym_external] = ACTIONS(598), + [anon_sym_this] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + }, + [488] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [sym_decimal_integer_literal] = ACTIONS(602), + [sym_hex_integer_literal] = ACTIONS(602), + [sym_octal_integer_literal] = ACTIONS(600), + [sym_binary_integer_literal] = ACTIONS(600), + [sym_decimal_floating_point_literal] = ACTIONS(600), + [sym_hex_floating_point_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(600), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(600), + [anon_sym_r] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_null] = ACTIONS(602), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_await] = ACTIONS(602), + [anon_sym_is] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_assert] = ACTIONS(602), + [anon_sym_switch] = ACTIONS(602), + [anon_sym_do] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_try] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_class] = ACTIONS(602), + [anon_sym_super] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_var] = ACTIONS(602), + [anon_sym_covariant] = ACTIONS(602), + [anon_sym_Function] = ACTIONS(602), + [anon_sym_get] = ACTIONS(602), + [anon_sym_set] = ACTIONS(602), + [anon_sym_new] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_final] = ACTIONS(602), + [anon_sym_external] = ACTIONS(602), + [anon_sym_this] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + }, + [489] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3597), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3597), + [sym_assignment_expression_without_cascade] = STATE(3597), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -57483,86 +61667,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1818), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression] = STATE(2156), - [sym__real_expression] = STATE(1597), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression] = STATE(2156), - [sym_assignment_expression] = STATE(2156), - [sym_assignable_expression] = STATE(2480), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1597), - [sym_conditional_expression] = STATE(1597), - [sym_logical_or_expression] = STATE(1597), - [sym_logical_and_expression] = STATE(1597), - [sym_equality_expression] = STATE(1597), - [sym_relational_expression] = STATE(1597), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [490] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3537), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3537), + [sym_assignment_expression] = STATE(3537), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -57573,439 +61759,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1818), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym__literal] = STATE(109), - [sym_symbol_literal] = STATE(109), - [sym_true] = STATE(109), - [sym_false] = STATE(109), - [sym_string_literal] = STATE(109), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(109), - [sym_set_or_map_literal] = STATE(109), - [sym_null_literal] = STATE(109), - [sym__expression] = STATE(773), - [sym__real_expression] = STATE(193), - [sym__below_relational_expression] = STATE(2641), - [sym_throw_expression] = STATE(773), - [sym_assignment_expression] = STATE(773), - [sym_assignable_expression] = STATE(2503), - [sym_function_expression] = STATE(109), - [sym_if_null_expression] = STATE(193), - [sym_conditional_expression] = STATE(193), - [sym_logical_or_expression] = STATE(193), - [sym_logical_and_expression] = STATE(193), - [sym_equality_expression] = STATE(193), - [sym_relational_expression] = STATE(193), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(109), - [sym_const_object_expression] = STATE(109), - [sym__primary] = STATE(109), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(109), - [sym_super] = STATE(2325), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1822), - [sym_hex_integer_literal] = ACTIONS(1822), - [sym_octal_integer_literal] = ACTIONS(1824), - [sym_binary_integer_literal] = ACTIONS(1824), - [sym_decimal_floating_point_literal] = ACTIONS(1824), - [sym_hex_floating_point_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [456] = { - [sym__literal] = STATE(1012), - [sym_symbol_literal] = STATE(1012), - [sym_true] = STATE(1012), - [sym_false] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1012), - [sym_set_or_map_literal] = STATE(1012), - [sym_null_literal] = STATE(1012), - [sym__expression] = STATE(1746), - [sym__real_expression] = STATE(1263), - [sym__below_relational_expression] = STATE(2660), - [sym_throw_expression] = STATE(1746), - [sym_assignment_expression] = STATE(1746), - [sym_assignable_expression] = STATE(2502), - [sym_function_expression] = STATE(1012), - [sym_if_null_expression] = STATE(1263), - [sym_conditional_expression] = STATE(1263), - [sym_logical_or_expression] = STATE(1263), - [sym_logical_and_expression] = STATE(1263), - [sym_equality_expression] = STATE(1263), - [sym_relational_expression] = STATE(1263), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1012), - [sym_const_object_expression] = STATE(1012), - [sym__primary] = STATE(1012), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1012), - [sym_super] = STATE(2319), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1640), - [sym_hex_integer_literal] = ACTIONS(1640), - [sym_octal_integer_literal] = ACTIONS(1642), - [sym_binary_integer_literal] = ACTIONS(1642), - [sym_decimal_floating_point_literal] = ACTIONS(1642), - [sym_hex_floating_point_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [457] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(876), - [sym__real_expression] = STATE(345), - [sym__below_relational_expression] = STATE(2652), - [sym_throw_expression_without_cascade] = STATE(876), - [sym_assignment_expression_without_cascade] = STATE(876), - [sym_assignable_expression] = STATE(2476), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(345), - [sym_conditional_expression] = STATE(345), - [sym_logical_or_expression] = STATE(345), - [sym_logical_and_expression] = STATE(345), - [sym_equality_expression] = STATE(345), - [sym_relational_expression] = STATE(345), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2311), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [458] = { - [sym__literal] = STATE(1012), - [sym_symbol_literal] = STATE(1012), - [sym_true] = STATE(1012), - [sym_false] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1012), - [sym_set_or_map_literal] = STATE(1012), - [sym_null_literal] = STATE(1012), - [sym__expression] = STATE(1763), - [sym__real_expression] = STATE(1263), - [sym__below_relational_expression] = STATE(2660), - [sym_throw_expression] = STATE(1763), - [sym_assignment_expression] = STATE(1763), - [sym_assignable_expression] = STATE(2502), - [sym_function_expression] = STATE(1012), - [sym_if_null_expression] = STATE(1263), - [sym_conditional_expression] = STATE(1263), - [sym_logical_or_expression] = STATE(1263), - [sym_logical_and_expression] = STATE(1263), - [sym_equality_expression] = STATE(1263), - [sym_relational_expression] = STATE(1263), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1012), - [sym_const_object_expression] = STATE(1012), - [sym__primary] = STATE(1012), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1012), - [sym_super] = STATE(2319), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1640), - [sym_hex_integer_literal] = ACTIONS(1640), - [sym_octal_integer_literal] = ACTIONS(1642), - [sym_binary_integer_literal] = ACTIONS(1642), - [sym_decimal_floating_point_literal] = ACTIONS(1642), - [sym_hex_floating_point_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [491] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(606), + [sym_hex_integer_literal] = ACTIONS(606), + [sym_octal_integer_literal] = ACTIONS(604), + [sym_binary_integer_literal] = ACTIONS(604), + [sym_decimal_floating_point_literal] = ACTIONS(604), + [sym_hex_floating_point_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), + [anon_sym_r] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_throw] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_await] = ACTIONS(606), + [anon_sym_is] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_assert] = ACTIONS(606), + [anon_sym_switch] = ACTIONS(606), + [anon_sym_do] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_try] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_abstract] = ACTIONS(606), + [anon_sym_class] = ACTIONS(606), + [anon_sym_super] = ACTIONS(606), + [anon_sym_void] = ACTIONS(606), + [anon_sym_var] = ACTIONS(606), + [anon_sym_covariant] = ACTIONS(606), + [anon_sym_Function] = ACTIONS(606), + [anon_sym_get] = ACTIONS(606), + [anon_sym_set] = ACTIONS(606), + [anon_sym_new] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_final] = ACTIONS(606), + [anon_sym_external] = ACTIONS(606), + [anon_sym_this] = ACTIONS(606), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3715), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3715), - [sym_assignment_expression_without_cascade] = STATE(3715), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [492] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3579), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3579), + [sym_assignment_expression] = STATE(3579), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -58023,259 +61943,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [460] = { - [sym__literal] = STATE(110), - [sym_symbol_literal] = STATE(110), - [sym_true] = STATE(110), - [sym_false] = STATE(110), - [sym_string_literal] = STATE(110), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(110), - [sym_set_or_map_literal] = STATE(110), - [sym_null_literal] = STATE(110), - [sym__expression_without_cascade] = STATE(231), - [sym__real_expression] = STATE(97), - [sym__below_relational_expression] = STATE(2654), - [sym_throw_expression_without_cascade] = STATE(231), - [sym_assignment_expression_without_cascade] = STATE(231), - [sym_assignable_expression] = STATE(2473), - [sym_function_expression] = STATE(110), - [sym_if_null_expression] = STATE(97), - [sym_conditional_expression] = STATE(97), - [sym_logical_or_expression] = STATE(97), - [sym_logical_and_expression] = STATE(97), - [sym_equality_expression] = STATE(97), - [sym_relational_expression] = STATE(97), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(110), - [sym_const_object_expression] = STATE(110), - [sym__primary] = STATE(110), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(110), - [sym_super] = STATE(2279), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1694), - [sym_hex_integer_literal] = ACTIONS(1694), - [sym_octal_integer_literal] = ACTIONS(1696), - [sym_binary_integer_literal] = ACTIONS(1696), - [sym_decimal_floating_point_literal] = ACTIONS(1696), - [sym_hex_floating_point_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [461] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(875), - [sym__real_expression] = STATE(345), - [sym__below_relational_expression] = STATE(2652), - [sym_throw_expression_without_cascade] = STATE(875), - [sym_assignment_expression_without_cascade] = STATE(875), - [sym_assignable_expression] = STATE(2476), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(345), - [sym_conditional_expression] = STATE(345), - [sym_logical_or_expression] = STATE(345), - [sym_logical_and_expression] = STATE(345), - [sym_equality_expression] = STATE(345), - [sym_relational_expression] = STATE(345), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2311), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [493] = { + [aux_sym__if_null_expression] = STATE(901), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(893), + [aux_sym_logical_and_expression_repeat1] = STATE(900), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [sym_decimal_integer_literal] = ACTIONS(610), + [sym_hex_integer_literal] = ACTIONS(610), + [sym_octal_integer_literal] = ACTIONS(608), + [sym_binary_integer_literal] = ACTIONS(608), + [sym_decimal_floating_point_literal] = ACTIONS(608), + [sym_hex_floating_point_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(608), + [anon_sym_r] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_null] = ACTIONS(610), + [anon_sym_throw] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_QMARK_QMARK] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [sym_equality_operator] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_await] = ACTIONS(610), + [anon_sym_is] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_assert] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(610), + [anon_sym_do] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_try] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_abstract] = ACTIONS(610), + [anon_sym_class] = ACTIONS(610), + [anon_sym_super] = ACTIONS(610), + [anon_sym_void] = ACTIONS(610), + [anon_sym_var] = ACTIONS(610), + [anon_sym_covariant] = ACTIONS(610), + [anon_sym_Function] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_new] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_final] = ACTIONS(610), + [anon_sym_external] = ACTIONS(610), + [anon_sym_this] = ACTIONS(610), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3430), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3430), - [sym_assignment_expression] = STATE(3430), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [494] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3630), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3630), + [sym_assignment_expression] = STATE(3630), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -58303,166 +62137,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [463] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(1771), - [sym__real_expression] = STATE(1900), - [sym__below_relational_expression] = STATE(2633), - [sym_throw_expression_without_cascade] = STATE(1771), - [sym_assignment_expression_without_cascade] = STATE(1771), - [sym_assignable_expression] = STATE(2486), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1900), - [sym_conditional_expression] = STATE(1900), - [sym_logical_or_expression] = STATE(1900), - [sym_logical_and_expression] = STATE(1900), - [sym_equality_expression] = STATE(1900), - [sym_relational_expression] = STATE(1900), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2310), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [464] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression_without_cascade] = STATE(1405), - [sym__real_expression] = STATE(975), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression_without_cascade] = STATE(1405), - [sym_assignment_expression_without_cascade] = STATE(1405), - [sym_assignable_expression] = STATE(2488), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(975), - [sym_conditional_expression] = STATE(975), - [sym_logical_or_expression] = STATE(975), - [sym_logical_and_expression] = STATE(975), - [sym_equality_expression] = STATE(975), - [sym_relational_expression] = STATE(975), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [495] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3631), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3631), + [sym_assignment_expression_without_cascade] = STATE(3631), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -58473,529 +62219,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1816), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [465] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(2259), - [sym__real_expression] = STATE(1900), - [sym__below_relational_expression] = STATE(2633), - [sym_throw_expression_without_cascade] = STATE(2259), - [sym_assignment_expression_without_cascade] = STATE(2259), - [sym_assignable_expression] = STATE(2496), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1900), - [sym_conditional_expression] = STATE(1900), - [sym_logical_or_expression] = STATE(1900), - [sym_logical_and_expression] = STATE(1900), - [sym_equality_expression] = STATE(1900), - [sym_relational_expression] = STATE(1900), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2310), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [466] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(2244), - [sym__real_expression] = STATE(1579), - [sym__below_relational_expression] = STATE(2634), - [sym_throw_expression_without_cascade] = STATE(2244), - [sym_assignment_expression_without_cascade] = STATE(2244), - [sym_assignable_expression] = STATE(2490), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1579), - [sym_conditional_expression] = STATE(1579), - [sym_logical_or_expression] = STATE(1579), - [sym_logical_and_expression] = STATE(1579), - [sym_equality_expression] = STATE(1579), - [sym_relational_expression] = STATE(1579), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2301), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [467] = { - [sym__literal] = STATE(109), - [sym_symbol_literal] = STATE(109), - [sym_true] = STATE(109), - [sym_false] = STATE(109), - [sym_string_literal] = STATE(109), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(109), - [sym_set_or_map_literal] = STATE(109), - [sym_null_literal] = STATE(109), - [sym__expression_without_cascade] = STATE(841), - [sym__real_expression] = STATE(313), - [sym__below_relational_expression] = STATE(2641), - [sym_throw_expression_without_cascade] = STATE(841), - [sym_assignment_expression_without_cascade] = STATE(841), - [sym_assignable_expression] = STATE(2498), - [sym_function_expression] = STATE(109), - [sym_if_null_expression] = STATE(313), - [sym_conditional_expression] = STATE(313), - [sym_logical_or_expression] = STATE(313), - [sym_logical_and_expression] = STATE(313), - [sym_equality_expression] = STATE(313), - [sym_relational_expression] = STATE(313), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(109), - [sym_const_object_expression] = STATE(109), - [sym__primary] = STATE(109), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(109), - [sym_super] = STATE(2325), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1822), - [sym_hex_integer_literal] = ACTIONS(1822), - [sym_octal_integer_literal] = ACTIONS(1824), - [sym_binary_integer_literal] = ACTIONS(1824), - [sym_decimal_floating_point_literal] = ACTIONS(1824), - [sym_hex_floating_point_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [468] = { - [sym__literal] = STATE(1012), - [sym_symbol_literal] = STATE(1012), - [sym_true] = STATE(1012), - [sym_false] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1012), - [sym_set_or_map_literal] = STATE(1012), - [sym_null_literal] = STATE(1012), - [sym__expression_without_cascade] = STATE(1727), - [sym__real_expression] = STATE(1473), - [sym__below_relational_expression] = STATE(2660), - [sym_throw_expression_without_cascade] = STATE(1727), - [sym_assignment_expression_without_cascade] = STATE(1727), - [sym_assignable_expression] = STATE(2497), - [sym_function_expression] = STATE(1012), - [sym_if_null_expression] = STATE(1473), - [sym_conditional_expression] = STATE(1473), - [sym_logical_or_expression] = STATE(1473), - [sym_logical_and_expression] = STATE(1473), - [sym_equality_expression] = STATE(1473), - [sym_relational_expression] = STATE(1473), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1012), - [sym_const_object_expression] = STATE(1012), - [sym__primary] = STATE(1012), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1012), - [sym_super] = STATE(2319), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1640), - [sym_hex_integer_literal] = ACTIONS(1640), - [sym_octal_integer_literal] = ACTIONS(1642), - [sym_binary_integer_literal] = ACTIONS(1642), - [sym_decimal_floating_point_literal] = ACTIONS(1642), - [sym_hex_floating_point_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [469] = { - [sym__literal] = STATE(1004), - [sym_symbol_literal] = STATE(1004), - [sym_true] = STATE(1004), - [sym_false] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1004), - [sym_set_or_map_literal] = STATE(1004), - [sym_null_literal] = STATE(1004), - [sym__expression] = STATE(1436), - [sym__real_expression] = STATE(968), - [sym__below_relational_expression] = STATE(2647), - [sym_throw_expression] = STATE(1436), - [sym_assignment_expression] = STATE(1436), - [sym_assignable_expression] = STATE(2494), - [sym_function_expression] = STATE(1004), - [sym_if_null_expression] = STATE(968), - [sym_conditional_expression] = STATE(968), - [sym_logical_or_expression] = STATE(968), - [sym_logical_and_expression] = STATE(968), - [sym_equality_expression] = STATE(968), - [sym_relational_expression] = STATE(968), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1004), - [sym_const_object_expression] = STATE(1004), - [sym__primary] = STATE(1004), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1004), - [sym_super] = STATE(2306), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1842), - [sym_hex_integer_literal] = ACTIONS(1842), - [sym_octal_integer_literal] = ACTIONS(1844), - [sym_binary_integer_literal] = ACTIONS(1844), - [sym_decimal_floating_point_literal] = ACTIONS(1844), - [sym_hex_floating_point_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [470] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3710), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3710), - [sym_assignment_expression_without_cascade] = STATE(3710), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [496] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3762), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3762), + [sym_assignment_expression] = STATE(3762), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -59013,86 +62311,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [471] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression] = STATE(1847), - [sym__real_expression] = STATE(1278), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression] = STATE(1847), - [sym_assignment_expression] = STATE(1847), - [sym_assignable_expression] = STATE(2469), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1278), - [sym_conditional_expression] = STATE(1278), - [sym_logical_or_expression] = STATE(1278), - [sym_logical_and_expression] = STATE(1278), - [sym_equality_expression] = STATE(1278), - [sym_relational_expression] = STATE(1278), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [497] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3678), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3678), + [sym_assignment_expression] = STATE(3678), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -59103,169 +62403,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [472] = { - [sym__literal] = STATE(1004), - [sym_symbol_literal] = STATE(1004), - [sym_true] = STATE(1004), - [sym_false] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1004), - [sym_set_or_map_literal] = STATE(1004), - [sym_null_literal] = STATE(1004), - [sym__expression_without_cascade] = STATE(1410), - [sym__real_expression] = STATE(981), - [sym__below_relational_expression] = STATE(2647), - [sym_throw_expression_without_cascade] = STATE(1410), - [sym_assignment_expression_without_cascade] = STATE(1410), - [sym_assignable_expression] = STATE(2487), - [sym_function_expression] = STATE(1004), - [sym_if_null_expression] = STATE(981), - [sym_conditional_expression] = STATE(981), - [sym_logical_or_expression] = STATE(981), - [sym_logical_and_expression] = STATE(981), - [sym_equality_expression] = STATE(981), - [sym_relational_expression] = STATE(981), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1004), - [sym_const_object_expression] = STATE(1004), - [sym__primary] = STATE(1004), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1004), - [sym_super] = STATE(2306), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1842), - [sym_hex_integer_literal] = ACTIONS(1842), - [sym_octal_integer_literal] = ACTIONS(1844), - [sym_binary_integer_literal] = ACTIONS(1844), - [sym_decimal_floating_point_literal] = ACTIONS(1844), - [sym_hex_floating_point_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [473] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3712), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3712), - [sym_assignment_expression] = STATE(3712), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [498] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3679), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3679), + [sym_assignment_expression] = STATE(3679), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -59293,256 +62505,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [474] = { - [sym_selector] = STATE(474), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(760), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(760), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym__postfix_expression_repeat1] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(763), - [sym_identifier] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(763), - [sym_decimal_integer_literal] = ACTIONS(765), - [sym_hex_integer_literal] = ACTIONS(765), - [sym_octal_integer_literal] = ACTIONS(763), - [sym_binary_integer_literal] = ACTIONS(763), - [sym_decimal_floating_point_literal] = ACTIONS(763), - [sym_hex_floating_point_literal] = ACTIONS(765), - [anon_sym_true] = ACTIONS(765), - [anon_sym_false] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(763), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(763), - [anon_sym_r] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_null] = ACTIONS(765), - [anon_sym_throw] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_QMARK_QMARK] = ACTIONS(763), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(763), - [anon_sym_AMP_AMP] = ACTIONS(763), - [sym_equality_operator] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_GT_GT_GT] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_TILDE_SLASH] = ACTIONS(763), - [sym_increment_operator] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_await] = ACTIONS(765), - [anon_sym_is] = ACTIONS(765), - [anon_sym_as] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_QMARK_DOT] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(763), - [anon_sym_assert] = ACTIONS(765), - [anon_sym_switch] = ACTIONS(765), - [anon_sym_do] = ACTIONS(765), - [anon_sym_while] = ACTIONS(765), - [anon_sym_break] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(765), - [anon_sym_return] = ACTIONS(765), - [anon_sym_try] = ACTIONS(765), - [anon_sym_if] = ACTIONS(765), - [anon_sym_for] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(763), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_abstract] = ACTIONS(765), - [anon_sym_class] = ACTIONS(765), - [anon_sym_super] = ACTIONS(765), - [anon_sym_void] = ACTIONS(765), - [anon_sym_var] = ACTIONS(765), - [anon_sym_covariant] = ACTIONS(765), - [anon_sym_Function] = ACTIONS(765), - [anon_sym_get] = ACTIONS(765), - [anon_sym_set] = ACTIONS(765), - [anon_sym_new] = ACTIONS(765), - [anon_sym_const] = ACTIONS(765), - [anon_sym_final] = ACTIONS(765), - [anon_sym_external] = ACTIONS(765), - [anon_sym_this] = ACTIONS(765), - [sym_comment] = ACTIONS(3), - }, - [475] = { - [sym_selector] = STATE(474), - [sym_arguments] = STATE(761), - [sym_argument_part] = STATE(760), - [sym_unconditional_assignable_selector] = STATE(779), - [sym_assignable_selector] = STATE(760), - [sym_type_arguments] = STATE(3418), - [sym__type_args] = STATE(1911), - [aux_sym__postfix_expression_repeat1] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(785), - [sym_decimal_integer_literal] = ACTIONS(787), - [sym_hex_integer_literal] = ACTIONS(787), - [sym_octal_integer_literal] = ACTIONS(785), - [sym_binary_integer_literal] = ACTIONS(785), - [sym_decimal_floating_point_literal] = ACTIONS(785), - [sym_hex_floating_point_literal] = ACTIONS(787), - [anon_sym_true] = ACTIONS(787), - [anon_sym_false] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(785), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), - [anon_sym_r] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [anon_sym_throw] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_QMARK_QMARK] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [sym_equality_operator] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(787), - [anon_sym_GT_GT_GT] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_TILDE_SLASH] = ACTIONS(785), - [sym_increment_operator] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(787), - [anon_sym_await] = ACTIONS(787), - [anon_sym_is] = ACTIONS(787), - [anon_sym_as] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_QMARK_DOT] = ACTIONS(1872), - [anon_sym_DOT_DOT] = ACTIONS(785), - [anon_sym_assert] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(787), - [anon_sym_do] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(787), - [anon_sym_yield] = ACTIONS(787), - [anon_sym_return] = ACTIONS(787), - [anon_sym_try] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(787), - [anon_sym_abstract] = ACTIONS(787), - [anon_sym_class] = ACTIONS(787), - [anon_sym_super] = ACTIONS(787), - [anon_sym_void] = ACTIONS(787), - [anon_sym_var] = ACTIONS(787), - [anon_sym_covariant] = ACTIONS(787), - [anon_sym_Function] = ACTIONS(787), - [anon_sym_get] = ACTIONS(787), - [anon_sym_set] = ACTIONS(787), - [anon_sym_new] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_final] = ACTIONS(787), - [anon_sym_external] = ACTIONS(787), - [anon_sym_this] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - }, - [476] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression] = STATE(1455), - [sym__real_expression] = STATE(969), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression] = STATE(1455), - [sym_assignment_expression] = STATE(1455), - [sym_assignable_expression] = STATE(2479), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(969), - [sym_conditional_expression] = STATE(969), - [sym_logical_or_expression] = STATE(969), - [sym_logical_and_expression] = STATE(969), - [sym_equality_expression] = STATE(969), - [sym_relational_expression] = STATE(969), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [499] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression] = STATE(1892), + [sym__real_expression] = STATE(1591), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression] = STATE(1892), + [sym_assignment_expression] = STATE(1892), + [sym_assignable_expression] = STATE(2530), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1591), + [sym_conditional_expression] = STATE(1591), + [sym_logical_or_expression] = STATE(1591), + [sym_logical_and_expression] = STATE(1591), + [sym_equality_expression] = STATE(1591), + [sym_relational_expression] = STATE(1591), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -59553,79 +62587,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1630), + [anon_sym_throw] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [477] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3578), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3578), - [sym_assignment_expression] = STATE(3578), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [500] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2285), + [sym__real_expression] = STATE(1975), + [sym__below_relational_expression] = STATE(2676), + [sym_throw_expression_without_cascade] = STATE(2285), + [sym_assignment_expression_without_cascade] = STATE(2285), + [sym_assignable_expression] = STATE(2511), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1975), + [sym_conditional_expression] = STATE(1975), + [sym_logical_or_expression] = STATE(1975), + [sym_logical_and_expression] = STATE(1975), + [sym_equality_expression] = STATE(1975), + [sym_relational_expression] = STATE(1975), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2341), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -59643,169 +62679,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1865), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [478] = { - [sym__literal] = STATE(1009), - [sym_symbol_literal] = STATE(1009), - [sym_true] = STATE(1009), - [sym_false] = STATE(1009), - [sym_string_literal] = STATE(1009), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1009), - [sym_set_or_map_literal] = STATE(1009), - [sym_null_literal] = STATE(1009), - [sym__expression_without_cascade] = STATE(2041), - [sym__real_expression] = STATE(1534), - [sym__below_relational_expression] = STATE(2661), - [sym_throw_expression_without_cascade] = STATE(2041), - [sym_assignment_expression_without_cascade] = STATE(2041), - [sym_assignable_expression] = STATE(2504), - [sym_function_expression] = STATE(1009), - [sym_if_null_expression] = STATE(1534), - [sym_conditional_expression] = STATE(1534), - [sym_logical_or_expression] = STATE(1534), - [sym_logical_and_expression] = STATE(1534), - [sym_equality_expression] = STATE(1534), - [sym_relational_expression] = STATE(1534), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1009), - [sym_const_object_expression] = STATE(1009), - [sym__primary] = STATE(1009), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1009), - [sym_super] = STATE(2313), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1800), - [sym_hex_integer_literal] = ACTIONS(1800), - [sym_octal_integer_literal] = ACTIONS(1802), - [sym_binary_integer_literal] = ACTIONS(1802), - [sym_decimal_floating_point_literal] = ACTIONS(1802), - [sym_hex_floating_point_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [479] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3734), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3734), - [sym_assignment_expression] = STATE(3734), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [501] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3088), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3088), + [sym_assignment_expression] = STATE(3088), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -59833,76 +62781,262 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [480] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression] = STATE(1796), - [sym__real_expression] = STATE(1278), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression] = STATE(1796), - [sym_assignment_expression] = STATE(1796), - [sym_assignable_expression] = STATE(2469), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1278), - [sym_conditional_expression] = STATE(1278), - [sym_logical_or_expression] = STATE(1278), - [sym_logical_and_expression] = STATE(1278), - [sym_equality_expression] = STATE(1278), - [sym_relational_expression] = STATE(1278), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [502] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression] = STATE(1109), + [sym__real_expression] = STATE(588), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression] = STATE(1109), + [sym_assignment_expression] = STATE(1109), + [sym_assignable_expression] = STATE(2512), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(588), + [sym_conditional_expression] = STATE(588), + [sym_logical_or_expression] = STATE(588), + [sym_logical_and_expression] = STATE(588), + [sym_equality_expression] = STATE(588), + [sym_relational_expression] = STATE(588), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [503] = { + [sym_identifier] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1325), + [sym_decimal_integer_literal] = ACTIONS(1327), + [sym_hex_integer_literal] = ACTIONS(1327), + [sym_octal_integer_literal] = ACTIONS(1325), + [sym_binary_integer_literal] = ACTIONS(1325), + [sym_decimal_floating_point_literal] = ACTIONS(1325), + [sym_hex_floating_point_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1325), + [anon_sym_r] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_null] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_AMP_EQ] = ACTIONS(1321), + [anon_sym_PIPE_EQ] = ACTIONS(1321), + [anon_sym_CARET_EQ] = ACTIONS(1321), + [anon_sym_PERCENT_EQ] = ACTIONS(1321), + [anon_sym_LT_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_QMARK_QMARK] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [sym_equality_operator] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_LT_LT] = ACTIONS(1323), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_GT_GT_GT] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1323), + [anon_sym_TILDE_SLASH] = ACTIONS(1321), + [sym_increment_operator] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_is] = ACTIONS(1323), + [anon_sym_as] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_QMARK_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_assert] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_super] = ACTIONS(1327), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_covariant] = ACTIONS(1327), + [anon_sym_Function] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_final] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1321), + [sym_comment] = ACTIONS(3), + }, + [504] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3689), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3689), + [sym_assignment_expression] = STATE(3689), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -59913,86 +63047,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [481] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression_without_cascade] = STATE(1426), - [sym__real_expression] = STATE(975), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression_without_cascade] = STATE(1426), - [sym_assignment_expression_without_cascade] = STATE(1426), - [sym_assignable_expression] = STATE(2488), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(975), - [sym_conditional_expression] = STATE(975), - [sym_logical_or_expression] = STATE(975), - [sym_logical_and_expression] = STATE(975), - [sym_equality_expression] = STATE(975), - [sym_relational_expression] = STATE(975), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [505] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3475), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3475), + [sym_assignment_expression] = STATE(3475), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -60003,86 +63139,180 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1816), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [482] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression_without_cascade] = STATE(1425), - [sym__real_expression] = STATE(975), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression_without_cascade] = STATE(1425), - [sym_assignment_expression_without_cascade] = STATE(1425), - [sym_assignable_expression] = STATE(2488), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(975), - [sym_conditional_expression] = STATE(975), - [sym_logical_or_expression] = STATE(975), - [sym_logical_and_expression] = STATE(975), - [sym_equality_expression] = STATE(975), - [sym_relational_expression] = STATE(975), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), + [506] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression] = STATE(1127), + [sym__real_expression] = STATE(588), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression] = STATE(1127), + [sym_assignment_expression] = STATE(1127), + [sym_assignable_expression] = STATE(2512), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(588), + [sym_conditional_expression] = STATE(588), + [sym_logical_or_expression] = STATE(588), + [sym_logical_and_expression] = STATE(588), + [sym_equality_expression] = STATE(588), + [sym_relational_expression] = STATE(588), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), + [sym_negation_operator] = STATE(3008), [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [507] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression] = STATE(1453), + [sym__real_expression] = STATE(1005), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression] = STATE(1453), + [sym_assignment_expression] = STATE(1453), + [sym_assignable_expression] = STATE(2541), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1005), + [sym_conditional_expression] = STATE(1005), + [sym_logical_or_expression] = STATE(1005), + [sym_logical_and_expression] = STATE(1005), + [sym_equality_expression] = STATE(1005), + [sym_relational_expression] = STATE(1005), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -60093,86 +63323,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1816), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [483] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3543), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3543), - [sym_assignment_expression] = STATE(3543), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [508] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression] = STATE(1367), + [sym__real_expression] = STATE(1005), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression] = STATE(1367), + [sym_assignment_expression] = STATE(1367), + [sym_assignable_expression] = STATE(2541), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1005), + [sym_conditional_expression] = STATE(1005), + [sym_logical_or_expression] = STATE(1005), + [sym_logical_and_expression] = STATE(1005), + [sym_equality_expression] = STATE(1005), + [sym_relational_expression] = STATE(1005), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -60183,169 +63415,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [484] = { - [sym__literal] = STATE(109), - [sym_symbol_literal] = STATE(109), - [sym_true] = STATE(109), - [sym_false] = STATE(109), - [sym_string_literal] = STATE(109), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(109), - [sym_set_or_map_literal] = STATE(109), - [sym_null_literal] = STATE(109), - [sym__expression_without_cascade] = STATE(788), - [sym__real_expression] = STATE(313), - [sym__below_relational_expression] = STATE(2641), - [sym_throw_expression_without_cascade] = STATE(788), - [sym_assignment_expression_without_cascade] = STATE(788), - [sym_assignable_expression] = STATE(2498), - [sym_function_expression] = STATE(109), - [sym_if_null_expression] = STATE(313), - [sym_conditional_expression] = STATE(313), - [sym_logical_or_expression] = STATE(313), - [sym_logical_and_expression] = STATE(313), - [sym_equality_expression] = STATE(313), - [sym_relational_expression] = STATE(313), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(109), - [sym_const_object_expression] = STATE(109), - [sym__primary] = STATE(109), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(109), - [sym_super] = STATE(2325), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1822), - [sym_hex_integer_literal] = ACTIONS(1822), - [sym_octal_integer_literal] = ACTIONS(1824), - [sym_binary_integer_literal] = ACTIONS(1824), - [sym_decimal_floating_point_literal] = ACTIONS(1824), - [sym_hex_floating_point_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [485] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3729), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3729), - [sym_assignment_expression] = STATE(3729), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [509] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3471), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3471), + [sym_assignment_expression] = STATE(3471), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -60373,69 +63517,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [486] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3396), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3396), - [sym_assignment_expression] = STATE(3396), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [510] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3840), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3840), + [sym_assignment_expression] = STATE(3840), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -60463,159 +63609,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [487] = { - [sym__literal] = STATE(1012), - [sym_symbol_literal] = STATE(1012), - [sym_true] = STATE(1012), - [sym_false] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1012), - [sym_set_or_map_literal] = STATE(1012), - [sym_null_literal] = STATE(1012), - [sym__expression_without_cascade] = STATE(1806), - [sym__real_expression] = STATE(1473), - [sym__below_relational_expression] = STATE(2660), - [sym_throw_expression_without_cascade] = STATE(1806), - [sym_assignment_expression_without_cascade] = STATE(1806), - [sym_assignable_expression] = STATE(2497), - [sym_function_expression] = STATE(1012), - [sym_if_null_expression] = STATE(1473), - [sym_conditional_expression] = STATE(1473), - [sym_logical_or_expression] = STATE(1473), - [sym_logical_and_expression] = STATE(1473), - [sym_equality_expression] = STATE(1473), - [sym_relational_expression] = STATE(1473), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1012), - [sym_const_object_expression] = STATE(1012), - [sym__primary] = STATE(1012), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1012), - [sym_super] = STATE(2319), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1640), - [sym_hex_integer_literal] = ACTIONS(1640), - [sym_octal_integer_literal] = ACTIONS(1642), - [sym_binary_integer_literal] = ACTIONS(1642), - [sym_decimal_floating_point_literal] = ACTIONS(1642), - [sym_hex_floating_point_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [488] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3728), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3728), - [sym_assignment_expression_without_cascade] = STATE(3728), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [511] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3831), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3831), + [sym_assignment_expression] = STATE(3831), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -60633,169 +63691,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [489] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(1049), - [sym__real_expression] = STATE(558), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression_without_cascade] = STATE(1049), - [sym_assignment_expression_without_cascade] = STATE(1049), - [sym_assignable_expression] = STATE(2471), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(558), - [sym_conditional_expression] = STATE(558), - [sym_logical_or_expression] = STATE(558), - [sym_logical_and_expression] = STATE(558), - [sym_equality_expression] = STATE(558), - [sym_relational_expression] = STATE(558), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [490] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3633), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3633), - [sym_assignment_expression_without_cascade] = STATE(3633), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [512] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2297), + [sym__real_expression] = STATE(1931), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression_without_cascade] = STATE(2297), + [sym_assignment_expression_without_cascade] = STATE(2297), + [sym_assignable_expression] = STATE(2522), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1931), + [sym_conditional_expression] = STATE(1931), + [sym_logical_or_expression] = STATE(1931), + [sym_logical_and_expression] = STATE(1931), + [sym_equality_expression] = STATE(1931), + [sym_relational_expression] = STATE(1931), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -60813,79 +63783,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [491] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3637), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3637), - [sym_assignment_expression] = STATE(3637), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [513] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3826), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3826), + [sym_assignment_expression] = STATE(3826), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -60913,159 +63885,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym__literal] = STATE(109), - [sym_symbol_literal] = STATE(109), - [sym_true] = STATE(109), - [sym_false] = STATE(109), - [sym_string_literal] = STATE(109), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(109), - [sym_set_or_map_literal] = STATE(109), - [sym_null_literal] = STATE(109), - [sym__expression_without_cascade] = STATE(791), - [sym__real_expression] = STATE(313), - [sym__below_relational_expression] = STATE(2641), - [sym_throw_expression_without_cascade] = STATE(791), - [sym_assignment_expression_without_cascade] = STATE(791), - [sym_assignable_expression] = STATE(2498), - [sym_function_expression] = STATE(109), - [sym_if_null_expression] = STATE(313), - [sym_conditional_expression] = STATE(313), - [sym_logical_or_expression] = STATE(313), - [sym_logical_and_expression] = STATE(313), - [sym_equality_expression] = STATE(313), - [sym_relational_expression] = STATE(313), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(109), - [sym_const_object_expression] = STATE(109), - [sym__primary] = STATE(109), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(109), - [sym_super] = STATE(2325), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1822), - [sym_hex_integer_literal] = ACTIONS(1822), - [sym_octal_integer_literal] = ACTIONS(1824), - [sym_binary_integer_literal] = ACTIONS(1824), - [sym_decimal_floating_point_literal] = ACTIONS(1824), - [sym_hex_floating_point_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [493] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3310), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3310), - [sym_assignment_expression] = STATE(3310), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [514] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3731), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3731), + [sym_assignment_expression] = STATE(3731), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -61093,69 +63977,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [494] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3665), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3665), - [sym_assignment_expression] = STATE(3665), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [515] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3086), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3086), + [sym_assignment_expression] = STATE(3086), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -61183,76 +64069,262 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [495] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3436), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3436), - [sym_assignment_expression] = STATE(3436), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [516] = { + [sym__literal] = STATE(1041), + [sym_symbol_literal] = STATE(1041), + [sym_true] = STATE(1041), + [sym_false] = STATE(1041), + [sym_string_literal] = STATE(1041), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1041), + [sym_set_or_map_literal] = STATE(1041), + [sym_null_literal] = STATE(1041), + [sym__expression] = STATE(2194), + [sym__real_expression] = STATE(1507), + [sym__below_relational_expression] = STATE(2693), + [sym_throw_expression] = STATE(2194), + [sym_assignment_expression] = STATE(2194), + [sym_assignable_expression] = STATE(2539), + [sym_function_expression] = STATE(1041), + [sym_if_null_expression] = STATE(1507), + [sym_conditional_expression] = STATE(1507), + [sym_logical_or_expression] = STATE(1507), + [sym_logical_and_expression] = STATE(1507), + [sym_equality_expression] = STATE(1507), + [sym_relational_expression] = STATE(1507), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1041), + [sym_const_object_expression] = STATE(1041), + [sym__primary] = STATE(1041), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1041), + [sym_super] = STATE(2359), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1710), + [sym_hex_integer_literal] = ACTIONS(1710), + [sym_octal_integer_literal] = ACTIONS(1712), + [sym_binary_integer_literal] = ACTIONS(1712), + [sym_decimal_floating_point_literal] = ACTIONS(1712), + [sym_hex_floating_point_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [517] = { + [sym__literal] = STATE(1041), + [sym_symbol_literal] = STATE(1041), + [sym_true] = STATE(1041), + [sym_false] = STATE(1041), + [sym_string_literal] = STATE(1041), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1041), + [sym_set_or_map_literal] = STATE(1041), + [sym_null_literal] = STATE(1041), + [sym__expression] = STATE(2062), + [sym__real_expression] = STATE(1507), + [sym__below_relational_expression] = STATE(2693), + [sym_throw_expression] = STATE(2062), + [sym_assignment_expression] = STATE(2062), + [sym_assignable_expression] = STATE(2539), + [sym_function_expression] = STATE(1041), + [sym_if_null_expression] = STATE(1507), + [sym_conditional_expression] = STATE(1507), + [sym_logical_or_expression] = STATE(1507), + [sym_logical_and_expression] = STATE(1507), + [sym_equality_expression] = STATE(1507), + [sym_relational_expression] = STATE(1507), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1041), + [sym_const_object_expression] = STATE(1041), + [sym__primary] = STATE(1041), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1041), + [sym_super] = STATE(2359), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1710), + [sym_hex_integer_literal] = ACTIONS(1710), + [sym_octal_integer_literal] = ACTIONS(1712), + [sym_binary_integer_literal] = ACTIONS(1712), + [sym_decimal_floating_point_literal] = ACTIONS(1712), + [sym_hex_floating_point_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [518] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression] = STATE(2107), + [sym__real_expression] = STATE(1499), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression] = STATE(2107), + [sym_assignment_expression] = STATE(2107), + [sym_assignable_expression] = STATE(2529), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1499), + [sym_conditional_expression] = STATE(1499), + [sym_logical_or_expression] = STATE(1499), + [sym_logical_and_expression] = STATE(1499), + [sym_equality_expression] = STATE(1499), + [sym_relational_expression] = STATE(1499), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -61263,79 +64335,265 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [496] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3468), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3468), - [sym_assignment_expression] = STATE(3468), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [519] = { + [sym__literal] = STATE(1046), + [sym_symbol_literal] = STATE(1046), + [sym_true] = STATE(1046), + [sym_false] = STATE(1046), + [sym_string_literal] = STATE(1046), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1046), + [sym_set_or_map_literal] = STATE(1046), + [sym_null_literal] = STATE(1046), + [sym__expression] = STATE(1399), + [sym__real_expression] = STATE(1004), + [sym__below_relational_expression] = STATE(2695), + [sym_throw_expression] = STATE(1399), + [sym_assignment_expression] = STATE(1399), + [sym_assignable_expression] = STATE(2534), + [sym_function_expression] = STATE(1046), + [sym_if_null_expression] = STATE(1004), + [sym_conditional_expression] = STATE(1004), + [sym_logical_or_expression] = STATE(1004), + [sym_logical_and_expression] = STATE(1004), + [sym_equality_expression] = STATE(1004), + [sym_relational_expression] = STATE(1004), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1046), + [sym_const_object_expression] = STATE(1046), + [sym__primary] = STATE(1046), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1046), + [sym_super] = STATE(2344), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1841), + [sym_hex_integer_literal] = ACTIONS(1841), + [sym_octal_integer_literal] = ACTIONS(1843), + [sym_binary_integer_literal] = ACTIONS(1843), + [sym_decimal_floating_point_literal] = ACTIONS(1843), + [sym_hex_floating_point_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [520] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(2303), + [sym__real_expression] = STATE(1923), + [sym__below_relational_expression] = STATE(2703), + [sym_throw_expression_without_cascade] = STATE(2303), + [sym_assignment_expression_without_cascade] = STATE(2303), + [sym_assignable_expression] = STATE(2528), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1923), + [sym_conditional_expression] = STATE(1923), + [sym_logical_or_expression] = STATE(1923), + [sym_logical_and_expression] = STATE(1923), + [sym_equality_expression] = STATE(1923), + [sym_relational_expression] = STATE(1923), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2353), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [521] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3556), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3556), + [sym_assignment_expression] = STATE(3556), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -61363,76 +64621,354 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [497] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression] = STATE(2098), - [sym__real_expression] = STATE(1597), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2098), - [sym_assignable_expression] = STATE(2480), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1597), - [sym_conditional_expression] = STATE(1597), - [sym_logical_or_expression] = STATE(1597), - [sym_logical_and_expression] = STATE(1597), - [sym_equality_expression] = STATE(1597), - [sym_relational_expression] = STATE(1597), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [522] = { + [sym__literal] = STATE(1046), + [sym_symbol_literal] = STATE(1046), + [sym_true] = STATE(1046), + [sym_false] = STATE(1046), + [sym_string_literal] = STATE(1046), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1046), + [sym_set_or_map_literal] = STATE(1046), + [sym_null_literal] = STATE(1046), + [sym__expression] = STATE(1400), + [sym__real_expression] = STATE(1004), + [sym__below_relational_expression] = STATE(2695), + [sym_throw_expression] = STATE(1400), + [sym_assignment_expression] = STATE(1400), + [sym_assignable_expression] = STATE(2534), + [sym_function_expression] = STATE(1046), + [sym_if_null_expression] = STATE(1004), + [sym_conditional_expression] = STATE(1004), + [sym_logical_or_expression] = STATE(1004), + [sym_logical_and_expression] = STATE(1004), + [sym_equality_expression] = STATE(1004), + [sym_relational_expression] = STATE(1004), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1046), + [sym_const_object_expression] = STATE(1046), + [sym__primary] = STATE(1046), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1046), + [sym_super] = STATE(2344), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1841), + [sym_hex_integer_literal] = ACTIONS(1841), + [sym_octal_integer_literal] = ACTIONS(1843), + [sym_binary_integer_literal] = ACTIONS(1843), + [sym_decimal_floating_point_literal] = ACTIONS(1843), + [sym_hex_floating_point_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [523] = { + [sym__literal] = STATE(103), + [sym_symbol_literal] = STATE(103), + [sym_true] = STATE(103), + [sym_false] = STATE(103), + [sym_string_literal] = STATE(103), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(103), + [sym_set_or_map_literal] = STATE(103), + [sym_null_literal] = STATE(103), + [sym__expression_without_cascade] = STATE(865), + [sym__real_expression] = STATE(369), + [sym__below_relational_expression] = STATE(2692), + [sym_throw_expression_without_cascade] = STATE(865), + [sym_assignment_expression_without_cascade] = STATE(865), + [sym_assignable_expression] = STATE(2546), + [sym_function_expression] = STATE(103), + [sym_if_null_expression] = STATE(369), + [sym_conditional_expression] = STATE(369), + [sym_logical_or_expression] = STATE(369), + [sym_logical_and_expression] = STATE(369), + [sym_equality_expression] = STATE(369), + [sym_relational_expression] = STATE(369), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(103), + [sym_const_object_expression] = STATE(103), + [sym__primary] = STATE(103), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(103), + [sym_super] = STATE(2330), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1826), + [sym_hex_integer_literal] = ACTIONS(1826), + [sym_octal_integer_literal] = ACTIONS(1828), + [sym_binary_integer_literal] = ACTIONS(1828), + [sym_decimal_floating_point_literal] = ACTIONS(1828), + [sym_hex_floating_point_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [524] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(2299), + [sym__real_expression] = STATE(1923), + [sym__below_relational_expression] = STATE(2703), + [sym_throw_expression_without_cascade] = STATE(2299), + [sym_assignment_expression_without_cascade] = STATE(2299), + [sym_assignable_expression] = STATE(2528), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1923), + [sym_conditional_expression] = STATE(1923), + [sym_logical_or_expression] = STATE(1923), + [sym_logical_and_expression] = STATE(1923), + [sym_equality_expression] = STATE(1923), + [sym_relational_expression] = STATE(1923), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2353), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [525] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3691), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3691), + [sym_assignment_expression_without_cascade] = STATE(3691), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -61443,86 +64979,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1818), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [498] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression] = STATE(1396), - [sym__real_expression] = STATE(969), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1396), - [sym_assignable_expression] = STATE(2479), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(969), - [sym_conditional_expression] = STATE(969), - [sym_logical_or_expression] = STATE(969), - [sym_logical_and_expression] = STATE(969), - [sym_equality_expression] = STATE(969), - [sym_relational_expression] = STATE(969), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [526] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3750), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3750), + [sym_assignment_expression] = STATE(3750), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -61533,349 +65071,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1630), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [499] = { - [sym__literal] = STATE(110), - [sym_symbol_literal] = STATE(110), - [sym_true] = STATE(110), - [sym_false] = STATE(110), - [sym_string_literal] = STATE(110), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(110), - [sym_set_or_map_literal] = STATE(110), - [sym_null_literal] = STATE(110), - [sym__expression] = STATE(227), - [sym__real_expression] = STATE(90), - [sym__below_relational_expression] = STATE(2654), - [sym_throw_expression] = STATE(227), - [sym_assignment_expression] = STATE(227), - [sym_assignable_expression] = STATE(2483), - [sym_function_expression] = STATE(110), - [sym_if_null_expression] = STATE(90), - [sym_conditional_expression] = STATE(90), - [sym_logical_or_expression] = STATE(90), - [sym_logical_and_expression] = STATE(90), - [sym_equality_expression] = STATE(90), - [sym_relational_expression] = STATE(90), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(110), - [sym_const_object_expression] = STATE(110), - [sym__primary] = STATE(110), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(110), - [sym_super] = STATE(2279), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1694), - [sym_hex_integer_literal] = ACTIONS(1694), - [sym_octal_integer_literal] = ACTIONS(1696), - [sym_binary_integer_literal] = ACTIONS(1696), - [sym_decimal_floating_point_literal] = ACTIONS(1696), - [sym_hex_floating_point_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [500] = { - [sym__literal] = STATE(1004), - [sym_symbol_literal] = STATE(1004), - [sym_true] = STATE(1004), - [sym_false] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1004), - [sym_set_or_map_literal] = STATE(1004), - [sym_null_literal] = STATE(1004), - [sym__expression_without_cascade] = STATE(1311), - [sym__real_expression] = STATE(981), - [sym__below_relational_expression] = STATE(2647), - [sym_throw_expression_without_cascade] = STATE(1311), - [sym_assignment_expression_without_cascade] = STATE(1311), - [sym_assignable_expression] = STATE(2487), - [sym_function_expression] = STATE(1004), - [sym_if_null_expression] = STATE(981), - [sym_conditional_expression] = STATE(981), - [sym_logical_or_expression] = STATE(981), - [sym_logical_and_expression] = STATE(981), - [sym_equality_expression] = STATE(981), - [sym_relational_expression] = STATE(981), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1004), - [sym_const_object_expression] = STATE(1004), - [sym__primary] = STATE(1004), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1004), - [sym_super] = STATE(2306), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1842), - [sym_hex_integer_literal] = ACTIONS(1842), - [sym_octal_integer_literal] = ACTIONS(1844), - [sym_binary_integer_literal] = ACTIONS(1844), - [sym_decimal_floating_point_literal] = ACTIONS(1844), - [sym_hex_floating_point_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [501] = { - [sym__literal] = STATE(1012), - [sym_symbol_literal] = STATE(1012), - [sym_true] = STATE(1012), - [sym_false] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1012), - [sym_set_or_map_literal] = STATE(1012), - [sym_null_literal] = STATE(1012), - [sym__expression_without_cascade] = STATE(1722), - [sym__real_expression] = STATE(1473), - [sym__below_relational_expression] = STATE(2660), - [sym_throw_expression_without_cascade] = STATE(1722), - [sym_assignment_expression_without_cascade] = STATE(1722), - [sym_assignable_expression] = STATE(2497), - [sym_function_expression] = STATE(1012), - [sym_if_null_expression] = STATE(1473), - [sym_conditional_expression] = STATE(1473), - [sym_logical_or_expression] = STATE(1473), - [sym_logical_and_expression] = STATE(1473), - [sym_equality_expression] = STATE(1473), - [sym_relational_expression] = STATE(1473), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1012), - [sym_const_object_expression] = STATE(1012), - [sym__primary] = STATE(1012), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1012), - [sym_super] = STATE(2319), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1640), - [sym_hex_integer_literal] = ACTIONS(1640), - [sym_octal_integer_literal] = ACTIONS(1642), - [sym_binary_integer_literal] = ACTIONS(1642), - [sym_decimal_floating_point_literal] = ACTIONS(1642), - [sym_hex_floating_point_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [527] = { + [sym__literal] = STATE(1037), + [sym_symbol_literal] = STATE(1037), + [sym_true] = STATE(1037), + [sym_false] = STATE(1037), + [sym_string_literal] = STATE(1037), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1037), + [sym_set_or_map_literal] = STATE(1037), + [sym_null_literal] = STATE(1037), + [sym__expression_without_cascade] = STATE(1802), + [sym__real_expression] = STATE(1509), + [sym__below_relational_expression] = STATE(2677), + [sym_throw_expression_without_cascade] = STATE(1802), + [sym_assignment_expression_without_cascade] = STATE(1802), + [sym_assignable_expression] = STATE(2516), + [sym_function_expression] = STATE(1037), + [sym_if_null_expression] = STATE(1509), + [sym_conditional_expression] = STATE(1509), + [sym_logical_or_expression] = STATE(1509), + [sym_logical_and_expression] = STATE(1509), + [sym_equality_expression] = STATE(1509), + [sym_relational_expression] = STATE(1509), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1037), + [sym_const_object_expression] = STATE(1037), + [sym__primary] = STATE(1037), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1037), + [sym_super] = STATE(2362), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1762), + [sym_hex_integer_literal] = ACTIONS(1762), + [sym_octal_integer_literal] = ACTIONS(1764), + [sym_binary_integer_literal] = ACTIONS(1764), + [sym_decimal_floating_point_literal] = ACTIONS(1764), + [sym_hex_floating_point_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [502] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(1421), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(1421), - [sym_assignment_expression] = STATE(1421), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [528] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3412), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3412), + [sym_assignment_expression] = STATE(3412), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -61903,76 +65265,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [503] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression_without_cascade] = STATE(1868), - [sym__real_expression] = STATE(1478), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression_without_cascade] = STATE(1868), - [sym_assignment_expression_without_cascade] = STATE(1868), - [sym_assignable_expression] = STATE(2474), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1478), - [sym_conditional_expression] = STATE(1478), - [sym_logical_or_expression] = STATE(1478), - [sym_logical_and_expression] = STATE(1478), - [sym_equality_expression] = STATE(1478), - [sym_relational_expression] = STATE(1478), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [529] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression] = STATE(2145), + [sym__real_expression] = STATE(1634), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2145), + [sym_assignable_expression] = STATE(2545), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1634), + [sym_conditional_expression] = STATE(1634), + [sym_logical_or_expression] = STATE(1634), + [sym_logical_and_expression] = STATE(1634), + [sym_equality_expression] = STATE(1634), + [sym_relational_expression] = STATE(1634), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -61983,79 +65347,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1820), + [anon_sym_throw] = ACTIONS(1794), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [504] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3473), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3473), - [sym_assignment_expression] = STATE(3473), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [530] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3474), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3474), + [sym_assignment_expression] = STATE(3474), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -62083,76 +65449,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [505] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression_without_cascade] = STATE(1861), - [sym__real_expression] = STATE(1478), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression_without_cascade] = STATE(1861), - [sym_assignment_expression_without_cascade] = STATE(1861), - [sym_assignable_expression] = STATE(2474), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1478), - [sym_conditional_expression] = STATE(1478), - [sym_logical_or_expression] = STATE(1478), - [sym_logical_and_expression] = STATE(1478), - [sym_equality_expression] = STATE(1478), - [sym_relational_expression] = STATE(1478), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [531] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression] = STATE(1448), + [sym__real_expression] = STATE(1005), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression] = STATE(1448), + [sym_assignment_expression] = STATE(1448), + [sym_assignable_expression] = STATE(2541), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1005), + [sym_conditional_expression] = STATE(1005), + [sym_logical_or_expression] = STATE(1005), + [sym_logical_and_expression] = STATE(1005), + [sym_equality_expression] = STATE(1005), + [sym_relational_expression] = STATE(1005), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -62163,266 +65531,364 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1820), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [506] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression_without_cascade] = STATE(1860), - [sym__real_expression] = STATE(1478), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression_without_cascade] = STATE(1860), - [sym_assignment_expression_without_cascade] = STATE(1860), - [sym_assignable_expression] = STATE(2474), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1478), - [sym_conditional_expression] = STATE(1478), - [sym_logical_or_expression] = STATE(1478), - [sym_logical_and_expression] = STATE(1478), - [sym_equality_expression] = STATE(1478), - [sym_relational_expression] = STATE(1478), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(37), + [532] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(2299), + [sym__real_expression] = STATE(1626), + [sym__below_relational_expression] = STATE(2686), + [sym_throw_expression_without_cascade] = STATE(2299), + [sym_assignment_expression_without_cascade] = STATE(2299), + [sym_assignable_expression] = STATE(2544), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1626), + [sym_conditional_expression] = STATE(1626), + [sym_logical_or_expression] = STATE(1626), + [sym_logical_and_expression] = STATE(1626), + [sym_equality_expression] = STATE(1626), + [sym_relational_expression] = STATE(1626), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2334), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(1700), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(1702), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [507] = { - [sym__literal] = STATE(1012), - [sym_symbol_literal] = STATE(1012), - [sym_true] = STATE(1012), - [sym_false] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1012), - [sym_set_or_map_literal] = STATE(1012), - [sym_null_literal] = STATE(1012), - [sym__expression] = STATE(1801), - [sym__real_expression] = STATE(1263), - [sym__below_relational_expression] = STATE(2660), - [sym_throw_expression] = STATE(1801), - [sym_assignment_expression] = STATE(1801), - [sym_assignable_expression] = STATE(2502), - [sym_function_expression] = STATE(1012), - [sym_if_null_expression] = STATE(1263), - [sym_conditional_expression] = STATE(1263), - [sym_logical_or_expression] = STATE(1263), - [sym_logical_and_expression] = STATE(1263), - [sym_equality_expression] = STATE(1263), - [sym_relational_expression] = STATE(1263), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1012), - [sym_const_object_expression] = STATE(1012), - [sym__primary] = STATE(1012), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1012), - [sym_super] = STATE(2319), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1640), - [sym_hex_integer_literal] = ACTIONS(1640), - [sym_octal_integer_literal] = ACTIONS(1642), - [sym_binary_integer_literal] = ACTIONS(1642), - [sym_decimal_floating_point_literal] = ACTIONS(1642), - [sym_hex_floating_point_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [533] = { + [sym__literal] = STATE(1041), + [sym_symbol_literal] = STATE(1041), + [sym_true] = STATE(1041), + [sym_false] = STATE(1041), + [sym_string_literal] = STATE(1041), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1041), + [sym_set_or_map_literal] = STATE(1041), + [sym_null_literal] = STATE(1041), + [sym__expression_without_cascade] = STATE(2050), + [sym__real_expression] = STATE(1557), + [sym__below_relational_expression] = STATE(2693), + [sym_throw_expression_without_cascade] = STATE(2050), + [sym_assignment_expression_without_cascade] = STATE(2050), + [sym_assignable_expression] = STATE(2524), + [sym_function_expression] = STATE(1041), + [sym_if_null_expression] = STATE(1557), + [sym_conditional_expression] = STATE(1557), + [sym_logical_or_expression] = STATE(1557), + [sym_logical_and_expression] = STATE(1557), + [sym_equality_expression] = STATE(1557), + [sym_relational_expression] = STATE(1557), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1041), + [sym_const_object_expression] = STATE(1041), + [sym__primary] = STATE(1041), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1041), + [sym_super] = STATE(2359), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1710), + [sym_hex_integer_literal] = ACTIONS(1710), + [sym_octal_integer_literal] = ACTIONS(1712), + [sym_binary_integer_literal] = ACTIONS(1712), + [sym_decimal_floating_point_literal] = ACTIONS(1712), + [sym_hex_floating_point_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [508] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3630), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3630), - [sym_assignment_expression] = STATE(3630), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [534] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(2303), + [sym__real_expression] = STATE(1626), + [sym__below_relational_expression] = STATE(2686), + [sym_throw_expression_without_cascade] = STATE(2303), + [sym_assignment_expression_without_cascade] = STATE(2303), + [sym_assignable_expression] = STATE(2544), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1626), + [sym_conditional_expression] = STATE(1626), + [sym_logical_or_expression] = STATE(1626), + [sym_logical_and_expression] = STATE(1626), + [sym_equality_expression] = STATE(1626), + [sym_relational_expression] = STATE(1626), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2334), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [535] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression] = STATE(1446), + [sym__real_expression] = STATE(1005), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression] = STATE(1446), + [sym_assignment_expression] = STATE(1446), + [sym_assignable_expression] = STATE(2541), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1005), + [sym_conditional_expression] = STATE(1005), + [sym_logical_or_expression] = STATE(1005), + [sym_logical_and_expression] = STATE(1005), + [sym_equality_expression] = STATE(1005), + [sym_relational_expression] = STATE(1005), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -62433,86 +65899,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1869), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [509] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression] = STATE(1744), - [sym__real_expression] = STATE(1551), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_assignable_expression] = STATE(2493), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1551), - [sym_conditional_expression] = STATE(1551), - [sym_logical_or_expression] = STATE(1551), - [sym_logical_and_expression] = STATE(1551), - [sym_equality_expression] = STATE(1551), - [sym_relational_expression] = STATE(1551), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [536] = { + [sym__literal] = STATE(1031), + [sym_symbol_literal] = STATE(1031), + [sym_true] = STATE(1031), + [sym_false] = STATE(1031), + [sym_string_literal] = STATE(1031), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1031), + [sym_set_or_map_literal] = STATE(1031), + [sym_null_literal] = STATE(1031), + [sym__expression] = STATE(2097), + [sym__real_expression] = STATE(1499), + [sym__below_relational_expression] = STATE(2683), + [sym_throw_expression] = STATE(2097), + [sym_assignment_expression] = STATE(2097), + [sym_assignable_expression] = STATE(2529), + [sym_function_expression] = STATE(1031), + [sym_if_null_expression] = STATE(1499), + [sym_conditional_expression] = STATE(1499), + [sym_logical_or_expression] = STATE(1499), + [sym_logical_and_expression] = STATE(1499), + [sym_equality_expression] = STATE(1499), + [sym_relational_expression] = STATE(1499), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1031), + [sym_const_object_expression] = STATE(1031), + [sym__primary] = STATE(1031), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1031), + [sym_super] = STATE(2316), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(1790), + [sym_hex_integer_literal] = ACTIONS(1790), + [sym_octal_integer_literal] = ACTIONS(1792), + [sym_binary_integer_literal] = ACTIONS(1792), + [sym_decimal_floating_point_literal] = ACTIONS(1792), + [sym_hex_floating_point_literal] = ACTIONS(1790), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -62523,86 +65991,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1851), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(1796), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(1798), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [510] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression] = STATE(1796), - [sym__real_expression] = STATE(1551), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression] = STATE(1796), - [sym_assignment_expression] = STATE(1796), - [sym_assignable_expression] = STATE(2493), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1551), - [sym_conditional_expression] = STATE(1551), - [sym_logical_or_expression] = STATE(1551), - [sym_logical_and_expression] = STATE(1551), - [sym_equality_expression] = STATE(1551), - [sym_relational_expression] = STATE(1551), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [537] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3415), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3415), + [sym_assignment_expression] = STATE(3415), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -62613,259 +66083,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [511] = { - [sym__literal] = STATE(1012), - [sym_symbol_literal] = STATE(1012), - [sym_true] = STATE(1012), - [sym_false] = STATE(1012), - [sym_string_literal] = STATE(1012), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1012), - [sym_set_or_map_literal] = STATE(1012), - [sym_null_literal] = STATE(1012), - [sym__expression] = STATE(1880), - [sym__real_expression] = STATE(1263), - [sym__below_relational_expression] = STATE(2660), - [sym_throw_expression] = STATE(1880), - [sym_assignment_expression] = STATE(1880), - [sym_assignable_expression] = STATE(2502), - [sym_function_expression] = STATE(1012), - [sym_if_null_expression] = STATE(1263), - [sym_conditional_expression] = STATE(1263), - [sym_logical_or_expression] = STATE(1263), - [sym_logical_and_expression] = STATE(1263), - [sym_equality_expression] = STATE(1263), - [sym_relational_expression] = STATE(1263), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1012), - [sym_const_object_expression] = STATE(1012), - [sym__primary] = STATE(1012), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1012), - [sym_super] = STATE(2319), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1640), - [sym_hex_integer_literal] = ACTIONS(1640), - [sym_octal_integer_literal] = ACTIONS(1642), - [sym_binary_integer_literal] = ACTIONS(1642), - [sym_decimal_floating_point_literal] = ACTIONS(1642), - [sym_hex_floating_point_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [512] = { - [sym__literal] = STATE(1009), - [sym_symbol_literal] = STATE(1009), - [sym_true] = STATE(1009), - [sym_false] = STATE(1009), - [sym_string_literal] = STATE(1009), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1009), - [sym_set_or_map_literal] = STATE(1009), - [sym_null_literal] = STATE(1009), - [sym__expression] = STATE(2095), - [sym__real_expression] = STATE(1465), - [sym__below_relational_expression] = STATE(2661), - [sym_throw_expression] = STATE(2095), - [sym_assignment_expression] = STATE(2095), - [sym_assignable_expression] = STATE(2500), - [sym_function_expression] = STATE(1009), - [sym_if_null_expression] = STATE(1465), - [sym_conditional_expression] = STATE(1465), - [sym_logical_or_expression] = STATE(1465), - [sym_logical_and_expression] = STATE(1465), - [sym_equality_expression] = STATE(1465), - [sym_relational_expression] = STATE(1465), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1009), - [sym_const_object_expression] = STATE(1009), - [sym__primary] = STATE(1009), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1009), - [sym_super] = STATE(2313), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1800), - [sym_hex_integer_literal] = ACTIONS(1800), - [sym_octal_integer_literal] = ACTIONS(1802), - [sym_binary_integer_literal] = ACTIONS(1802), - [sym_decimal_floating_point_literal] = ACTIONS(1802), - [sym_hex_floating_point_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [513] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3625), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3625), - [sym_assignment_expression] = STATE(3625), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [538] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3786), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3786), + [sym_assignment_expression_without_cascade] = STATE(3786), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -62883,439 +66175,265 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [514] = { - [sym__literal] = STATE(110), - [sym_symbol_literal] = STATE(110), - [sym_true] = STATE(110), - [sym_false] = STATE(110), - [sym_string_literal] = STATE(110), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(110), - [sym_set_or_map_literal] = STATE(110), - [sym_null_literal] = STATE(110), - [sym__expression_without_cascade] = STATE(234), - [sym__real_expression] = STATE(97), - [sym__below_relational_expression] = STATE(2654), - [sym_throw_expression_without_cascade] = STATE(234), - [sym_assignment_expression_without_cascade] = STATE(234), - [sym_assignable_expression] = STATE(2473), - [sym_function_expression] = STATE(110), - [sym_if_null_expression] = STATE(97), - [sym_conditional_expression] = STATE(97), - [sym_logical_or_expression] = STATE(97), - [sym_logical_and_expression] = STATE(97), - [sym_equality_expression] = STATE(97), - [sym_relational_expression] = STATE(97), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(110), - [sym_const_object_expression] = STATE(110), - [sym__primary] = STATE(110), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(110), - [sym_super] = STATE(2279), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1694), - [sym_hex_integer_literal] = ACTIONS(1694), - [sym_octal_integer_literal] = ACTIONS(1696), - [sym_binary_integer_literal] = ACTIONS(1696), - [sym_decimal_floating_point_literal] = ACTIONS(1696), - [sym_hex_floating_point_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [515] = { - [sym__literal] = STATE(1009), - [sym_symbol_literal] = STATE(1009), - [sym_true] = STATE(1009), - [sym_false] = STATE(1009), - [sym_string_literal] = STATE(1009), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1009), - [sym_set_or_map_literal] = STATE(1009), - [sym_null_literal] = STATE(1009), - [sym__expression] = STATE(2023), - [sym__real_expression] = STATE(1465), - [sym__below_relational_expression] = STATE(2661), - [sym_throw_expression] = STATE(2023), - [sym_assignment_expression] = STATE(2023), - [sym_assignable_expression] = STATE(2500), - [sym_function_expression] = STATE(1009), - [sym_if_null_expression] = STATE(1465), - [sym_conditional_expression] = STATE(1465), - [sym_logical_or_expression] = STATE(1465), - [sym_logical_and_expression] = STATE(1465), - [sym_equality_expression] = STATE(1465), - [sym_relational_expression] = STATE(1465), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1009), - [sym_const_object_expression] = STATE(1009), - [sym__primary] = STATE(1009), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1009), - [sym_super] = STATE(2313), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1800), - [sym_hex_integer_literal] = ACTIONS(1800), - [sym_octal_integer_literal] = ACTIONS(1802), - [sym_binary_integer_literal] = ACTIONS(1802), - [sym_decimal_floating_point_literal] = ACTIONS(1802), - [sym_hex_floating_point_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [516] = { - [sym__literal] = STATE(1004), - [sym_symbol_literal] = STATE(1004), - [sym_true] = STATE(1004), - [sym_false] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1004), - [sym_set_or_map_literal] = STATE(1004), - [sym_null_literal] = STATE(1004), - [sym__expression_without_cascade] = STATE(1454), - [sym__real_expression] = STATE(981), - [sym__below_relational_expression] = STATE(2647), - [sym_throw_expression_without_cascade] = STATE(1454), - [sym_assignment_expression_without_cascade] = STATE(1454), - [sym_assignable_expression] = STATE(2487), - [sym_function_expression] = STATE(1004), - [sym_if_null_expression] = STATE(981), - [sym_conditional_expression] = STATE(981), - [sym_logical_or_expression] = STATE(981), - [sym_logical_and_expression] = STATE(981), - [sym_equality_expression] = STATE(981), - [sym_relational_expression] = STATE(981), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1004), - [sym_const_object_expression] = STATE(1004), - [sym__primary] = STATE(1004), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1004), - [sym_super] = STATE(2306), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1842), - [sym_hex_integer_literal] = ACTIONS(1842), - [sym_octal_integer_literal] = ACTIONS(1844), - [sym_binary_integer_literal] = ACTIONS(1844), - [sym_decimal_floating_point_literal] = ACTIONS(1844), - [sym_hex_floating_point_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [539] = { + [sym__literal] = STATE(1046), + [sym_symbol_literal] = STATE(1046), + [sym_true] = STATE(1046), + [sym_false] = STATE(1046), + [sym_string_literal] = STATE(1046), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1046), + [sym_set_or_map_literal] = STATE(1046), + [sym_null_literal] = STATE(1046), + [sym__expression] = STATE(1440), + [sym__real_expression] = STATE(1004), + [sym__below_relational_expression] = STATE(2695), + [sym_throw_expression] = STATE(1440), + [sym_assignment_expression] = STATE(1440), + [sym_assignable_expression] = STATE(2534), + [sym_function_expression] = STATE(1046), + [sym_if_null_expression] = STATE(1004), + [sym_conditional_expression] = STATE(1004), + [sym_logical_or_expression] = STATE(1004), + [sym_logical_and_expression] = STATE(1004), + [sym_equality_expression] = STATE(1004), + [sym_relational_expression] = STATE(1004), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1046), + [sym_const_object_expression] = STATE(1046), + [sym__primary] = STATE(1046), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1046), + [sym_super] = STATE(2344), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1841), + [sym_hex_integer_literal] = ACTIONS(1841), + [sym_octal_integer_literal] = ACTIONS(1843), + [sym_binary_integer_literal] = ACTIONS(1843), + [sym_decimal_floating_point_literal] = ACTIONS(1843), + [sym_hex_floating_point_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [517] = { - [sym__literal] = STATE(1004), - [sym_symbol_literal] = STATE(1004), - [sym_true] = STATE(1004), - [sym_false] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1004), - [sym_set_or_map_literal] = STATE(1004), - [sym_null_literal] = STATE(1004), - [sym__expression] = STATE(1445), - [sym__real_expression] = STATE(968), - [sym__below_relational_expression] = STATE(2647), - [sym_throw_expression] = STATE(1445), - [sym_assignment_expression] = STATE(1445), - [sym_assignable_expression] = STATE(2494), - [sym_function_expression] = STATE(1004), - [sym_if_null_expression] = STATE(968), - [sym_conditional_expression] = STATE(968), - [sym_logical_or_expression] = STATE(968), - [sym_logical_and_expression] = STATE(968), - [sym_equality_expression] = STATE(968), - [sym_relational_expression] = STATE(968), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1004), - [sym_const_object_expression] = STATE(1004), - [sym__primary] = STATE(1004), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1004), - [sym_super] = STATE(2306), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1842), - [sym_hex_integer_literal] = ACTIONS(1842), - [sym_octal_integer_literal] = ACTIONS(1844), - [sym_binary_integer_literal] = ACTIONS(1844), - [sym_decimal_floating_point_literal] = ACTIONS(1844), - [sym_hex_floating_point_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [540] = { + [sym__literal] = STATE(1046), + [sym_symbol_literal] = STATE(1046), + [sym_true] = STATE(1046), + [sym_false] = STATE(1046), + [sym_string_literal] = STATE(1046), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1046), + [sym_set_or_map_literal] = STATE(1046), + [sym_null_literal] = STATE(1046), + [sym__expression] = STATE(1396), + [sym__real_expression] = STATE(1004), + [sym__below_relational_expression] = STATE(2695), + [sym_throw_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1396), + [sym_assignable_expression] = STATE(2534), + [sym_function_expression] = STATE(1046), + [sym_if_null_expression] = STATE(1004), + [sym_conditional_expression] = STATE(1004), + [sym_logical_or_expression] = STATE(1004), + [sym_logical_and_expression] = STATE(1004), + [sym_equality_expression] = STATE(1004), + [sym_relational_expression] = STATE(1004), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1046), + [sym_const_object_expression] = STATE(1046), + [sym__primary] = STATE(1046), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1046), + [sym_super] = STATE(2344), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1841), + [sym_hex_integer_literal] = ACTIONS(1841), + [sym_octal_integer_literal] = ACTIONS(1843), + [sym_binary_integer_literal] = ACTIONS(1843), + [sym_decimal_floating_point_literal] = ACTIONS(1843), + [sym_hex_floating_point_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [518] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3674), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3674), - [sym_assignment_expression] = STATE(3674), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [541] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3254), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3254), + [sym_assignment_expression] = STATE(3254), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -63343,159 +66461,163 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [519] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(2265), - [sym__real_expression] = STATE(1900), - [sym__below_relational_expression] = STATE(2633), - [sym_throw_expression_without_cascade] = STATE(2265), - [sym_assignment_expression_without_cascade] = STATE(2265), - [sym_assignable_expression] = STATE(2496), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1900), - [sym_conditional_expression] = STATE(1900), - [sym_logical_or_expression] = STATE(1900), - [sym_logical_and_expression] = STATE(1900), - [sym_equality_expression] = STATE(1900), - [sym_relational_expression] = STATE(1900), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2310), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [542] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(1820), + [sym__real_expression] = STATE(1923), + [sym__below_relational_expression] = STATE(2703), + [sym_throw_expression_without_cascade] = STATE(1820), + [sym_assignment_expression_without_cascade] = STATE(1820), + [sym_assignable_expression] = STATE(2520), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1923), + [sym_conditional_expression] = STATE(1923), + [sym_logical_or_expression] = STATE(1923), + [sym_logical_and_expression] = STATE(1923), + [sym_equality_expression] = STATE(1923), + [sym_relational_expression] = STATE(1923), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2353), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [520] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(3673), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(3673), - [sym_assignment_expression_without_cascade] = STATE(3673), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [543] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(1415), + [sym__real_expression] = STATE(1931), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression_without_cascade] = STATE(1415), + [sym_assignment_expression_without_cascade] = STATE(1415), + [sym_assignable_expression] = STATE(2522), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1931), + [sym_conditional_expression] = STATE(1931), + [sym_logical_or_expression] = STATE(1931), + [sym_logical_and_expression] = STATE(1931), + [sym_equality_expression] = STATE(1931), + [sym_relational_expression] = STATE(1931), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -63513,266 +66635,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [521] = { - [sym__literal] = STATE(110), - [sym_symbol_literal] = STATE(110), - [sym_true] = STATE(110), - [sym_false] = STATE(110), - [sym_string_literal] = STATE(110), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(110), - [sym_set_or_map_literal] = STATE(110), - [sym_null_literal] = STATE(110), - [sym__expression_without_cascade] = STATE(237), - [sym__real_expression] = STATE(97), - [sym__below_relational_expression] = STATE(2654), - [sym_throw_expression_without_cascade] = STATE(237), - [sym_assignment_expression_without_cascade] = STATE(237), - [sym_assignable_expression] = STATE(2473), - [sym_function_expression] = STATE(110), - [sym_if_null_expression] = STATE(97), - [sym_conditional_expression] = STATE(97), - [sym_logical_or_expression] = STATE(97), - [sym_logical_and_expression] = STATE(97), - [sym_equality_expression] = STATE(97), - [sym_relational_expression] = STATE(97), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(110), - [sym_const_object_expression] = STATE(110), - [sym__primary] = STATE(110), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(110), - [sym_super] = STATE(2279), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1694), - [sym_hex_integer_literal] = ACTIONS(1694), - [sym_octal_integer_literal] = ACTIONS(1696), - [sym_binary_integer_literal] = ACTIONS(1696), - [sym_decimal_floating_point_literal] = ACTIONS(1696), - [sym_hex_floating_point_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [522] = { - [sym__literal] = STATE(109), - [sym_symbol_literal] = STATE(109), - [sym_true] = STATE(109), - [sym_false] = STATE(109), - [sym_string_literal] = STATE(109), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(109), - [sym_set_or_map_literal] = STATE(109), - [sym_null_literal] = STATE(109), - [sym__expression_without_cascade] = STATE(851), - [sym__real_expression] = STATE(313), - [sym__below_relational_expression] = STATE(2641), - [sym_throw_expression_without_cascade] = STATE(851), - [sym_assignment_expression_without_cascade] = STATE(851), - [sym_assignable_expression] = STATE(2498), - [sym_function_expression] = STATE(109), - [sym_if_null_expression] = STATE(313), - [sym_conditional_expression] = STATE(313), - [sym_logical_or_expression] = STATE(313), - [sym_logical_and_expression] = STATE(313), - [sym_equality_expression] = STATE(313), - [sym_relational_expression] = STATE(313), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(109), - [sym_const_object_expression] = STATE(109), - [sym__primary] = STATE(109), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(109), - [sym_super] = STATE(2325), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1822), - [sym_hex_integer_literal] = ACTIONS(1822), - [sym_octal_integer_literal] = ACTIONS(1824), - [sym_binary_integer_literal] = ACTIONS(1824), - [sym_decimal_floating_point_literal] = ACTIONS(1824), - [sym_hex_floating_point_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [523] = { - [sym__literal] = STATE(998), - [sym_symbol_literal] = STATE(998), - [sym_true] = STATE(998), - [sym_false] = STATE(998), - [sym_string_literal] = STATE(998), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(998), - [sym_set_or_map_literal] = STATE(998), - [sym_null_literal] = STATE(998), - [sym__expression] = STATE(1421), - [sym__real_expression] = STATE(1037), - [sym__below_relational_expression] = STATE(2639), - [sym_throw_expression] = STATE(1421), - [sym_assignment_expression] = STATE(1421), - [sym_assignable_expression] = STATE(2475), - [sym_function_expression] = STATE(998), - [sym_if_null_expression] = STATE(1037), - [sym_conditional_expression] = STATE(1037), - [sym_logical_or_expression] = STATE(1037), - [sym_logical_and_expression] = STATE(1037), - [sym_equality_expression] = STATE(1037), - [sym_relational_expression] = STATE(1037), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(998), - [sym_const_object_expression] = STATE(998), - [sym__primary] = STATE(998), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(998), - [sym_super] = STATE(2322), - [sym_identifier] = ACTIONS(857), + [544] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2285), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(2285), + [sym_assignment_expression_without_cascade] = STATE(2285), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1626), - [sym_hex_integer_literal] = ACTIONS(1626), - [sym_octal_integer_literal] = ACTIONS(1628), - [sym_binary_integer_literal] = ACTIONS(1628), - [sym_decimal_floating_point_literal] = ACTIONS(1628), - [sym_hex_floating_point_literal] = ACTIONS(1626), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -63783,79 +66727,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1688), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [524] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3609), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3609), - [sym_assignment_expression] = STATE(3609), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [545] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2279), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(2279), + [sym_assignment_expression_without_cascade] = STATE(2279), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -63873,176 +66819,180 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [525] = { - [sym__literal] = STATE(1004), - [sym_symbol_literal] = STATE(1004), - [sym_true] = STATE(1004), - [sym_false] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1004), - [sym_set_or_map_literal] = STATE(1004), - [sym_null_literal] = STATE(1004), - [sym__expression] = STATE(1431), - [sym__real_expression] = STATE(968), - [sym__below_relational_expression] = STATE(2647), - [sym_throw_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1431), - [sym_assignable_expression] = STATE(2494), - [sym_function_expression] = STATE(1004), - [sym_if_null_expression] = STATE(968), - [sym_conditional_expression] = STATE(968), - [sym_logical_or_expression] = STATE(968), - [sym_logical_and_expression] = STATE(968), - [sym_equality_expression] = STATE(968), - [sym_relational_expression] = STATE(968), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1004), - [sym_const_object_expression] = STATE(1004), - [sym__primary] = STATE(1004), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1004), - [sym_super] = STATE(2306), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1842), - [sym_hex_integer_literal] = ACTIONS(1842), - [sym_octal_integer_literal] = ACTIONS(1844), - [sym_binary_integer_literal] = ACTIONS(1844), - [sym_decimal_floating_point_literal] = ACTIONS(1844), - [sym_hex_floating_point_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [546] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(2308), + [sym__real_expression] = STATE(1626), + [sym__below_relational_expression] = STATE(2686), + [sym_throw_expression_without_cascade] = STATE(2308), + [sym_assignment_expression_without_cascade] = STATE(2308), + [sym_assignable_expression] = STATE(2544), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1626), + [sym_conditional_expression] = STATE(1626), + [sym_logical_or_expression] = STATE(1626), + [sym_logical_and_expression] = STATE(1626), + [sym_equality_expression] = STATE(1626), + [sym_relational_expression] = STATE(1626), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2334), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [526] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression] = STATE(2156), - [sym__real_expression] = STATE(1482), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression] = STATE(2156), - [sym_assignment_expression] = STATE(2156), - [sym_assignable_expression] = STATE(2478), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1482), - [sym_conditional_expression] = STATE(1482), - [sym_logical_or_expression] = STATE(1482), - [sym_logical_and_expression] = STATE(1482), - [sym_equality_expression] = STATE(1482), - [sym_relational_expression] = STATE(1482), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [547] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2279), + [sym__real_expression] = STATE(1931), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression_without_cascade] = STATE(2279), + [sym_assignment_expression_without_cascade] = STATE(2279), + [sym_assignable_expression] = STATE(2522), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1931), + [sym_conditional_expression] = STATE(1931), + [sym_logical_or_expression] = STATE(1931), + [sym_logical_and_expression] = STATE(1931), + [sym_equality_expression] = STATE(1931), + [sym_relational_expression] = STATE(1931), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -64053,709 +67003,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [527] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression] = STATE(1070), - [sym__real_expression] = STATE(554), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1070), - [sym_assignable_expression] = STATE(2485), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(554), - [sym_conditional_expression] = STATE(554), - [sym_logical_or_expression] = STATE(554), - [sym_logical_and_expression] = STATE(554), - [sym_equality_expression] = STATE(554), - [sym_relational_expression] = STATE(554), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [528] = { - [sym__literal] = STATE(109), - [sym_symbol_literal] = STATE(109), - [sym_true] = STATE(109), - [sym_false] = STATE(109), - [sym_string_literal] = STATE(109), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(109), - [sym_set_or_map_literal] = STATE(109), - [sym_null_literal] = STATE(109), - [sym__expression] = STATE(812), - [sym__real_expression] = STATE(193), - [sym__below_relational_expression] = STATE(2641), - [sym_throw_expression] = STATE(812), - [sym_assignment_expression] = STATE(812), - [sym_assignable_expression] = STATE(2503), - [sym_function_expression] = STATE(109), - [sym_if_null_expression] = STATE(193), - [sym_conditional_expression] = STATE(193), - [sym_logical_or_expression] = STATE(193), - [sym_logical_and_expression] = STATE(193), - [sym_equality_expression] = STATE(193), - [sym_relational_expression] = STATE(193), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(109), - [sym_const_object_expression] = STATE(109), - [sym__primary] = STATE(109), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(109), - [sym_super] = STATE(2325), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1822), - [sym_hex_integer_literal] = ACTIONS(1822), - [sym_octal_integer_literal] = ACTIONS(1824), - [sym_binary_integer_literal] = ACTIONS(1824), - [sym_decimal_floating_point_literal] = ACTIONS(1824), - [sym_hex_floating_point_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [529] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(1727), - [sym__real_expression] = STATE(1900), - [sym__below_relational_expression] = STATE(2633), - [sym_throw_expression_without_cascade] = STATE(1727), - [sym_assignment_expression_without_cascade] = STATE(1727), - [sym_assignable_expression] = STATE(2486), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1900), - [sym_conditional_expression] = STATE(1900), - [sym_logical_or_expression] = STATE(1900), - [sym_logical_and_expression] = STATE(1900), - [sym_equality_expression] = STATE(1900), - [sym_relational_expression] = STATE(1900), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2310), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [530] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(2265), - [sym__real_expression] = STATE(1579), - [sym__below_relational_expression] = STATE(2634), - [sym_throw_expression_without_cascade] = STATE(2265), - [sym_assignment_expression_without_cascade] = STATE(2265), - [sym_assignable_expression] = STATE(2490), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1579), - [sym_conditional_expression] = STATE(1579), - [sym_logical_or_expression] = STATE(1579), - [sym_logical_and_expression] = STATE(1579), - [sym_equality_expression] = STATE(1579), - [sym_relational_expression] = STATE(1579), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2301), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [531] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(1722), - [sym__real_expression] = STATE(1900), - [sym__below_relational_expression] = STATE(2633), - [sym_throw_expression_without_cascade] = STATE(1722), - [sym_assignment_expression_without_cascade] = STATE(1722), - [sym_assignable_expression] = STATE(2486), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1900), - [sym_conditional_expression] = STATE(1900), - [sym_logical_or_expression] = STATE(1900), - [sym_logical_and_expression] = STATE(1900), - [sym_equality_expression] = STATE(1900), - [sym_relational_expression] = STATE(1900), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2310), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [532] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(1059), - [sym__real_expression] = STATE(558), - [sym__below_relational_expression] = STATE(2659), - [sym_throw_expression_without_cascade] = STATE(1059), - [sym_assignment_expression_without_cascade] = STATE(1059), - [sym_assignable_expression] = STATE(2471), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(558), - [sym_conditional_expression] = STATE(558), - [sym_logical_or_expression] = STATE(558), - [sym_logical_and_expression] = STATE(558), - [sym_equality_expression] = STATE(558), - [sym_relational_expression] = STATE(558), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2316), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [533] = { - [sym__literal] = STATE(1009), - [sym_symbol_literal] = STATE(1009), - [sym_true] = STATE(1009), - [sym_false] = STATE(1009), - [sym_string_literal] = STATE(1009), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1009), - [sym_set_or_map_literal] = STATE(1009), - [sym_null_literal] = STATE(1009), - [sym__expression_without_cascade] = STATE(2066), - [sym__real_expression] = STATE(1534), - [sym__below_relational_expression] = STATE(2661), - [sym_throw_expression_without_cascade] = STATE(2066), - [sym_assignment_expression_without_cascade] = STATE(2066), - [sym_assignable_expression] = STATE(2504), - [sym_function_expression] = STATE(1009), - [sym_if_null_expression] = STATE(1534), - [sym_conditional_expression] = STATE(1534), - [sym_logical_or_expression] = STATE(1534), - [sym_logical_and_expression] = STATE(1534), - [sym_equality_expression] = STATE(1534), - [sym_relational_expression] = STATE(1534), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1009), - [sym_const_object_expression] = STATE(1009), - [sym__primary] = STATE(1009), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1009), - [sym_super] = STATE(2313), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1800), - [sym_hex_integer_literal] = ACTIONS(1800), - [sym_octal_integer_literal] = ACTIONS(1802), - [sym_binary_integer_literal] = ACTIONS(1802), - [sym_decimal_floating_point_literal] = ACTIONS(1802), - [sym_hex_floating_point_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [548] = { + [sym__literal] = STATE(1044), + [sym_symbol_literal] = STATE(1044), + [sym_true] = STATE(1044), + [sym_false] = STATE(1044), + [sym_string_literal] = STATE(1044), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1044), + [sym_set_or_map_literal] = STATE(1044), + [sym_null_literal] = STATE(1044), + [sym__expression_without_cascade] = STATE(1834), + [sym__real_expression] = STATE(1923), + [sym__below_relational_expression] = STATE(2703), + [sym_throw_expression_without_cascade] = STATE(1834), + [sym_assignment_expression_without_cascade] = STATE(1834), + [sym_assignable_expression] = STATE(2520), + [sym_function_expression] = STATE(1044), + [sym_if_null_expression] = STATE(1923), + [sym_conditional_expression] = STATE(1923), + [sym_logical_or_expression] = STATE(1923), + [sym_logical_and_expression] = STATE(1923), + [sym_equality_expression] = STATE(1923), + [sym_relational_expression] = STATE(1923), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1044), + [sym_const_object_expression] = STATE(1044), + [sym__primary] = STATE(1044), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1044), + [sym_super] = STATE(2353), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1672), + [sym_hex_integer_literal] = ACTIONS(1672), + [sym_octal_integer_literal] = ACTIONS(1674), + [sym_binary_integer_literal] = ACTIONS(1674), + [sym_decimal_floating_point_literal] = ACTIONS(1674), + [sym_hex_floating_point_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [534] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3709), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3709), - [sym_assignment_expression] = STATE(3709), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [549] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2285), + [sym__real_expression] = STATE(1931), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression_without_cascade] = STATE(2285), + [sym_assignment_expression_without_cascade] = STATE(2285), + [sym_assignable_expression] = STATE(2522), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1931), + [sym_conditional_expression] = STATE(1931), + [sym_logical_or_expression] = STATE(1931), + [sym_logical_and_expression] = STATE(1931), + [sym_equality_expression] = STATE(1931), + [sym_relational_expression] = STATE(1931), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -64773,7 +67187,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), @@ -64783,76 +67197,170 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [535] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(1398), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1398), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [550] = { + [sym__literal] = STATE(1041), + [sym_symbol_literal] = STATE(1041), + [sym_true] = STATE(1041), + [sym_false] = STATE(1041), + [sym_string_literal] = STATE(1041), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1041), + [sym_set_or_map_literal] = STATE(1041), + [sym_null_literal] = STATE(1041), + [sym__expression_without_cascade] = STATE(2098), + [sym__real_expression] = STATE(1557), + [sym__below_relational_expression] = STATE(2693), + [sym_throw_expression_without_cascade] = STATE(2098), + [sym_assignment_expression_without_cascade] = STATE(2098), + [sym_assignable_expression] = STATE(2524), + [sym_function_expression] = STATE(1041), + [sym_if_null_expression] = STATE(1557), + [sym_conditional_expression] = STATE(1557), + [sym_logical_or_expression] = STATE(1557), + [sym_logical_and_expression] = STATE(1557), + [sym_equality_expression] = STATE(1557), + [sym_relational_expression] = STATE(1557), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1041), + [sym_const_object_expression] = STATE(1041), + [sym__primary] = STATE(1041), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1041), + [sym_super] = STATE(2359), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1710), + [sym_hex_integer_literal] = ACTIONS(1710), + [sym_octal_integer_literal] = ACTIONS(1712), + [sym_binary_integer_literal] = ACTIONS(1712), + [sym_decimal_floating_point_literal] = ACTIONS(1712), + [sym_hex_floating_point_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [551] = { + [sym__literal] = STATE(1040), + [sym_symbol_literal] = STATE(1040), + [sym_true] = STATE(1040), + [sym_false] = STATE(1040), + [sym_string_literal] = STATE(1040), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1040), + [sym_set_or_map_literal] = STATE(1040), + [sym_null_literal] = STATE(1040), + [sym__expression] = STATE(1757), + [sym__real_expression] = STATE(1591), + [sym__below_relational_expression] = STATE(2694), + [sym_throw_expression] = STATE(1757), + [sym_assignment_expression] = STATE(1757), + [sym_assignable_expression] = STATE(2530), + [sym_function_expression] = STATE(1040), + [sym_if_null_expression] = STATE(1591), + [sym_conditional_expression] = STATE(1591), + [sym_logical_or_expression] = STATE(1591), + [sym_logical_and_expression] = STATE(1591), + [sym_equality_expression] = STATE(1591), + [sym_relational_expression] = STATE(1591), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1040), + [sym_const_object_expression] = STATE(1040), + [sym__primary] = STATE(1040), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1040), + [sym_super] = STATE(2346), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1772), + [sym_hex_integer_literal] = ACTIONS(1772), + [sym_octal_integer_literal] = ACTIONS(1774), + [sym_binary_integer_literal] = ACTIONS(1774), + [sym_decimal_floating_point_literal] = ACTIONS(1774), + [sym_hex_floating_point_literal] = ACTIONS(1772), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -64863,79 +67371,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1776), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [536] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2240), - [sym__real_expression] = STATE(1886), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression_without_cascade] = STATE(2240), - [sym_assignment_expression_without_cascade] = STATE(2240), - [sym_assignable_expression] = STATE(2472), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1886), - [sym_conditional_expression] = STATE(1886), - [sym_logical_or_expression] = STATE(1886), - [sym_logical_and_expression] = STATE(1886), - [sym_equality_expression] = STATE(1886), - [sym_relational_expression] = STATE(1886), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [552] = { + [sym_identifier] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1325), + [sym_decimal_integer_literal] = ACTIONS(1327), + [sym_hex_integer_literal] = ACTIONS(1327), + [sym_octal_integer_literal] = ACTIONS(1325), + [sym_binary_integer_literal] = ACTIONS(1325), + [sym_decimal_floating_point_literal] = ACTIONS(1325), + [sym_hex_floating_point_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1325), + [anon_sym_r] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_null] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1323), + [anon_sym_PLUS_EQ] = ACTIONS(1321), + [anon_sym_DASH_EQ] = ACTIONS(1321), + [anon_sym_STAR_EQ] = ACTIONS(1321), + [anon_sym_SLASH_EQ] = ACTIONS(1321), + [anon_sym_AMP_EQ] = ACTIONS(1321), + [anon_sym_PIPE_EQ] = ACTIONS(1321), + [anon_sym_CARET_EQ] = ACTIONS(1321), + [anon_sym_PERCENT_EQ] = ACTIONS(1321), + [anon_sym_LT_LT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1321), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_QMARK_QMARK] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [sym_equality_operator] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_LT_LT] = ACTIONS(1323), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_GT_GT_GT] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1323), + [anon_sym_TILDE_SLASH] = ACTIONS(1321), + [sym_increment_operator] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_is] = ACTIONS(1323), + [anon_sym_as] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_QMARK_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_assert] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_super] = ACTIONS(1327), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_covariant] = ACTIONS(1327), + [anon_sym_Function] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_final] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1321), + [sym_comment] = ACTIONS(3), + }, + [553] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3755), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3755), + [sym_assignment_expression] = STATE(3755), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -64953,7 +67555,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1794), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), @@ -64963,76 +67565,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [537] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3488), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3488), - [sym_assignment_expression] = STATE(3488), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [554] = { + [sym__literal] = STATE(1051), + [sym_symbol_literal] = STATE(1051), + [sym_true] = STATE(1051), + [sym_false] = STATE(1051), + [sym_string_literal] = STATE(1051), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1051), + [sym_set_or_map_literal] = STATE(1051), + [sym_null_literal] = STATE(1051), + [sym__expression_without_cascade] = STATE(1380), + [sym__real_expression] = STATE(1011), + [sym__below_relational_expression] = STATE(2678), + [sym_throw_expression_without_cascade] = STATE(1380), + [sym_assignment_expression_without_cascade] = STATE(1380), + [sym_assignable_expression] = STATE(2542), + [sym_function_expression] = STATE(1051), + [sym_if_null_expression] = STATE(1011), + [sym_conditional_expression] = STATE(1011), + [sym_logical_or_expression] = STATE(1011), + [sym_logical_and_expression] = STATE(1011), + [sym_equality_expression] = STATE(1011), + [sym_relational_expression] = STATE(1011), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1051), + [sym_const_object_expression] = STATE(1051), + [sym__primary] = STATE(1051), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1051), + [sym_super] = STATE(2348), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(11), - [sym_hex_integer_literal] = ACTIONS(11), - [sym_octal_integer_literal] = ACTIONS(13), - [sym_binary_integer_literal] = ACTIONS(13), - [sym_decimal_floating_point_literal] = ACTIONS(13), - [sym_hex_floating_point_literal] = ACTIONS(11), + [sym_decimal_integer_literal] = ACTIONS(1800), + [sym_hex_integer_literal] = ACTIONS(1800), + [sym_octal_integer_literal] = ACTIONS(1802), + [sym_binary_integer_literal] = ACTIONS(1802), + [sym_decimal_floating_point_literal] = ACTIONS(1802), + [sym_hex_floating_point_literal] = ACTIONS(1800), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -65043,79 +67647,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1804), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(2256), - [sym__real_expression] = STATE(2292), - [sym__below_relational_expression] = STATE(2649), - [sym_throw_expression_without_cascade] = STATE(2256), - [sym_assignment_expression_without_cascade] = STATE(2256), - [sym_assignable_expression] = STATE(2477), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(2292), - [sym_conditional_expression] = STATE(2292), - [sym_logical_or_expression] = STATE(2292), - [sym_logical_and_expression] = STATE(2292), - [sym_equality_expression] = STATE(2292), - [sym_relational_expression] = STATE(2292), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2854), - [sym_formal_parameter_list] = STATE(2854), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2291), - [sym_identifier] = ACTIONS(857), + [555] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3828), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3828), + [sym_assignment_expression] = STATE(3828), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -65133,79 +67739,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression_without_cascade] = STATE(1363), - [sym__real_expression] = STATE(1886), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression_without_cascade] = STATE(1363), - [sym_assignment_expression_without_cascade] = STATE(1363), - [sym_assignable_expression] = STATE(2472), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1886), - [sym_conditional_expression] = STATE(1886), - [sym_logical_or_expression] = STATE(1886), - [sym_logical_and_expression] = STATE(1886), - [sym_equality_expression] = STATE(1886), - [sym_relational_expression] = STATE(1886), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [556] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3761), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3761), + [sym_assignment_expression] = STATE(3761), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -65223,7 +67831,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1794), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), @@ -65233,76 +67841,170 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression] = STATE(1729), - [sym__real_expression] = STATE(1551), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression] = STATE(1729), - [sym_assignment_expression] = STATE(1729), - [sym_assignable_expression] = STATE(2493), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1551), - [sym_conditional_expression] = STATE(1551), - [sym_logical_or_expression] = STATE(1551), - [sym_logical_and_expression] = STATE(1551), - [sym_equality_expression] = STATE(1551), - [sym_relational_expression] = STATE(1551), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [557] = { + [sym__literal] = STATE(103), + [sym_symbol_literal] = STATE(103), + [sym_true] = STATE(103), + [sym_false] = STATE(103), + [sym_string_literal] = STATE(103), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(103), + [sym_set_or_map_literal] = STATE(103), + [sym_null_literal] = STATE(103), + [sym__expression_without_cascade] = STATE(817), + [sym__real_expression] = STATE(369), + [sym__below_relational_expression] = STATE(2692), + [sym_throw_expression_without_cascade] = STATE(817), + [sym_assignment_expression_without_cascade] = STATE(817), + [sym_assignable_expression] = STATE(2546), + [sym_function_expression] = STATE(103), + [sym_if_null_expression] = STATE(369), + [sym_conditional_expression] = STATE(369), + [sym_logical_or_expression] = STATE(369), + [sym_logical_and_expression] = STATE(369), + [sym_equality_expression] = STATE(369), + [sym_relational_expression] = STATE(369), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(103), + [sym_const_object_expression] = STATE(103), + [sym__primary] = STATE(103), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(103), + [sym_super] = STATE(2330), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1826), + [sym_hex_integer_literal] = ACTIONS(1826), + [sym_octal_integer_literal] = ACTIONS(1828), + [sym_binary_integer_literal] = ACTIONS(1828), + [sym_decimal_floating_point_literal] = ACTIONS(1828), + [sym_hex_floating_point_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [558] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(1448), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(1448), + [sym_assignment_expression] = STATE(1448), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -65313,266 +68015,272 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [541] = { - [sym__literal] = STATE(109), - [sym_symbol_literal] = STATE(109), - [sym_true] = STATE(109), - [sym_false] = STATE(109), - [sym_string_literal] = STATE(109), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(109), - [sym_set_or_map_literal] = STATE(109), - [sym_null_literal] = STATE(109), - [sym__expression] = STATE(796), - [sym__real_expression] = STATE(193), - [sym__below_relational_expression] = STATE(2641), - [sym_throw_expression] = STATE(796), - [sym_assignment_expression] = STATE(796), - [sym_assignable_expression] = STATE(2503), - [sym_function_expression] = STATE(109), - [sym_if_null_expression] = STATE(193), - [sym_conditional_expression] = STATE(193), - [sym_logical_or_expression] = STATE(193), - [sym_logical_and_expression] = STATE(193), - [sym_equality_expression] = STATE(193), - [sym_relational_expression] = STATE(193), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(109), - [sym_const_object_expression] = STATE(109), - [sym__primary] = STATE(109), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(109), - [sym_super] = STATE(2325), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1822), - [sym_hex_integer_literal] = ACTIONS(1822), - [sym_octal_integer_literal] = ACTIONS(1824), - [sym_binary_integer_literal] = ACTIONS(1824), - [sym_decimal_floating_point_literal] = ACTIONS(1824), - [sym_hex_floating_point_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [559] = { + [sym__literal] = STATE(1037), + [sym_symbol_literal] = STATE(1037), + [sym_true] = STATE(1037), + [sym_false] = STATE(1037), + [sym_string_literal] = STATE(1037), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1037), + [sym_set_or_map_literal] = STATE(1037), + [sym_null_literal] = STATE(1037), + [sym__expression_without_cascade] = STATE(1933), + [sym__real_expression] = STATE(1509), + [sym__below_relational_expression] = STATE(2677), + [sym_throw_expression_without_cascade] = STATE(1933), + [sym_assignment_expression_without_cascade] = STATE(1933), + [sym_assignable_expression] = STATE(2516), + [sym_function_expression] = STATE(1037), + [sym_if_null_expression] = STATE(1509), + [sym_conditional_expression] = STATE(1509), + [sym_logical_or_expression] = STATE(1509), + [sym_logical_and_expression] = STATE(1509), + [sym_equality_expression] = STATE(1509), + [sym_relational_expression] = STATE(1509), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1037), + [sym_const_object_expression] = STATE(1037), + [sym__primary] = STATE(1037), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1037), + [sym_super] = STATE(2362), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1762), + [sym_hex_integer_literal] = ACTIONS(1762), + [sym_octal_integer_literal] = ACTIONS(1764), + [sym_binary_integer_literal] = ACTIONS(1764), + [sym_decimal_floating_point_literal] = ACTIONS(1764), + [sym_hex_floating_point_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym__literal] = STATE(104), - [sym_symbol_literal] = STATE(104), - [sym_true] = STATE(104), - [sym_false] = STATE(104), - [sym_string_literal] = STATE(104), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(104), - [sym_set_or_map_literal] = STATE(104), - [sym_null_literal] = STATE(104), - [sym__expression_without_cascade] = STATE(900), - [sym__real_expression] = STATE(345), - [sym__below_relational_expression] = STATE(2652), - [sym_throw_expression_without_cascade] = STATE(900), - [sym_assignment_expression_without_cascade] = STATE(900), - [sym_assignable_expression] = STATE(2476), - [sym_function_expression] = STATE(104), - [sym_if_null_expression] = STATE(345), - [sym_conditional_expression] = STATE(345), - [sym_logical_or_expression] = STATE(345), - [sym_logical_and_expression] = STATE(345), - [sym_equality_expression] = STATE(345), - [sym_relational_expression] = STATE(345), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(104), - [sym_const_object_expression] = STATE(104), - [sym__primary] = STATE(104), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(104), - [sym_super] = STATE(2311), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(1757), - [sym_hex_integer_literal] = ACTIONS(1757), - [sym_octal_integer_literal] = ACTIONS(1759), - [sym_binary_integer_literal] = ACTIONS(1759), - [sym_decimal_floating_point_literal] = ACTIONS(1759), - [sym_hex_floating_point_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [560] = { + [sym__literal] = STATE(103), + [sym_symbol_literal] = STATE(103), + [sym_true] = STATE(103), + [sym_false] = STATE(103), + [sym_string_literal] = STATE(103), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(103), + [sym_set_or_map_literal] = STATE(103), + [sym_null_literal] = STATE(103), + [sym__expression_without_cascade] = STATE(807), + [sym__real_expression] = STATE(369), + [sym__below_relational_expression] = STATE(2692), + [sym_throw_expression_without_cascade] = STATE(807), + [sym_assignment_expression_without_cascade] = STATE(807), + [sym_assignable_expression] = STATE(2546), + [sym_function_expression] = STATE(103), + [sym_if_null_expression] = STATE(369), + [sym_conditional_expression] = STATE(369), + [sym_logical_or_expression] = STATE(369), + [sym_logical_and_expression] = STATE(369), + [sym_equality_expression] = STATE(369), + [sym_relational_expression] = STATE(369), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(103), + [sym_const_object_expression] = STATE(103), + [sym__primary] = STATE(103), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(103), + [sym_super] = STATE(2330), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1826), + [sym_hex_integer_literal] = ACTIONS(1826), + [sym_octal_integer_literal] = ACTIONS(1828), + [sym_binary_integer_literal] = ACTIONS(1828), + [sym_decimal_floating_point_literal] = ACTIONS(1828), + [sym_hex_floating_point_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym__literal] = STATE(1011), - [sym_symbol_literal] = STATE(1011), - [sym_true] = STATE(1011), - [sym_false] = STATE(1011), - [sym_string_literal] = STATE(1011), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1011), - [sym_set_or_map_literal] = STATE(1011), - [sym_null_literal] = STATE(1011), - [sym__expression] = STATE(1847), - [sym__real_expression] = STATE(1551), - [sym__below_relational_expression] = STATE(2644), - [sym_throw_expression] = STATE(1847), - [sym_assignment_expression] = STATE(1847), - [sym_assignable_expression] = STATE(2493), - [sym_function_expression] = STATE(1011), - [sym_if_null_expression] = STATE(1551), - [sym_conditional_expression] = STATE(1551), - [sym_logical_or_expression] = STATE(1551), - [sym_logical_and_expression] = STATE(1551), - [sym_equality_expression] = STATE(1551), - [sym_relational_expression] = STATE(1551), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1011), - [sym_const_object_expression] = STATE(1011), - [sym__primary] = STATE(1011), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1011), - [sym_super] = STATE(2295), - [sym_identifier] = ACTIONS(857), + [561] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3766), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3766), + [sym_assignment_expression_without_cascade] = STATE(3766), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1678), - [sym_hex_integer_literal] = ACTIONS(1678), - [sym_octal_integer_literal] = ACTIONS(1680), - [sym_binary_integer_literal] = ACTIONS(1680), - [sym_decimal_floating_point_literal] = ACTIONS(1680), - [sym_hex_floating_point_literal] = ACTIONS(1678), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -65583,86 +68291,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [544] = { - [sym__literal] = STATE(1003), - [sym_symbol_literal] = STATE(1003), - [sym_true] = STATE(1003), - [sym_false] = STATE(1003), - [sym_string_literal] = STATE(1003), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1003), - [sym_set_or_map_literal] = STATE(1003), - [sym_null_literal] = STATE(1003), - [sym__expression] = STATE(2138), - [sym__real_expression] = STATE(1482), - [sym__below_relational_expression] = STATE(2646), - [sym_throw_expression] = STATE(2138), - [sym_assignment_expression] = STATE(2138), - [sym_assignable_expression] = STATE(2478), - [sym_function_expression] = STATE(1003), - [sym_if_null_expression] = STATE(1482), - [sym_conditional_expression] = STATE(1482), - [sym_logical_or_expression] = STATE(1482), - [sym_logical_and_expression] = STATE(1482), - [sym_equality_expression] = STATE(1482), - [sym_relational_expression] = STATE(1482), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1003), - [sym_const_object_expression] = STATE(1003), - [sym__primary] = STATE(1003), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1003), - [sym_super] = STATE(2328), - [sym_identifier] = ACTIONS(857), + [562] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(3862), + [sym__real_expression] = STATE(2337), + [sym__below_relational_expression] = STATE(2680), + [sym_throw_expression_without_cascade] = STATE(3862), + [sym_assignment_expression_without_cascade] = STATE(3862), + [sym_assignable_expression] = STATE(2513), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(2337), + [sym_conditional_expression] = STATE(2337), + [sym_logical_or_expression] = STATE(2337), + [sym_logical_and_expression] = STATE(2337), + [sym_equality_expression] = STATE(2337), + [sym_relational_expression] = STATE(2337), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2317), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1767), - [sym_hex_integer_literal] = ACTIONS(1767), - [sym_octal_integer_literal] = ACTIONS(1769), - [sym_binary_integer_literal] = ACTIONS(1769), - [sym_decimal_floating_point_literal] = ACTIONS(1769), - [sym_hex_floating_point_literal] = ACTIONS(1767), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -65673,79 +68383,449 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(1790), + [anon_sym_throw] = ACTIONS(1782), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [545] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3529), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3529), - [sym_assignment_expression] = STATE(3529), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [563] = { + [sym__literal] = STATE(1046), + [sym_symbol_literal] = STATE(1046), + [sym_true] = STATE(1046), + [sym_false] = STATE(1046), + [sym_string_literal] = STATE(1046), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1046), + [sym_set_or_map_literal] = STATE(1046), + [sym_null_literal] = STATE(1046), + [sym__expression_without_cascade] = STATE(1339), + [sym__real_expression] = STATE(1007), + [sym__below_relational_expression] = STATE(2695), + [sym_throw_expression_without_cascade] = STATE(1339), + [sym_assignment_expression_without_cascade] = STATE(1339), + [sym_assignable_expression] = STATE(2518), + [sym_function_expression] = STATE(1046), + [sym_if_null_expression] = STATE(1007), + [sym_conditional_expression] = STATE(1007), + [sym_logical_or_expression] = STATE(1007), + [sym_logical_and_expression] = STATE(1007), + [sym_equality_expression] = STATE(1007), + [sym_relational_expression] = STATE(1007), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1046), + [sym_const_object_expression] = STATE(1046), + [sym__primary] = STATE(1046), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1046), + [sym_super] = STATE(2344), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(1841), + [sym_hex_integer_literal] = ACTIONS(1841), + [sym_octal_integer_literal] = ACTIONS(1843), + [sym_binary_integer_literal] = ACTIONS(1843), + [sym_decimal_floating_point_literal] = ACTIONS(1843), + [sym_hex_floating_point_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_throw] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [564] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(1121), + [sym__real_expression] = STATE(747), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression_without_cascade] = STATE(1121), + [sym_assignment_expression_without_cascade] = STATE(1121), + [sym_assignable_expression] = STATE(2543), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(747), + [sym_conditional_expression] = STATE(747), + [sym_logical_or_expression] = STATE(747), + [sym_logical_and_expression] = STATE(747), + [sym_equality_expression] = STATE(747), + [sym_relational_expression] = STATE(747), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [565] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(982), + [sym__real_expression] = STATE(747), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression_without_cascade] = STATE(982), + [sym_assignment_expression_without_cascade] = STATE(982), + [sym_assignable_expression] = STATE(2538), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(747), + [sym_conditional_expression] = STATE(747), + [sym_logical_or_expression] = STATE(747), + [sym_logical_and_expression] = STATE(747), + [sym_equality_expression] = STATE(747), + [sym_relational_expression] = STATE(747), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [566] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(980), + [sym__real_expression] = STATE(747), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression_without_cascade] = STATE(980), + [sym_assignment_expression_without_cascade] = STATE(980), + [sym_assignable_expression] = STATE(2538), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(747), + [sym_conditional_expression] = STATE(747), + [sym_logical_or_expression] = STATE(747), + [sym_logical_and_expression] = STATE(747), + [sym_equality_expression] = STATE(747), + [sym_relational_expression] = STATE(747), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [567] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2279), + [sym__real_expression] = STATE(1975), + [sym__below_relational_expression] = STATE(2676), + [sym_throw_expression_without_cascade] = STATE(2279), + [sym_assignment_expression_without_cascade] = STATE(2279), + [sym_assignable_expression] = STATE(2511), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1975), + [sym_conditional_expression] = STATE(1975), + [sym_logical_or_expression] = STATE(1975), + [sym_logical_and_expression] = STATE(1975), + [sym_equality_expression] = STATE(1975), + [sym_relational_expression] = STATE(1975), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2341), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -65763,79 +68843,265 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_r] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(1865), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [546] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3443), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3443), - [sym_assignment_expression] = STATE(3443), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [568] = { + [sym__literal] = STATE(106), + [sym_symbol_literal] = STATE(106), + [sym_true] = STATE(106), + [sym_false] = STATE(106), + [sym_string_literal] = STATE(106), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(106), + [sym_set_or_map_literal] = STATE(106), + [sym_null_literal] = STATE(106), + [sym__expression] = STATE(297), + [sym__real_expression] = STATE(90), + [sym__below_relational_expression] = STATE(2689), + [sym_throw_expression] = STATE(297), + [sym_assignment_expression] = STATE(297), + [sym_assignable_expression] = STATE(2521), + [sym_function_expression] = STATE(106), + [sym_if_null_expression] = STATE(90), + [sym_conditional_expression] = STATE(90), + [sym_logical_or_expression] = STATE(90), + [sym_logical_and_expression] = STATE(90), + [sym_equality_expression] = STATE(90), + [sym_relational_expression] = STATE(90), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(106), + [sym_const_object_expression] = STATE(106), + [sym__primary] = STATE(106), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(106), + [sym_super] = STATE(2314), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1724), + [sym_hex_integer_literal] = ACTIONS(1724), + [sym_octal_integer_literal] = ACTIONS(1726), + [sym_binary_integer_literal] = ACTIONS(1726), + [sym_decimal_floating_point_literal] = ACTIONS(1726), + [sym_hex_floating_point_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [569] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression_without_cascade] = STATE(987), + [sym__real_expression] = STATE(747), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression_without_cascade] = STATE(987), + [sym_assignment_expression_without_cascade] = STATE(987), + [sym_assignable_expression] = STATE(2538), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(747), + [sym_conditional_expression] = STATE(747), + [sym_logical_or_expression] = STATE(747), + [sym_logical_and_expression] = STATE(747), + [sym_equality_expression] = STATE(747), + [sym_relational_expression] = STATE(747), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [570] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3381), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3381), + [sym_assignment_expression] = STATE(3381), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -65863,69 +69129,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [547] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3642), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3642), - [sym_assignment_expression] = STATE(3642), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [571] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3861), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3861), + [sym_assignment_expression] = STATE(3861), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -65953,249 +69221,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [548] = { - [sym__literal] = STATE(1009), - [sym_symbol_literal] = STATE(1009), - [sym_true] = STATE(1009), - [sym_false] = STATE(1009), - [sym_string_literal] = STATE(1009), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1009), - [sym_set_or_map_literal] = STATE(1009), - [sym_null_literal] = STATE(1009), - [sym__expression] = STATE(2056), - [sym__real_expression] = STATE(1465), - [sym__below_relational_expression] = STATE(2661), - [sym_throw_expression] = STATE(2056), - [sym_assignment_expression] = STATE(2056), - [sym_assignable_expression] = STATE(2500), - [sym_function_expression] = STATE(1009), - [sym_if_null_expression] = STATE(1465), - [sym_conditional_expression] = STATE(1465), - [sym_logical_or_expression] = STATE(1465), - [sym_logical_and_expression] = STATE(1465), - [sym_equality_expression] = STATE(1465), - [sym_relational_expression] = STATE(1465), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1009), - [sym_const_object_expression] = STATE(1009), - [sym__primary] = STATE(1009), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1009), - [sym_super] = STATE(2313), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1800), - [sym_hex_integer_literal] = ACTIONS(1800), - [sym_octal_integer_literal] = ACTIONS(1802), - [sym_binary_integer_literal] = ACTIONS(1802), - [sym_decimal_floating_point_literal] = ACTIONS(1802), - [sym_hex_floating_point_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [549] = { - [sym__literal] = STATE(1009), - [sym_symbol_literal] = STATE(1009), - [sym_true] = STATE(1009), - [sym_false] = STATE(1009), - [sym_string_literal] = STATE(1009), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1009), - [sym_set_or_map_literal] = STATE(1009), - [sym_null_literal] = STATE(1009), - [sym__expression] = STATE(2028), - [sym__real_expression] = STATE(1465), - [sym__below_relational_expression] = STATE(2661), - [sym_throw_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2028), - [sym_assignable_expression] = STATE(2500), - [sym_function_expression] = STATE(1009), - [sym_if_null_expression] = STATE(1465), - [sym_conditional_expression] = STATE(1465), - [sym_logical_or_expression] = STATE(1465), - [sym_logical_and_expression] = STATE(1465), - [sym_equality_expression] = STATE(1465), - [sym_relational_expression] = STATE(1465), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1009), - [sym_const_object_expression] = STATE(1009), - [sym__primary] = STATE(1009), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1009), - [sym_super] = STATE(2313), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1800), - [sym_hex_integer_literal] = ACTIONS(1800), - [sym_octal_integer_literal] = ACTIONS(1802), - [sym_binary_integer_literal] = ACTIONS(1802), - [sym_decimal_floating_point_literal] = ACTIONS(1802), - [sym_hex_floating_point_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [550] = { - [sym__literal] = STATE(1015), - [sym_symbol_literal] = STATE(1015), - [sym_true] = STATE(1015), - [sym_false] = STATE(1015), - [sym_string_literal] = STATE(1015), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(1015), - [sym_set_or_map_literal] = STATE(1015), - [sym_null_literal] = STATE(1015), - [sym__expression] = STATE(3449), - [sym__real_expression] = STATE(1617), - [sym__below_relational_expression] = STATE(2637), - [sym_throw_expression] = STATE(3449), - [sym_assignment_expression] = STATE(3449), - [sym_assignable_expression] = STATE(2484), - [sym_function_expression] = STATE(1015), - [sym_if_null_expression] = STATE(1617), - [sym_conditional_expression] = STATE(1617), - [sym_logical_or_expression] = STATE(1617), - [sym_logical_and_expression] = STATE(1617), - [sym_equality_expression] = STATE(1617), - [sym_relational_expression] = STATE(1617), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1015), - [sym_const_object_expression] = STATE(1015), - [sym__primary] = STATE(1015), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(1015), - [sym_super] = STATE(2287), - [sym_identifier] = ACTIONS(857), + [572] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3425), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3425), + [sym_assignment_expression] = STATE(3425), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), [sym_decimal_integer_literal] = ACTIONS(11), [sym_hex_integer_literal] = ACTIONS(11), @@ -66208,980 +69298,289 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(502), [anon_sym_DQUOTE] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_throw] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - }, - [551] = { - [sym__literal] = STATE(1004), - [sym_symbol_literal] = STATE(1004), - [sym_true] = STATE(1004), - [sym_false] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1004), - [sym_set_or_map_literal] = STATE(1004), - [sym_null_literal] = STATE(1004), - [sym__expression] = STATE(1404), - [sym__real_expression] = STATE(968), - [sym__below_relational_expression] = STATE(2647), - [sym_throw_expression] = STATE(1404), - [sym_assignment_expression] = STATE(1404), - [sym_assignable_expression] = STATE(2494), - [sym_function_expression] = STATE(1004), - [sym_if_null_expression] = STATE(968), - [sym_conditional_expression] = STATE(968), - [sym_logical_or_expression] = STATE(968), - [sym_logical_and_expression] = STATE(968), - [sym_equality_expression] = STATE(968), - [sym_relational_expression] = STATE(968), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1004), - [sym_const_object_expression] = STATE(1004), - [sym__primary] = STATE(1004), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1004), - [sym_super] = STATE(2306), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1842), - [sym_hex_integer_literal] = ACTIONS(1842), - [sym_octal_integer_literal] = ACTIONS(1844), - [sym_binary_integer_literal] = ACTIONS(1844), - [sym_decimal_floating_point_literal] = ACTIONS(1844), - [sym_hex_floating_point_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [552] = { - [sym__literal] = STATE(1005), - [sym_symbol_literal] = STATE(1005), - [sym_true] = STATE(1005), - [sym_false] = STATE(1005), - [sym_string_literal] = STATE(1005), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1005), - [sym_set_or_map_literal] = STATE(1005), - [sym_null_literal] = STATE(1005), - [sym__expression_without_cascade] = STATE(2244), - [sym__real_expression] = STATE(1900), - [sym__below_relational_expression] = STATE(2633), - [sym_throw_expression_without_cascade] = STATE(2244), - [sym_assignment_expression_without_cascade] = STATE(2244), - [sym_assignable_expression] = STATE(2496), - [sym_function_expression] = STATE(1005), - [sym_if_null_expression] = STATE(1900), - [sym_conditional_expression] = STATE(1900), - [sym_logical_or_expression] = STATE(1900), - [sym_logical_and_expression] = STATE(1900), - [sym_equality_expression] = STATE(1900), - [sym_relational_expression] = STATE(1900), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1005), - [sym_const_object_expression] = STATE(1005), - [sym__primary] = STATE(1005), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1005), - [sym_super] = STATE(2310), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1747), - [sym_hex_integer_literal] = ACTIONS(1747), - [sym_octal_integer_literal] = ACTIONS(1749), - [sym_binary_integer_literal] = ACTIONS(1749), - [sym_decimal_floating_point_literal] = ACTIONS(1749), - [sym_hex_floating_point_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [553] = { - [sym__literal] = STATE(1004), - [sym_symbol_literal] = STATE(1004), - [sym_true] = STATE(1004), - [sym_false] = STATE(1004), - [sym_string_literal] = STATE(1004), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1004), - [sym_set_or_map_literal] = STATE(1004), - [sym_null_literal] = STATE(1004), - [sym__expression_without_cascade] = STATE(1446), - [sym__real_expression] = STATE(981), - [sym__below_relational_expression] = STATE(2647), - [sym_throw_expression_without_cascade] = STATE(1446), - [sym_assignment_expression_without_cascade] = STATE(1446), - [sym_assignable_expression] = STATE(2487), - [sym_function_expression] = STATE(1004), - [sym_if_null_expression] = STATE(981), - [sym_conditional_expression] = STATE(981), - [sym_logical_or_expression] = STATE(981), - [sym_logical_and_expression] = STATE(981), - [sym_equality_expression] = STATE(981), - [sym_relational_expression] = STATE(981), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1004), - [sym_const_object_expression] = STATE(1004), - [sym__primary] = STATE(1004), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1004), - [sym_super] = STATE(2306), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1842), - [sym_hex_integer_literal] = ACTIONS(1842), - [sym_octal_integer_literal] = ACTIONS(1844), - [sym_binary_integer_literal] = ACTIONS(1844), - [sym_decimal_floating_point_literal] = ACTIONS(1844), - [sym_hex_floating_point_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_throw] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [554] = { - [aux_sym__if_null_expression] = STATE(923), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [sym_cascade_section] = STATE(1033), - [aux_sym__expression_repeat1] = STATE(1033), - [aux_sym_logical_or_expression_repeat1] = STATE(922), - [aux_sym_logical_and_expression_repeat1] = STATE(921), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(534), - [sym_identifier] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(534), - [sym_decimal_integer_literal] = ACTIONS(536), - [sym_hex_integer_literal] = ACTIONS(536), - [sym_octal_integer_literal] = ACTIONS(534), - [sym_binary_integer_literal] = ACTIONS(534), - [sym_decimal_floating_point_literal] = ACTIONS(534), - [sym_hex_floating_point_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(536), - [anon_sym_false] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(534), - [anon_sym_DQUOTE] = ACTIONS(536), - [anon_sym_SQUOTE] = ACTIONS(536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(534), - [anon_sym_r] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(534), - [anon_sym_COMMA] = ACTIONS(534), - [anon_sym_null] = ACTIONS(536), - [anon_sym_throw] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_QMARK_QMARK] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1883), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [sym_equality_operator] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(534), - [anon_sym_BANG] = ACTIONS(536), - [anon_sym_TILDE] = ACTIONS(536), - [anon_sym_await] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(536), - [anon_sym_switch] = ACTIONS(536), - [anon_sym_do] = ACTIONS(536), - [anon_sym_while] = ACTIONS(536), - [anon_sym_break] = ACTIONS(536), - [anon_sym_continue] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(536), - [anon_sym_return] = ACTIONS(536), - [anon_sym_try] = ACTIONS(536), - [anon_sym_if] = ACTIONS(536), - [anon_sym_for] = ACTIONS(536), - [anon_sym_AT] = ACTIONS(534), - [anon_sym_enum] = ACTIONS(536), - [anon_sym_abstract] = ACTIONS(536), - [anon_sym_class] = ACTIONS(536), - [anon_sym_super] = ACTIONS(536), - [anon_sym_void] = ACTIONS(536), - [anon_sym_var] = ACTIONS(536), - [anon_sym_covariant] = ACTIONS(536), - [anon_sym_Function] = ACTIONS(536), - [anon_sym_get] = ACTIONS(536), - [anon_sym_set] = ACTIONS(536), - [anon_sym_new] = ACTIONS(536), - [anon_sym_const] = ACTIONS(536), - [anon_sym_final] = ACTIONS(536), - [anon_sym_external] = ACTIONS(536), - [anon_sym_this] = ACTIONS(536), - [sym_comment] = ACTIONS(3), - }, - [555] = { - [aux_sym__if_null_expression] = STATE(923), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(922), - [aux_sym_logical_and_expression_repeat1] = STATE(921), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(577), - [sym_identifier] = ACTIONS(579), - [anon_sym_POUND] = ACTIONS(577), - [sym_decimal_integer_literal] = ACTIONS(579), - [sym_hex_integer_literal] = ACTIONS(579), - [sym_octal_integer_literal] = ACTIONS(577), - [sym_binary_integer_literal] = ACTIONS(577), - [sym_decimal_floating_point_literal] = ACTIONS(577), - [sym_hex_floating_point_literal] = ACTIONS(579), - [anon_sym_true] = ACTIONS(579), - [anon_sym_false] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(577), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(577), - [anon_sym_r] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_null] = ACTIONS(579), - [anon_sym_throw] = ACTIONS(579), - [anon_sym_LPAREN] = ACTIONS(577), - [anon_sym_QMARK_QMARK] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(577), - [sym_equality_operator] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(579), - [anon_sym_await] = ACTIONS(579), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_assert] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_do] = ACTIONS(579), - [anon_sym_while] = ACTIONS(579), - [anon_sym_break] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(579), - [anon_sym_yield] = ACTIONS(579), - [anon_sym_return] = ACTIONS(579), - [anon_sym_try] = ACTIONS(579), - [anon_sym_if] = ACTIONS(579), - [anon_sym_for] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_abstract] = ACTIONS(579), - [anon_sym_class] = ACTIONS(579), - [anon_sym_super] = ACTIONS(579), - [anon_sym_void] = ACTIONS(579), - [anon_sym_var] = ACTIONS(579), - [anon_sym_covariant] = ACTIONS(579), - [anon_sym_Function] = ACTIONS(579), - [anon_sym_get] = ACTIONS(579), - [anon_sym_set] = ACTIONS(579), - [anon_sym_new] = ACTIONS(579), - [anon_sym_const] = ACTIONS(579), - [anon_sym_final] = ACTIONS(579), - [anon_sym_external] = ACTIONS(579), - [anon_sym_this] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - }, - [556] = { - [aux_sym__if_null_expression] = STATE(923), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(922), - [aux_sym_logical_and_expression_repeat1] = STATE(921), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(584), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), - [anon_sym_r] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_null] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1883), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [sym_equality_operator] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_await] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_super] = ACTIONS(586), - [anon_sym_void] = ACTIONS(586), - [anon_sym_var] = ACTIONS(586), - [anon_sym_covariant] = ACTIONS(586), - [anon_sym_Function] = ACTIONS(586), - [anon_sym_get] = ACTIONS(586), - [anon_sym_set] = ACTIONS(586), - [anon_sym_new] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_external] = ACTIONS(586), - [anon_sym_this] = ACTIONS(586), - [sym_comment] = ACTIONS(3), - }, - [557] = { - [aux_sym__if_null_expression] = STATE(923), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(922), - [aux_sym_logical_and_expression_repeat1] = STATE(921), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [sym_decimal_integer_literal] = ACTIONS(590), - [sym_hex_integer_literal] = ACTIONS(590), - [sym_octal_integer_literal] = ACTIONS(588), - [sym_binary_integer_literal] = ACTIONS(588), - [sym_decimal_floating_point_literal] = ACTIONS(588), - [sym_hex_floating_point_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), - [anon_sym_r] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_null] = ACTIONS(590), - [anon_sym_throw] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_QMARK_QMARK] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1883), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [sym_equality_operator] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_switch] = ACTIONS(590), - [anon_sym_do] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_try] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_abstract] = ACTIONS(590), - [anon_sym_class] = ACTIONS(590), - [anon_sym_super] = ACTIONS(590), - [anon_sym_void] = ACTIONS(590), - [anon_sym_var] = ACTIONS(590), - [anon_sym_covariant] = ACTIONS(590), - [anon_sym_Function] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), - [anon_sym_new] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_final] = ACTIONS(590), - [anon_sym_external] = ACTIONS(590), - [anon_sym_this] = ACTIONS(590), - [sym_comment] = ACTIONS(3), - }, - [558] = { - [aux_sym__if_null_expression] = STATE(923), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(922), - [aux_sym_logical_and_expression_repeat1] = STATE(921), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(592), - [sym_identifier] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [sym_decimal_integer_literal] = ACTIONS(594), - [sym_hex_integer_literal] = ACTIONS(594), - [sym_octal_integer_literal] = ACTIONS(592), - [sym_binary_integer_literal] = ACTIONS(592), - [sym_decimal_floating_point_literal] = ACTIONS(592), - [sym_hex_floating_point_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(594), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(592), - [anon_sym_r] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_null] = ACTIONS(594), - [anon_sym_throw] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_QMARK_QMARK] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1883), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [sym_equality_operator] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_await] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_assert] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(594), - [anon_sym_do] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_try] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(594), - [anon_sym_abstract] = ACTIONS(594), - [anon_sym_class] = ACTIONS(594), - [anon_sym_super] = ACTIONS(594), - [anon_sym_void] = ACTIONS(594), - [anon_sym_var] = ACTIONS(594), - [anon_sym_covariant] = ACTIONS(594), - [anon_sym_Function] = ACTIONS(594), - [anon_sym_get] = ACTIONS(594), - [anon_sym_set] = ACTIONS(594), - [anon_sym_new] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_final] = ACTIONS(594), - [anon_sym_external] = ACTIONS(594), - [anon_sym_this] = ACTIONS(594), - [sym_comment] = ACTIONS(3), - }, - [559] = { - [sym_relational_operator] = STATE(586), - [sym_type_test] = STATE(2247), - [sym_is_operator] = STATE(2619), - [sym_type_cast] = STATE(2247), - [sym_as_operator] = STATE(2593), - [ts_builtin_sym_end] = ACTIONS(821), - [sym_identifier] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(821), - [sym_decimal_integer_literal] = ACTIONS(823), - [sym_hex_integer_literal] = ACTIONS(823), - [sym_octal_integer_literal] = ACTIONS(821), - [sym_binary_integer_literal] = ACTIONS(821), - [sym_decimal_floating_point_literal] = ACTIONS(821), - [sym_hex_floating_point_literal] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(821), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(821), - [anon_sym_r] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_null] = ACTIONS(823), - [anon_sym_throw] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_QMARK_QMARK] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [sym_equality_operator] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(828), - [anon_sym_LT_EQ] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(823), - [anon_sym_GT_GT_GT] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_TILDE_SLASH] = ACTIONS(821), - [sym_increment_operator] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [anon_sym_await] = ACTIONS(823), - [anon_sym_is] = ACTIONS(831), - [anon_sym_as] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_QMARK_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_assert] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_yield] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_abstract] = ACTIONS(823), - [anon_sym_class] = ACTIONS(823), - [anon_sym_super] = ACTIONS(823), - [anon_sym_void] = ACTIONS(823), - [anon_sym_var] = ACTIONS(823), - [anon_sym_covariant] = ACTIONS(823), - [anon_sym_Function] = ACTIONS(823), - [anon_sym_get] = ACTIONS(823), - [anon_sym_set] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_final] = ACTIONS(823), - [anon_sym_external] = ACTIONS(823), - [anon_sym_this] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - }, - [560] = { - [aux_sym__if_null_expression] = STATE(923), - [sym_shift_operator] = STATE(635), - [sym_additive_operator] = STATE(625), - [sym_multiplicative_operator] = STATE(637), - [aux_sym_logical_or_expression_repeat1] = STATE(922), - [aux_sym_logical_and_expression_repeat1] = STATE(921), - [aux_sym_bitwise_or_expression_repeat1] = STATE(859), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(858), - [aux_sym_bitwise_and_expression_repeat1] = STATE(857), - [aux_sym_shift_expression_repeat1] = STATE(839), - [aux_sym_additive_expression_repeat1] = STATE(848), - [aux_sym_multiplicative_expression_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [sym_decimal_integer_literal] = ACTIONS(602), - [sym_hex_integer_literal] = ACTIONS(602), - [sym_octal_integer_literal] = ACTIONS(600), - [sym_binary_integer_literal] = ACTIONS(600), - [sym_decimal_floating_point_literal] = ACTIONS(600), - [sym_hex_floating_point_literal] = ACTIONS(602), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(600), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(600), - [anon_sym_r] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_null] = ACTIONS(602), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_QMARK_QMARK] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1883), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [sym_equality_operator] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_GT_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_TILDE_SLASH] = ACTIONS(560), - [sym_increment_operator] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_TILDE] = ACTIONS(602), - [anon_sym_await] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_assert] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(602), - [anon_sym_do] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_yield] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_try] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_AT] = ACTIONS(600), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(602), - [anon_sym_class] = ACTIONS(602), - [anon_sym_super] = ACTIONS(602), - [anon_sym_void] = ACTIONS(602), - [anon_sym_var] = ACTIONS(602), - [anon_sym_covariant] = ACTIONS(602), - [anon_sym_Function] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_new] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_final] = ACTIONS(602), - [anon_sym_external] = ACTIONS(602), - [anon_sym_this] = ACTIONS(602), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [561] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1721), - [sym__below_relational_expression] = STATE(2637), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1721), - [sym_conditional_expression] = STATE(1721), - [sym_logical_or_expression] = STATE(1721), - [sym_logical_and_expression] = STATE(1721), - [sym_equality_expression] = STATE(1721), - [sym_relational_expression] = STATE(1721), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2312), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [573] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression_without_cascade] = STATE(2297), + [sym__real_expression] = STATE(1975), + [sym__below_relational_expression] = STATE(2676), + [sym_throw_expression_without_cascade] = STATE(2297), + [sym_assignment_expression_without_cascade] = STATE(2297), + [sym_assignable_expression] = STATE(2511), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1975), + [sym_conditional_expression] = STATE(1975), + [sym_logical_or_expression] = STATE(1975), + [sym_logical_and_expression] = STATE(1975), + [sym_equality_expression] = STATE(1975), + [sym_relational_expression] = STATE(1975), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2883), + [sym_formal_parameter_list] = STATE(2883), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2341), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + }, + [574] = { + [sym__literal] = STATE(106), + [sym_symbol_literal] = STATE(106), + [sym_true] = STATE(106), + [sym_false] = STATE(106), + [sym_string_literal] = STATE(106), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(106), + [sym_set_or_map_literal] = STATE(106), + [sym_null_literal] = STATE(106), + [sym__expression] = STATE(287), + [sym__real_expression] = STATE(90), + [sym__below_relational_expression] = STATE(2689), + [sym_throw_expression] = STATE(287), + [sym_assignment_expression] = STATE(287), + [sym_assignable_expression] = STATE(2521), + [sym_function_expression] = STATE(106), + [sym_if_null_expression] = STATE(90), + [sym_conditional_expression] = STATE(90), + [sym_logical_or_expression] = STATE(90), + [sym_logical_and_expression] = STATE(90), + [sym_equality_expression] = STATE(90), + [sym_relational_expression] = STATE(90), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(106), + [sym_const_object_expression] = STATE(106), + [sym__primary] = STATE(106), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(106), + [sym_super] = STATE(2314), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1724), + [sym_hex_integer_literal] = ACTIONS(1724), + [sym_octal_integer_literal] = ACTIONS(1726), + [sym_binary_integer_literal] = ACTIONS(1726), + [sym_decimal_floating_point_literal] = ACTIONS(1726), + [sym_hex_floating_point_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [575] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3863), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3863), + [sym_assignment_expression] = STATE(3863), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -67189,6696 +69588,5566 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(47), [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [562] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(976), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(976), - [sym_conditional_expression] = STATE(976), - [sym_logical_or_expression] = STATE(976), - [sym_logical_and_expression] = STATE(976), - [sym_equality_expression] = STATE(976), - [sym_relational_expression] = STATE(976), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [576] = { + [sym__literal] = STATE(1049), + [sym_symbol_literal] = STATE(1049), + [sym_true] = STATE(1049), + [sym_false] = STATE(1049), + [sym_string_literal] = STATE(1049), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1049), + [sym_set_or_map_literal] = STATE(1049), + [sym_null_literal] = STATE(1049), + [sym__expression] = STATE(3416), + [sym__real_expression] = STATE(1657), + [sym__below_relational_expression] = STATE(2687), + [sym_throw_expression] = STATE(3416), + [sym_assignment_expression] = STATE(3416), + [sym_assignable_expression] = STATE(2527), + [sym_function_expression] = STATE(1049), + [sym_if_null_expression] = STATE(1657), + [sym_conditional_expression] = STATE(1657), + [sym_logical_or_expression] = STATE(1657), + [sym_logical_and_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_relational_expression] = STATE(1657), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1049), + [sym_const_object_expression] = STATE(1049), + [sym__primary] = STATE(1049), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1049), + [sym_super] = STATE(2338), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(11), + [sym_hex_integer_literal] = ACTIONS(11), + [sym_octal_integer_literal] = ACTIONS(13), + [sym_binary_integer_literal] = ACTIONS(13), + [sym_decimal_floating_point_literal] = ACTIONS(13), + [sym_hex_floating_point_literal] = ACTIONS(11), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [563] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(989), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(989), - [sym_conditional_expression] = STATE(989), - [sym_logical_or_expression] = STATE(989), - [sym_logical_and_expression] = STATE(989), - [sym_equality_expression] = STATE(989), - [sym_relational_expression] = STATE(989), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [577] = { + [sym__literal] = STATE(107), + [sym_symbol_literal] = STATE(107), + [sym_true] = STATE(107), + [sym_false] = STATE(107), + [sym_string_literal] = STATE(107), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(107), + [sym_set_or_map_literal] = STATE(107), + [sym_null_literal] = STATE(107), + [sym__expression] = STATE(1137), + [sym__real_expression] = STATE(588), + [sym__below_relational_expression] = STATE(2682), + [sym_throw_expression] = STATE(1137), + [sym_assignment_expression] = STATE(1137), + [sym_assignable_expression] = STATE(2512), + [sym_function_expression] = STATE(107), + [sym_if_null_expression] = STATE(588), + [sym_conditional_expression] = STATE(588), + [sym_logical_or_expression] = STATE(588), + [sym_logical_and_expression] = STATE(588), + [sym_equality_expression] = STATE(588), + [sym_relational_expression] = STATE(588), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(107), + [sym_const_object_expression] = STATE(107), + [sym__primary] = STATE(107), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(107), + [sym_super] = STATE(2332), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(1816), + [sym_hex_integer_literal] = ACTIONS(1816), + [sym_octal_integer_literal] = ACTIONS(1818), + [sym_binary_integer_literal] = ACTIONS(1818), + [sym_decimal_floating_point_literal] = ACTIONS(1818), + [sym_hex_floating_point_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_throw] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, - [564] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(988), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(988), - [sym_conditional_expression] = STATE(988), - [sym_logical_or_expression] = STATE(988), - [sym_logical_and_expression] = STATE(988), - [sym_equality_expression] = STATE(988), - [sym_relational_expression] = STATE(988), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [578] = { + [sym_assignable_selector_part] = STATE(581), + [sym_arguments] = STATE(2989), + [sym_argument_part] = STATE(2602), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(830), + [sym_type_arguments] = STATE(3384), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(581), + [aux_sym_assignable_selector_part_repeat1] = STATE(2602), + [ts_builtin_sym_end] = ACTIONS(629), + [sym_identifier] = ACTIONS(627), + [anon_sym_POUND] = ACTIONS(629), + [sym_decimal_integer_literal] = ACTIONS(627), + [sym_hex_integer_literal] = ACTIONS(627), + [sym_octal_integer_literal] = ACTIONS(629), + [sym_binary_integer_literal] = ACTIONS(629), + [sym_decimal_floating_point_literal] = ACTIONS(629), + [sym_hex_floating_point_literal] = ACTIONS(627), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_SQUOTE] = ACTIONS(627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(629), + [anon_sym_r] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_null] = ACTIONS(627), + [anon_sym_throw] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_QMARK_QMARK] = ACTIONS(629), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(629), + [sym_equality_operator] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(629), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(629), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(629), + [anon_sym_TILDE_SLASH] = ACTIONS(629), + [sym_increment_operator] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_TILDE] = ACTIONS(627), + [anon_sym_await] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_QMARK_DOT] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(629), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(627), + [anon_sym_do] = ACTIONS(627), + [anon_sym_while] = ACTIONS(627), + [anon_sym_break] = ACTIONS(627), + [anon_sym_continue] = ACTIONS(627), + [anon_sym_yield] = ACTIONS(627), + [anon_sym_return] = ACTIONS(627), + [anon_sym_try] = ACTIONS(627), + [anon_sym_if] = ACTIONS(627), + [anon_sym_for] = ACTIONS(627), + [anon_sym_AT] = ACTIONS(629), + [anon_sym_enum] = ACTIONS(627), + [anon_sym_abstract] = ACTIONS(627), + [anon_sym_class] = ACTIONS(627), + [anon_sym_super] = ACTIONS(627), + [anon_sym_void] = ACTIONS(627), + [anon_sym_var] = ACTIONS(627), + [anon_sym_covariant] = ACTIONS(627), + [anon_sym_Function] = ACTIONS(627), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(627), + [anon_sym_new] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [anon_sym_final] = ACTIONS(627), + [anon_sym_external] = ACTIONS(627), + [anon_sym_this] = ACTIONS(627), + [sym_comment] = ACTIONS(3), + }, + [579] = { + [sym_assignable_selector_part] = STATE(580), + [sym_arguments] = STATE(2989), + [sym_argument_part] = STATE(2602), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(830), + [sym_type_arguments] = STATE(3384), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(580), + [aux_sym_assignable_selector_part_repeat1] = STATE(2602), + [ts_builtin_sym_end] = ACTIONS(629), + [sym_identifier] = ACTIONS(627), + [anon_sym_POUND] = ACTIONS(629), + [sym_decimal_integer_literal] = ACTIONS(627), + [sym_hex_integer_literal] = ACTIONS(627), + [sym_octal_integer_literal] = ACTIONS(629), + [sym_binary_integer_literal] = ACTIONS(629), + [sym_decimal_floating_point_literal] = ACTIONS(629), + [sym_hex_floating_point_literal] = ACTIONS(627), + [anon_sym_true] = ACTIONS(627), + [anon_sym_false] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_SQUOTE] = ACTIONS(627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(629), + [anon_sym_r] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_null] = ACTIONS(627), + [anon_sym_throw] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_QMARK_QMARK] = ACTIONS(629), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(629), + [sym_equality_operator] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(629), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(629), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(629), + [anon_sym_TILDE_SLASH] = ACTIONS(629), + [sym_increment_operator] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_TILDE] = ACTIONS(627), + [anon_sym_await] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_QMARK_DOT] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(629), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_switch] = ACTIONS(627), + [anon_sym_do] = ACTIONS(627), + [anon_sym_while] = ACTIONS(627), + [anon_sym_break] = ACTIONS(627), + [anon_sym_continue] = ACTIONS(627), + [anon_sym_yield] = ACTIONS(627), + [anon_sym_return] = ACTIONS(627), + [anon_sym_try] = ACTIONS(627), + [anon_sym_if] = ACTIONS(627), + [anon_sym_for] = ACTIONS(627), + [anon_sym_AT] = ACTIONS(629), + [anon_sym_enum] = ACTIONS(627), + [anon_sym_abstract] = ACTIONS(627), + [anon_sym_class] = ACTIONS(627), + [anon_sym_super] = ACTIONS(627), + [anon_sym_void] = ACTIONS(627), + [anon_sym_var] = ACTIONS(627), + [anon_sym_covariant] = ACTIONS(627), + [anon_sym_Function] = ACTIONS(627), + [anon_sym_get] = ACTIONS(627), + [anon_sym_set] = ACTIONS(627), + [anon_sym_new] = ACTIONS(627), + [anon_sym_const] = ACTIONS(627), + [anon_sym_final] = ACTIONS(627), + [anon_sym_external] = ACTIONS(627), + [anon_sym_this] = ACTIONS(627), + [sym_comment] = ACTIONS(3), + }, + [580] = { + [sym_assignable_selector_part] = STATE(582), + [sym_arguments] = STATE(2989), + [sym_argument_part] = STATE(2602), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(830), + [sym_type_arguments] = STATE(3384), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(582), + [aux_sym_assignable_selector_part_repeat1] = STATE(2602), + [ts_builtin_sym_end] = ACTIONS(703), + [sym_identifier] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(703), + [sym_decimal_integer_literal] = ACTIONS(705), + [sym_hex_integer_literal] = ACTIONS(705), + [sym_octal_integer_literal] = ACTIONS(703), + [sym_binary_integer_literal] = ACTIONS(703), + [sym_decimal_floating_point_literal] = ACTIONS(703), + [sym_hex_floating_point_literal] = ACTIONS(705), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(703), + [anon_sym_r] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_QMARK_QMARK] = ACTIONS(703), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [sym_equality_operator] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(703), + [anon_sym_LT_EQ] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_CARET] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_GT_GT_GT] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(703), + [anon_sym_TILDE_SLASH] = ACTIONS(703), + [sym_increment_operator] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_await] = ACTIONS(705), + [anon_sym_is] = ACTIONS(705), + [anon_sym_as] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_QMARK_DOT] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(703), + [anon_sym_assert] = ACTIONS(705), + [anon_sym_switch] = ACTIONS(705), + [anon_sym_do] = ACTIONS(705), + [anon_sym_while] = ACTIONS(705), + [anon_sym_break] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(705), + [anon_sym_return] = ACTIONS(705), + [anon_sym_try] = ACTIONS(705), + [anon_sym_if] = ACTIONS(705), + [anon_sym_for] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(705), + [anon_sym_abstract] = ACTIONS(705), + [anon_sym_class] = ACTIONS(705), + [anon_sym_super] = ACTIONS(705), + [anon_sym_void] = ACTIONS(705), + [anon_sym_var] = ACTIONS(705), + [anon_sym_covariant] = ACTIONS(705), + [anon_sym_Function] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), + [anon_sym_new] = ACTIONS(705), + [anon_sym_const] = ACTIONS(705), + [anon_sym_final] = ACTIONS(705), + [anon_sym_external] = ACTIONS(705), + [anon_sym_this] = ACTIONS(705), + [sym_comment] = ACTIONS(3), + }, + [581] = { + [sym_assignable_selector_part] = STATE(582), + [sym_arguments] = STATE(2989), + [sym_argument_part] = STATE(2602), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(830), + [sym_type_arguments] = STATE(3384), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(582), + [aux_sym_assignable_selector_part_repeat1] = STATE(2602), + [ts_builtin_sym_end] = ACTIONS(703), + [sym_identifier] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(703), + [sym_decimal_integer_literal] = ACTIONS(705), + [sym_hex_integer_literal] = ACTIONS(705), + [sym_octal_integer_literal] = ACTIONS(703), + [sym_binary_integer_literal] = ACTIONS(703), + [sym_decimal_floating_point_literal] = ACTIONS(703), + [sym_hex_floating_point_literal] = ACTIONS(705), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(703), + [anon_sym_r] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_null] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_QMARK_QMARK] = ACTIONS(703), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [sym_equality_operator] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_GT_EQ] = ACTIONS(703), + [anon_sym_LT_EQ] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_CARET] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(705), + [anon_sym_LT_LT] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(705), + [anon_sym_GT_GT_GT] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(703), + [anon_sym_TILDE_SLASH] = ACTIONS(703), + [sym_increment_operator] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_await] = ACTIONS(705), + [anon_sym_is] = ACTIONS(705), + [anon_sym_as] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_QMARK_DOT] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(703), + [anon_sym_assert] = ACTIONS(705), + [anon_sym_switch] = ACTIONS(705), + [anon_sym_do] = ACTIONS(705), + [anon_sym_while] = ACTIONS(705), + [anon_sym_break] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(705), + [anon_sym_return] = ACTIONS(705), + [anon_sym_try] = ACTIONS(705), + [anon_sym_if] = ACTIONS(705), + [anon_sym_for] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(703), + [anon_sym_enum] = ACTIONS(705), + [anon_sym_abstract] = ACTIONS(705), + [anon_sym_class] = ACTIONS(705), + [anon_sym_super] = ACTIONS(705), + [anon_sym_void] = ACTIONS(705), + [anon_sym_var] = ACTIONS(705), + [anon_sym_covariant] = ACTIONS(705), + [anon_sym_Function] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), + [anon_sym_new] = ACTIONS(705), + [anon_sym_const] = ACTIONS(705), + [anon_sym_final] = ACTIONS(705), + [anon_sym_external] = ACTIONS(705), + [anon_sym_this] = ACTIONS(705), + [sym_comment] = ACTIONS(3), + }, + [582] = { + [sym_assignable_selector_part] = STATE(582), + [sym_arguments] = STATE(2989), + [sym_argument_part] = STATE(2602), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(830), + [sym_type_arguments] = STATE(3384), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_expression_repeat1] = STATE(582), + [aux_sym_assignable_selector_part_repeat1] = STATE(2602), + [ts_builtin_sym_end] = ACTIONS(722), + [sym_identifier] = ACTIONS(724), + [anon_sym_POUND] = ACTIONS(722), + [sym_decimal_integer_literal] = ACTIONS(724), + [sym_hex_integer_literal] = ACTIONS(724), + [sym_octal_integer_literal] = ACTIONS(722), + [sym_binary_integer_literal] = ACTIONS(722), + [sym_decimal_floating_point_literal] = ACTIONS(722), + [sym_hex_floating_point_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(724), + [anon_sym_false] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(722), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(722), + [anon_sym_r] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(722), + [anon_sym_null] = ACTIONS(724), + [anon_sym_throw] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_QMARK_QMARK] = ACTIONS(722), + [anon_sym_QMARK] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [sym_equality_operator] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_GT_EQ] = ACTIONS(722), + [anon_sym_LT_EQ] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(722), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_GT_GT_GT] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(722), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_PERCENT] = ACTIONS(722), + [anon_sym_TILDE_SLASH] = ACTIONS(722), + [sym_increment_operator] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_await] = ACTIONS(724), + [anon_sym_is] = ACTIONS(724), + [anon_sym_as] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_assert] = ACTIONS(724), + [anon_sym_switch] = ACTIONS(724), + [anon_sym_do] = ACTIONS(724), + [anon_sym_while] = ACTIONS(724), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_yield] = ACTIONS(724), + [anon_sym_return] = ACTIONS(724), + [anon_sym_try] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(722), + [anon_sym_enum] = ACTIONS(724), + [anon_sym_abstract] = ACTIONS(724), + [anon_sym_class] = ACTIONS(724), + [anon_sym_super] = ACTIONS(724), + [anon_sym_void] = ACTIONS(724), + [anon_sym_var] = ACTIONS(724), + [anon_sym_covariant] = ACTIONS(724), + [anon_sym_Function] = ACTIONS(724), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_new] = ACTIONS(724), + [anon_sym_const] = ACTIONS(724), + [anon_sym_final] = ACTIONS(724), + [anon_sym_external] = ACTIONS(724), + [anon_sym_this] = ACTIONS(724), + [sym_comment] = ACTIONS(3), + }, + [583] = { + [sym_selector] = STATE(585), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(854), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(854), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym__postfix_expression_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(741), + [sym_identifier] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(741), + [sym_decimal_integer_literal] = ACTIONS(743), + [sym_hex_integer_literal] = ACTIONS(743), + [sym_octal_integer_literal] = ACTIONS(741), + [sym_binary_integer_literal] = ACTIONS(741), + [sym_decimal_floating_point_literal] = ACTIONS(741), + [sym_hex_floating_point_literal] = ACTIONS(743), + [anon_sym_true] = ACTIONS(743), + [anon_sym_false] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(741), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(741), + [anon_sym_r] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_null] = ACTIONS(743), + [anon_sym_throw] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_QMARK_QMARK] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [sym_equality_operator] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(743), + [anon_sym_GT_GT_GT] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_TILDE_SLASH] = ACTIONS(741), + [sym_increment_operator] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_await] = ACTIONS(743), + [anon_sym_is] = ACTIONS(743), + [anon_sym_as] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(1915), + [anon_sym_QMARK_DOT] = ACTIONS(1918), + [anon_sym_DOT_DOT] = ACTIONS(741), + [anon_sym_assert] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(743), + [anon_sym_do] = ACTIONS(743), + [anon_sym_while] = ACTIONS(743), + [anon_sym_break] = ACTIONS(743), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(743), + [anon_sym_return] = ACTIONS(743), + [anon_sym_try] = ACTIONS(743), + [anon_sym_if] = ACTIONS(743), + [anon_sym_for] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_abstract] = ACTIONS(743), + [anon_sym_class] = ACTIONS(743), + [anon_sym_super] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_var] = ACTIONS(743), + [anon_sym_covariant] = ACTIONS(743), + [anon_sym_Function] = ACTIONS(743), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(743), + [anon_sym_new] = ACTIONS(743), + [anon_sym_const] = ACTIONS(743), + [anon_sym_final] = ACTIONS(743), + [anon_sym_external] = ACTIONS(743), + [anon_sym_this] = ACTIONS(743), + [sym_comment] = ACTIONS(3), + }, + [584] = { + [sym_selector] = STATE(585), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(854), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(854), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym__postfix_expression_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(785), + [sym_identifier] = ACTIONS(787), + [anon_sym_POUND] = ACTIONS(785), + [sym_decimal_integer_literal] = ACTIONS(787), + [sym_hex_integer_literal] = ACTIONS(787), + [sym_octal_integer_literal] = ACTIONS(785), + [sym_binary_integer_literal] = ACTIONS(785), + [sym_decimal_floating_point_literal] = ACTIONS(785), + [sym_hex_floating_point_literal] = ACTIONS(787), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(785), + [anon_sym_DQUOTE] = ACTIONS(787), + [anon_sym_SQUOTE] = ACTIONS(787), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(785), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_r] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_null] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_QMARK_QMARK] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(787), + [anon_sym_PIPE_PIPE] = ACTIONS(785), + [anon_sym_AMP_AMP] = ACTIONS(785), + [sym_equality_operator] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(785), + [anon_sym_LT_EQ] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(787), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(787), + [anon_sym_GT_GT_GT] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_PERCENT] = ACTIONS(785), + [anon_sym_TILDE_SLASH] = ACTIONS(785), + [sym_increment_operator] = ACTIONS(785), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(787), + [anon_sym_await] = ACTIONS(787), + [anon_sym_is] = ACTIONS(787), + [anon_sym_as] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_QMARK_DOT] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(785), + [anon_sym_assert] = ACTIONS(787), + [anon_sym_switch] = ACTIONS(787), + [anon_sym_do] = ACTIONS(787), + [anon_sym_while] = ACTIONS(787), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(787), + [anon_sym_yield] = ACTIONS(787), + [anon_sym_return] = ACTIONS(787), + [anon_sym_try] = ACTIONS(787), + [anon_sym_if] = ACTIONS(787), + [anon_sym_for] = ACTIONS(787), + [anon_sym_AT] = ACTIONS(785), + [anon_sym_enum] = ACTIONS(787), + [anon_sym_abstract] = ACTIONS(787), + [anon_sym_class] = ACTIONS(787), + [anon_sym_super] = ACTIONS(787), + [anon_sym_void] = ACTIONS(787), + [anon_sym_var] = ACTIONS(787), + [anon_sym_covariant] = ACTIONS(787), + [anon_sym_Function] = ACTIONS(787), + [anon_sym_get] = ACTIONS(787), + [anon_sym_set] = ACTIONS(787), + [anon_sym_new] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_final] = ACTIONS(787), + [anon_sym_external] = ACTIONS(787), + [anon_sym_this] = ACTIONS(787), + [sym_comment] = ACTIONS(3), + }, + [585] = { + [sym_selector] = STATE(585), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(854), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(854), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym__postfix_expression_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(763), + [sym_identifier] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(763), + [sym_decimal_integer_literal] = ACTIONS(765), + [sym_hex_integer_literal] = ACTIONS(765), + [sym_octal_integer_literal] = ACTIONS(763), + [sym_binary_integer_literal] = ACTIONS(763), + [sym_decimal_floating_point_literal] = ACTIONS(763), + [sym_hex_floating_point_literal] = ACTIONS(765), + [anon_sym_true] = ACTIONS(765), + [anon_sym_false] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(763), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(763), + [anon_sym_r] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_COMMA] = ACTIONS(763), + [anon_sym_null] = ACTIONS(765), + [anon_sym_throw] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_QMARK_QMARK] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [sym_equality_operator] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_EQ] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(765), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(765), + [anon_sym_GT_GT_GT] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_TILDE_SLASH] = ACTIONS(763), + [sym_increment_operator] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_TILDE] = ACTIONS(765), + [anon_sym_await] = ACTIONS(765), + [anon_sym_is] = ACTIONS(765), + [anon_sym_as] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(1939), + [anon_sym_QMARK_DOT] = ACTIONS(1942), + [anon_sym_DOT_DOT] = ACTIONS(763), + [anon_sym_assert] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_break] = ACTIONS(765), + [anon_sym_continue] = ACTIONS(765), + [anon_sym_yield] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_try] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(763), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_abstract] = ACTIONS(765), + [anon_sym_class] = ACTIONS(765), + [anon_sym_super] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_var] = ACTIONS(765), + [anon_sym_covariant] = ACTIONS(765), + [anon_sym_Function] = ACTIONS(765), + [anon_sym_get] = ACTIONS(765), + [anon_sym_set] = ACTIONS(765), + [anon_sym_new] = ACTIONS(765), + [anon_sym_const] = ACTIONS(765), + [anon_sym_final] = ACTIONS(765), + [anon_sym_external] = ACTIONS(765), + [anon_sym_this] = ACTIONS(765), + [sym_comment] = ACTIONS(3), + }, + [586] = { + [sym_selector] = STATE(585), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(854), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(854), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym__postfix_expression_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(785), + [sym_identifier] = ACTIONS(787), + [anon_sym_POUND] = ACTIONS(785), + [sym_decimal_integer_literal] = ACTIONS(787), + [sym_hex_integer_literal] = ACTIONS(787), + [sym_octal_integer_literal] = ACTIONS(785), + [sym_binary_integer_literal] = ACTIONS(785), + [sym_decimal_floating_point_literal] = ACTIONS(785), + [sym_hex_floating_point_literal] = ACTIONS(787), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(785), + [anon_sym_DQUOTE] = ACTIONS(787), + [anon_sym_SQUOTE] = ACTIONS(787), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(785), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_r] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_null] = ACTIONS(787), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_QMARK_QMARK] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(787), + [anon_sym_PIPE_PIPE] = ACTIONS(785), + [anon_sym_AMP_AMP] = ACTIONS(785), + [sym_equality_operator] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(785), + [anon_sym_LT_EQ] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(787), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(787), + [anon_sym_GT_GT_GT] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_PERCENT] = ACTIONS(785), + [anon_sym_TILDE_SLASH] = ACTIONS(785), + [sym_increment_operator] = ACTIONS(785), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(787), + [anon_sym_await] = ACTIONS(787), + [anon_sym_is] = ACTIONS(787), + [anon_sym_as] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_QMARK_DOT] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(785), + [anon_sym_assert] = ACTIONS(787), + [anon_sym_switch] = ACTIONS(787), + [anon_sym_do] = ACTIONS(787), + [anon_sym_while] = ACTIONS(787), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(787), + [anon_sym_yield] = ACTIONS(787), + [anon_sym_return] = ACTIONS(787), + [anon_sym_try] = ACTIONS(787), + [anon_sym_if] = ACTIONS(787), + [anon_sym_for] = ACTIONS(787), + [anon_sym_AT] = ACTIONS(785), + [anon_sym_enum] = ACTIONS(787), + [anon_sym_abstract] = ACTIONS(787), + [anon_sym_class] = ACTIONS(787), + [anon_sym_super] = ACTIONS(787), + [anon_sym_void] = ACTIONS(787), + [anon_sym_var] = ACTIONS(787), + [anon_sym_covariant] = ACTIONS(787), + [anon_sym_Function] = ACTIONS(787), + [anon_sym_get] = ACTIONS(787), + [anon_sym_set] = ACTIONS(787), + [anon_sym_new] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_final] = ACTIONS(787), + [anon_sym_external] = ACTIONS(787), + [anon_sym_this] = ACTIONS(787), + [sym_comment] = ACTIONS(3), + }, + [587] = { + [sym_selector] = STATE(585), + [sym_arguments] = STATE(845), + [sym_argument_part] = STATE(854), + [sym_unconditional_assignable_selector] = STATE(795), + [sym_assignable_selector] = STATE(854), + [sym_type_arguments] = STATE(3554), + [sym__type_args] = STATE(2492), + [aux_sym__postfix_expression_repeat1] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(741), + [sym_identifier] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(741), + [sym_decimal_integer_literal] = ACTIONS(743), + [sym_hex_integer_literal] = ACTIONS(743), + [sym_octal_integer_literal] = ACTIONS(741), + [sym_binary_integer_literal] = ACTIONS(741), + [sym_decimal_floating_point_literal] = ACTIONS(741), + [sym_hex_floating_point_literal] = ACTIONS(743), + [anon_sym_true] = ACTIONS(743), + [anon_sym_false] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(741), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(741), + [anon_sym_r] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_null] = ACTIONS(743), + [anon_sym_throw] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_QMARK_QMARK] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [sym_equality_operator] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(743), + [anon_sym_GT_GT_GT] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_TILDE_SLASH] = ACTIONS(741), + [sym_increment_operator] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_await] = ACTIONS(743), + [anon_sym_is] = ACTIONS(743), + [anon_sym_as] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_QMARK_DOT] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(741), + [anon_sym_assert] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(743), + [anon_sym_do] = ACTIONS(743), + [anon_sym_while] = ACTIONS(743), + [anon_sym_break] = ACTIONS(743), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(743), + [anon_sym_return] = ACTIONS(743), + [anon_sym_try] = ACTIONS(743), + [anon_sym_if] = ACTIONS(743), + [anon_sym_for] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_abstract] = ACTIONS(743), + [anon_sym_class] = ACTIONS(743), + [anon_sym_super] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_var] = ACTIONS(743), + [anon_sym_covariant] = ACTIONS(743), + [anon_sym_Function] = ACTIONS(743), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(743), + [anon_sym_new] = ACTIONS(743), + [anon_sym_const] = ACTIONS(743), + [anon_sym_final] = ACTIONS(743), + [anon_sym_external] = ACTIONS(743), + [anon_sym_this] = ACTIONS(743), [sym_comment] = ACTIONS(3), }, - [565] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(986), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(986), - [sym_conditional_expression] = STATE(986), - [sym_logical_or_expression] = STATE(986), - [sym_logical_and_expression] = STATE(986), - [sym_equality_expression] = STATE(986), - [sym_relational_expression] = STATE(986), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [588] = { + [aux_sym__if_null_expression] = STATE(958), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [sym_cascade_section] = STATE(1076), + [aux_sym__expression_repeat1] = STATE(1076), + [aux_sym_logical_or_expression_repeat1] = STATE(959), + [aux_sym_logical_and_expression_repeat1] = STATE(960), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [anon_sym_POUND] = ACTIONS(534), + [sym_decimal_integer_literal] = ACTIONS(536), + [sym_hex_integer_literal] = ACTIONS(536), + [sym_octal_integer_literal] = ACTIONS(534), + [sym_binary_integer_literal] = ACTIONS(534), + [sym_decimal_floating_point_literal] = ACTIONS(534), + [sym_hex_floating_point_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(536), + [anon_sym_false] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(534), + [anon_sym_r] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_null] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_QMARK_QMARK] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [sym_equality_operator] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_TILDE] = ACTIONS(536), + [anon_sym_await] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_assert] = ACTIONS(536), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_abstract] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [anon_sym_super] = ACTIONS(536), + [anon_sym_void] = ACTIONS(536), + [anon_sym_var] = ACTIONS(536), + [anon_sym_covariant] = ACTIONS(536), + [anon_sym_Function] = ACTIONS(536), + [anon_sym_get] = ACTIONS(536), + [anon_sym_set] = ACTIONS(536), + [anon_sym_new] = ACTIONS(536), + [anon_sym_const] = ACTIONS(536), + [anon_sym_final] = ACTIONS(536), + [anon_sym_external] = ACTIONS(536), + [anon_sym_this] = ACTIONS(536), [sym_comment] = ACTIONS(3), }, - [566] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1589), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1589), - [sym_conditional_expression] = STATE(1589), - [sym_logical_or_expression] = STATE(1589), - [sym_logical_and_expression] = STATE(1589), - [sym_equality_expression] = STATE(1589), - [sym_relational_expression] = STATE(1589), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [589] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1496), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1496), + [sym_conditional_expression] = STATE(1496), + [sym_logical_or_expression] = STATE(1496), + [sym_logical_and_expression] = STATE(1496), + [sym_equality_expression] = STATE(1496), + [sym_relational_expression] = STATE(1496), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [567] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1595), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1595), - [sym_conditional_expression] = STATE(1595), - [sym_logical_or_expression] = STATE(1595), - [sym_logical_and_expression] = STATE(1595), - [sym_equality_expression] = STATE(1595), - [sym_relational_expression] = STATE(1595), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [590] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1624), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1624), + [sym_conditional_expression] = STATE(1624), + [sym_logical_or_expression] = STATE(1624), + [sym_logical_and_expression] = STATE(1624), + [sym_equality_expression] = STATE(1624), + [sym_relational_expression] = STATE(1624), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [568] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1580), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1580), - [sym_conditional_expression] = STATE(1580), - [sym_logical_or_expression] = STATE(1580), - [sym_logical_and_expression] = STATE(1580), - [sym_equality_expression] = STATE(1580), - [sym_relational_expression] = STATE(1580), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [591] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1514), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1514), + [sym_conditional_expression] = STATE(1514), + [sym_logical_or_expression] = STATE(1514), + [sym_logical_and_expression] = STATE(1514), + [sym_equality_expression] = STATE(1514), + [sym_relational_expression] = STATE(1514), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [569] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1582), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1582), - [sym_conditional_expression] = STATE(1582), - [sym_logical_or_expression] = STATE(1582), - [sym_logical_and_expression] = STATE(1582), - [sym_equality_expression] = STATE(1582), - [sym_relational_expression] = STATE(1582), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [592] = { + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1502), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1502), + [sym_conditional_expression] = STATE(1502), + [sym_logical_or_expression] = STATE(1502), + [sym_logical_and_expression] = STATE(1502), + [sym_equality_expression] = STATE(1502), + [sym_relational_expression] = STATE(1502), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [570] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(2347), - [sym__below_relational_expression] = STATE(1080), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(2347), - [sym_conditional_expression] = STATE(2347), - [sym_logical_or_expression] = STATE(2347), - [sym_logical_and_expression] = STATE(2347), - [sym_equality_expression] = STATE(2347), - [sym_relational_expression] = STATE(2347), - [sym_bitwise_or_expression] = STATE(1414), - [sym_bitwise_xor_expression] = STATE(1414), - [sym_bitwise_and_expression] = STATE(1414), - [sym_shift_expression] = STATE(1414), - [sym_additive_expression] = STATE(1414), - [sym_multiplicative_expression] = STATE(1414), - [sym__unary_expression] = STATE(1414), - [sym_unary_expression] = STATE(1414), - [sym__postfix_expression] = STATE(1414), - [sym_postfix_expression] = STATE(1414), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2300), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [593] = { + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1575), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1575), + [sym_conditional_expression] = STATE(1575), + [sym_logical_or_expression] = STATE(1575), + [sym_logical_and_expression] = STATE(1575), + [sym_equality_expression] = STATE(1575), + [sym_relational_expression] = STATE(1575), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [571] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(987), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(987), - [sym_conditional_expression] = STATE(987), - [sym_logical_or_expression] = STATE(987), - [sym_logical_and_expression] = STATE(987), - [sym_equality_expression] = STATE(987), - [sym_relational_expression] = STATE(987), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(37), + [594] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1515), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1515), + [sym_conditional_expression] = STATE(1515), + [sym_logical_or_expression] = STATE(1515), + [sym_logical_and_expression] = STATE(1515), + [sym_equality_expression] = STATE(1515), + [sym_relational_expression] = STATE(1515), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [572] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(985), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(985), - [sym_conditional_expression] = STATE(985), - [sym_logical_or_expression] = STATE(985), - [sym_logical_and_expression] = STATE(985), - [sym_equality_expression] = STATE(985), - [sym_relational_expression] = STATE(985), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(37), + [595] = { + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(2378), + [sym__below_relational_expression] = STATE(746), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(2378), + [sym_conditional_expression] = STATE(2378), + [sym_logical_or_expression] = STATE(2378), + [sym_logical_and_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_bitwise_or_expression] = STATE(838), + [sym_bitwise_xor_expression] = STATE(838), + [sym_bitwise_and_expression] = STATE(838), + [sym_shift_expression] = STATE(838), + [sym_additive_expression] = STATE(838), + [sym_multiplicative_expression] = STATE(838), + [sym__unary_expression] = STATE(838), + [sym_unary_expression] = STATE(838), + [sym__postfix_expression] = STATE(838), + [sym_postfix_expression] = STATE(838), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2360), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + }, + [596] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1637), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1637), + [sym_conditional_expression] = STATE(1637), + [sym_logical_or_expression] = STATE(1637), + [sym_logical_and_expression] = STATE(1637), + [sym_equality_expression] = STATE(1637), + [sym_relational_expression] = STATE(1637), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [573] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(983), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(983), - [sym_conditional_expression] = STATE(983), - [sym_logical_or_expression] = STATE(983), - [sym_logical_and_expression] = STATE(983), - [sym_equality_expression] = STATE(983), - [sym_relational_expression] = STATE(983), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), + [597] = { + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(2365), + [sym__below_relational_expression] = STATE(755), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(2365), + [sym_conditional_expression] = STATE(2365), + [sym_logical_or_expression] = STATE(2365), + [sym_logical_and_expression] = STATE(2365), + [sym_equality_expression] = STATE(2365), + [sym_relational_expression] = STATE(2365), + [sym_bitwise_or_expression] = STATE(919), + [sym_bitwise_xor_expression] = STATE(919), + [sym_bitwise_and_expression] = STATE(919), + [sym_shift_expression] = STATE(919), + [sym_additive_expression] = STATE(919), + [sym_multiplicative_expression] = STATE(919), + [sym__unary_expression] = STATE(919), + [sym_unary_expression] = STATE(919), + [sym__postfix_expression] = STATE(919), + [sym_postfix_expression] = STATE(919), + [sym_prefix_operator] = STATE(2679), [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), + [sym_negation_operator] = STATE(3008), [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(37), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2328), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, - [574] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(990), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(990), - [sym_conditional_expression] = STATE(990), - [sym_logical_or_expression] = STATE(990), - [sym_logical_and_expression] = STATE(990), - [sym_equality_expression] = STATE(990), - [sym_relational_expression] = STATE(990), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [575] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(991), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(991), - [sym_conditional_expression] = STATE(991), - [sym_logical_or_expression] = STATE(991), - [sym_logical_and_expression] = STATE(991), - [sym_equality_expression] = STATE(991), - [sym_relational_expression] = STATE(991), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [576] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(974), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(974), - [sym_conditional_expression] = STATE(974), - [sym_logical_or_expression] = STATE(974), - [sym_logical_and_expression] = STATE(974), - [sym_equality_expression] = STATE(974), - [sym_relational_expression] = STATE(974), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [577] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(2337), - [sym__below_relational_expression] = STATE(559), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(2337), - [sym_conditional_expression] = STATE(2337), - [sym_logical_or_expression] = STATE(2337), - [sym_logical_and_expression] = STATE(2337), - [sym_equality_expression] = STATE(2337), - [sym_relational_expression] = STATE(2337), - [sym_bitwise_or_expression] = STATE(756), - [sym_bitwise_xor_expression] = STATE(756), - [sym_bitwise_and_expression] = STATE(756), - [sym_shift_expression] = STATE(756), - [sym_additive_expression] = STATE(756), - [sym_multiplicative_expression] = STATE(756), - [sym__unary_expression] = STATE(756), - [sym_unary_expression] = STATE(756), - [sym__postfix_expression] = STATE(756), - [sym_postfix_expression] = STATE(756), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2315), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - }, - [578] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1972), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1972), - [sym_conditional_expression] = STATE(1972), - [sym_logical_or_expression] = STATE(1972), - [sym_logical_and_expression] = STATE(1972), - [sym_equality_expression] = STATE(1972), - [sym_relational_expression] = STATE(1972), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [598] = { + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(96), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(96), + [sym_conditional_expression] = STATE(96), + [sym_logical_or_expression] = STATE(96), + [sym_logical_and_expression] = STATE(96), + [sym_equality_expression] = STATE(96), + [sym_relational_expression] = STATE(96), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, - [579] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1538), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1538), - [sym_conditional_expression] = STATE(1538), - [sym_logical_or_expression] = STATE(1538), - [sym_logical_and_expression] = STATE(1538), - [sym_equality_expression] = STATE(1538), - [sym_relational_expression] = STATE(1538), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [599] = { + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1666), + [sym__below_relational_expression] = STATE(2703), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1666), + [sym_conditional_expression] = STATE(1666), + [sym_logical_or_expression] = STATE(1666), + [sym_logical_and_expression] = STATE(1666), + [sym_equality_expression] = STATE(1666), + [sym_relational_expression] = STATE(1666), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2329), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [580] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1639), - [sym__below_relational_expression] = STATE(2633), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1639), - [sym_conditional_expression] = STATE(1639), - [sym_logical_or_expression] = STATE(1639), - [sym_logical_and_expression] = STATE(1639), - [sym_equality_expression] = STATE(1639), - [sym_relational_expression] = STATE(1639), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2326), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [600] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1620), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1620), + [sym_conditional_expression] = STATE(1620), + [sym_logical_or_expression] = STATE(1620), + [sym_logical_and_expression] = STATE(1620), + [sym_equality_expression] = STATE(1620), + [sym_relational_expression] = STATE(1620), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [581] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1638), - [sym__below_relational_expression] = STATE(2633), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1638), - [sym_conditional_expression] = STATE(1638), - [sym_logical_or_expression] = STATE(1638), - [sym_logical_and_expression] = STATE(1638), - [sym_equality_expression] = STATE(1638), - [sym_relational_expression] = STATE(1638), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2326), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [601] = { + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(97), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(97), + [sym_conditional_expression] = STATE(97), + [sym_logical_or_expression] = STATE(97), + [sym_logical_and_expression] = STATE(97), + [sym_equality_expression] = STATE(97), + [sym_relational_expression] = STATE(97), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, - [582] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1537), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1537), - [sym_conditional_expression] = STATE(1537), - [sym_logical_or_expression] = STATE(1537), - [sym_logical_and_expression] = STATE(1537), - [sym_equality_expression] = STATE(1537), - [sym_relational_expression] = STATE(1537), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [602] = { + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1008), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1008), + [sym_conditional_expression] = STATE(1008), + [sym_logical_or_expression] = STATE(1008), + [sym_logical_and_expression] = STATE(1008), + [sym_equality_expression] = STATE(1008), + [sym_relational_expression] = STATE(1008), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), + [sym_increment_operator] = ACTIONS(1847), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), + [anon_sym_await] = ACTIONS(1849), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, - [583] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1515), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1515), - [sym_conditional_expression] = STATE(1515), - [sym_logical_or_expression] = STATE(1515), - [sym_logical_and_expression] = STATE(1515), - [sym_equality_expression] = STATE(1515), - [sym_relational_expression] = STATE(1515), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [603] = { + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1508), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1508), + [sym_conditional_expression] = STATE(1508), + [sym_logical_or_expression] = STATE(1508), + [sym_logical_and_expression] = STATE(1508), + [sym_equality_expression] = STATE(1508), + [sym_relational_expression] = STATE(1508), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [584] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1528), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1528), - [sym_conditional_expression] = STATE(1528), - [sym_logical_or_expression] = STATE(1528), - [sym_logical_and_expression] = STATE(1528), - [sym_equality_expression] = STATE(1528), - [sym_relational_expression] = STATE(1528), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [604] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1516), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1516), + [sym_conditional_expression] = STATE(1516), + [sym_logical_or_expression] = STATE(1516), + [sym_logical_and_expression] = STATE(1516), + [sym_equality_expression] = STATE(1516), + [sym_relational_expression] = STATE(1516), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [585] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1521), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1521), - [sym_conditional_expression] = STATE(1521), - [sym_logical_or_expression] = STATE(1521), - [sym_logical_and_expression] = STATE(1521), - [sym_equality_expression] = STATE(1521), - [sym_relational_expression] = STATE(1521), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [605] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2369), + [sym__below_relational_expression] = STATE(2041), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2369), + [sym_conditional_expression] = STATE(2369), + [sym_logical_or_expression] = STATE(2369), + [sym_logical_and_expression] = STATE(2369), + [sym_equality_expression] = STATE(2369), + [sym_relational_expression] = STATE(2369), + [sym_bitwise_or_expression] = STATE(2294), + [sym_bitwise_xor_expression] = STATE(2294), + [sym_bitwise_and_expression] = STATE(2294), + [sym_shift_expression] = STATE(2294), + [sym_additive_expression] = STATE(2294), + [sym_multiplicative_expression] = STATE(2294), + [sym__unary_expression] = STATE(2294), + [sym_unary_expression] = STATE(2294), + [sym__postfix_expression] = STATE(2294), + [sym_postfix_expression] = STATE(2294), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2320), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - }, - [586] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2336), - [sym__below_relational_expression] = STATE(1936), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2336), - [sym_conditional_expression] = STATE(2336), - [sym_logical_or_expression] = STATE(2336), - [sym_logical_and_expression] = STATE(2336), - [sym_equality_expression] = STATE(2336), - [sym_relational_expression] = STATE(2336), - [sym_bitwise_or_expression] = STATE(2266), - [sym_bitwise_xor_expression] = STATE(2266), - [sym_bitwise_and_expression] = STATE(2266), - [sym_shift_expression] = STATE(2266), - [sym_additive_expression] = STATE(2266), - [sym_multiplicative_expression] = STATE(2266), - [sym__unary_expression] = STATE(2266), - [sym_unary_expression] = STATE(2266), - [sym__postfix_expression] = STATE(2266), - [sym_postfix_expression] = STATE(2266), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2284), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [587] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1524), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1524), - [sym_conditional_expression] = STATE(1524), - [sym_logical_or_expression] = STATE(1524), - [sym_logical_and_expression] = STATE(1524), - [sym_equality_expression] = STATE(1524), - [sym_relational_expression] = STATE(1524), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [606] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1517), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1517), + [sym_conditional_expression] = STATE(1517), + [sym_logical_or_expression] = STATE(1517), + [sym_logical_and_expression] = STATE(1517), + [sym_equality_expression] = STATE(1517), + [sym_relational_expression] = STATE(1517), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - }, - [588] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(306), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(306), - [sym_conditional_expression] = STATE(306), - [sym_logical_or_expression] = STATE(306), - [sym_logical_and_expression] = STATE(306), - [sym_equality_expression] = STATE(306), - [sym_relational_expression] = STATE(306), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [589] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(329), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(329), - [sym_conditional_expression] = STATE(329), - [sym_logical_or_expression] = STATE(329), - [sym_logical_and_expression] = STATE(329), - [sym_equality_expression] = STATE(329), - [sym_relational_expression] = STATE(329), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - }, - [590] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1594), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1594), - [sym_conditional_expression] = STATE(1594), - [sym_logical_or_expression] = STATE(1594), - [sym_logical_and_expression] = STATE(1594), - [sym_equality_expression] = STATE(1594), - [sym_relational_expression] = STATE(1594), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [607] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1519), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1519), + [sym_conditional_expression] = STATE(1519), + [sym_logical_or_expression] = STATE(1519), + [sym_logical_and_expression] = STATE(1519), + [sym_equality_expression] = STATE(1519), + [sym_relational_expression] = STATE(1519), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [591] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(318), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(318), - [sym_conditional_expression] = STATE(318), - [sym_logical_or_expression] = STATE(318), - [sym_logical_and_expression] = STATE(318), - [sym_equality_expression] = STATE(318), - [sym_relational_expression] = STATE(318), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - }, - [592] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1578), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1578), - [sym_conditional_expression] = STATE(1578), - [sym_logical_or_expression] = STATE(1578), - [sym_logical_and_expression] = STATE(1578), - [sym_equality_expression] = STATE(1578), - [sym_relational_expression] = STATE(1578), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [608] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1520), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1520), + [sym_conditional_expression] = STATE(1520), + [sym_logical_or_expression] = STATE(1520), + [sym_logical_and_expression] = STATE(1520), + [sym_equality_expression] = STATE(1520), + [sym_relational_expression] = STATE(1520), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [593] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1587), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1587), - [sym_conditional_expression] = STATE(1587), - [sym_logical_or_expression] = STATE(1587), - [sym_logical_and_expression] = STATE(1587), - [sym_equality_expression] = STATE(1587), - [sym_relational_expression] = STATE(1587), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [609] = { + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1012), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1012), + [sym_conditional_expression] = STATE(1012), + [sym_logical_or_expression] = STATE(1012), + [sym_logical_and_expression] = STATE(1012), + [sym_equality_expression] = STATE(1012), + [sym_relational_expression] = STATE(1012), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [594] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(311), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(311), - [sym_conditional_expression] = STATE(311), - [sym_logical_or_expression] = STATE(311), - [sym_logical_and_expression] = STATE(311), - [sym_equality_expression] = STATE(311), - [sym_relational_expression] = STATE(311), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [595] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1590), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1590), - [sym_conditional_expression] = STATE(1590), - [sym_logical_or_expression] = STATE(1590), - [sym_logical_and_expression] = STATE(1590), - [sym_equality_expression] = STATE(1590), - [sym_relational_expression] = STATE(1590), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [610] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1978), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1978), + [sym_conditional_expression] = STATE(1978), + [sym_logical_or_expression] = STATE(1978), + [sym_logical_and_expression] = STATE(1978), + [sym_equality_expression] = STATE(1978), + [sym_relational_expression] = STATE(1978), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [596] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1517), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1517), - [sym_conditional_expression] = STATE(1517), - [sym_logical_or_expression] = STATE(1517), - [sym_logical_and_expression] = STATE(1517), - [sym_equality_expression] = STATE(1517), - [sym_relational_expression] = STATE(1517), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [597] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1516), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1516), - [sym_conditional_expression] = STATE(1516), - [sym_logical_or_expression] = STATE(1516), - [sym_logical_and_expression] = STATE(1516), - [sym_equality_expression] = STATE(1516), - [sym_relational_expression] = STATE(1516), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [598] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1523), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1523), - [sym_conditional_expression] = STATE(1523), - [sym_logical_or_expression] = STATE(1523), - [sym_logical_and_expression] = STATE(1523), - [sym_equality_expression] = STATE(1523), - [sym_relational_expression] = STATE(1523), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [599] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1522), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1522), - [sym_conditional_expression] = STATE(1522), - [sym_logical_or_expression] = STATE(1522), - [sym_logical_and_expression] = STATE(1522), - [sym_equality_expression] = STATE(1522), - [sym_relational_expression] = STATE(1522), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [600] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1536), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1536), - [sym_conditional_expression] = STATE(1536), - [sym_logical_or_expression] = STATE(1536), - [sym_logical_and_expression] = STATE(1536), - [sym_equality_expression] = STATE(1536), - [sym_relational_expression] = STATE(1536), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [601] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1539), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1539), - [sym_conditional_expression] = STATE(1539), - [sym_logical_or_expression] = STATE(1539), - [sym_logical_and_expression] = STATE(1539), - [sym_equality_expression] = STATE(1539), - [sym_relational_expression] = STATE(1539), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [602] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2335), - [sym__below_relational_expression] = STATE(1993), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2335), - [sym_conditional_expression] = STATE(2335), - [sym_logical_or_expression] = STATE(2335), - [sym_logical_and_expression] = STATE(2335), - [sym_equality_expression] = STATE(2335), - [sym_relational_expression] = STATE(2335), - [sym_bitwise_or_expression] = STATE(2266), - [sym_bitwise_xor_expression] = STATE(2266), - [sym_bitwise_and_expression] = STATE(2266), - [sym_shift_expression] = STATE(2266), - [sym_additive_expression] = STATE(2266), - [sym_multiplicative_expression] = STATE(2266), - [sym__unary_expression] = STATE(2266), - [sym_unary_expression] = STATE(2266), - [sym__postfix_expression] = STATE(2266), - [sym_postfix_expression] = STATE(2266), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2303), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [611] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1977), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1977), + [sym_conditional_expression] = STATE(1977), + [sym_logical_or_expression] = STATE(1977), + [sym_logical_and_expression] = STATE(1977), + [sym_equality_expression] = STATE(1977), + [sym_relational_expression] = STATE(1977), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [603] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(2334), - [sym__below_relational_expression] = STATE(1612), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(2334), - [sym_conditional_expression] = STATE(2334), - [sym_logical_or_expression] = STATE(2334), - [sym_logical_and_expression] = STATE(2334), - [sym_equality_expression] = STATE(2334), - [sym_relational_expression] = STATE(2334), - [sym_bitwise_or_expression] = STATE(2078), - [sym_bitwise_xor_expression] = STATE(2078), - [sym_bitwise_and_expression] = STATE(2078), - [sym_shift_expression] = STATE(2078), - [sym_additive_expression] = STATE(2078), - [sym_multiplicative_expression] = STATE(2078), - [sym__unary_expression] = STATE(2078), - [sym_unary_expression] = STATE(2078), - [sym__postfix_expression] = STATE(2078), - [sym_postfix_expression] = STATE(2078), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2294), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [604] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1962), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1962), - [sym_conditional_expression] = STATE(1962), - [sym_logical_or_expression] = STATE(1962), - [sym_logical_and_expression] = STATE(1962), - [sym_equality_expression] = STATE(1962), - [sym_relational_expression] = STATE(1962), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [605] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1959), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1959), - [sym_conditional_expression] = STATE(1959), - [sym_logical_or_expression] = STATE(1959), - [sym_logical_and_expression] = STATE(1959), - [sym_equality_expression] = STATE(1959), - [sym_relational_expression] = STATE(1959), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [606] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1958), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1958), - [sym_conditional_expression] = STATE(1958), - [sym_logical_or_expression] = STATE(1958), - [sym_logical_and_expression] = STATE(1958), - [sym_equality_expression] = STATE(1958), - [sym_relational_expression] = STATE(1958), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [607] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1954), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1954), - [sym_conditional_expression] = STATE(1954), - [sym_logical_or_expression] = STATE(1954), - [sym_logical_and_expression] = STATE(1954), - [sym_equality_expression] = STATE(1954), - [sym_relational_expression] = STATE(1954), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [608] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1951), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1951), - [sym_conditional_expression] = STATE(1951), - [sym_logical_or_expression] = STATE(1951), - [sym_logical_and_expression] = STATE(1951), - [sym_equality_expression] = STATE(1951), - [sym_relational_expression] = STATE(1951), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [609] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2331), - [sym__below_relational_expression] = STATE(2649), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2331), - [sym_conditional_expression] = STATE(2331), - [sym_logical_or_expression] = STATE(2331), - [sym_logical_and_expression] = STATE(2331), - [sym_equality_expression] = STATE(2331), - [sym_relational_expression] = STATE(2331), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2284), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [610] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2330), - [sym__below_relational_expression] = STATE(2649), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2330), - [sym_conditional_expression] = STATE(2330), - [sym_logical_or_expression] = STATE(2330), - [sym_logical_and_expression] = STATE(2330), - [sym_equality_expression] = STATE(2330), - [sym_relational_expression] = STATE(2330), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2284), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [611] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2329), - [sym__below_relational_expression] = STATE(2649), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2329), - [sym_conditional_expression] = STATE(2329), - [sym_logical_or_expression] = STATE(2329), - [sym_logical_and_expression] = STATE(2329), - [sym_equality_expression] = STATE(2329), - [sym_relational_expression] = STATE(2329), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2284), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [612] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2304), - [sym__below_relational_expression] = STATE(2649), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2304), - [sym_conditional_expression] = STATE(2304), - [sym_logical_or_expression] = STATE(2304), - [sym_logical_and_expression] = STATE(2304), - [sym_equality_expression] = STATE(2304), - [sym_relational_expression] = STATE(2304), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2284), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [613] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2168), - [sym__below_relational_expression] = STATE(2637), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2168), - [sym_conditional_expression] = STATE(2168), - [sym_logical_or_expression] = STATE(2168), - [sym_logical_and_expression] = STATE(2168), - [sym_equality_expression] = STATE(2168), - [sym_relational_expression] = STATE(2168), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2312), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1580), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1580), + [sym_conditional_expression] = STATE(1580), + [sym_logical_or_expression] = STATE(1580), + [sym_logical_and_expression] = STATE(1580), + [sym_equality_expression] = STATE(1580), + [sym_relational_expression] = STATE(1580), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [613] = { + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1503), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1503), + [sym_conditional_expression] = STATE(1503), + [sym_logical_or_expression] = STATE(1503), + [sym_logical_and_expression] = STATE(1503), + [sym_equality_expression] = STATE(1503), + [sym_relational_expression] = STATE(1503), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [614] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2167), - [sym__below_relational_expression] = STATE(2637), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2167), - [sym_conditional_expression] = STATE(2167), - [sym_logical_or_expression] = STATE(2167), - [sym_logical_and_expression] = STATE(2167), - [sym_equality_expression] = STATE(2167), - [sym_relational_expression] = STATE(2167), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2312), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1576), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1576), + [sym_conditional_expression] = STATE(1576), + [sym_logical_or_expression] = STATE(1576), + [sym_logical_and_expression] = STATE(1576), + [sym_equality_expression] = STATE(1576), + [sym_relational_expression] = STATE(1576), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [615] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1976), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1976), + [sym_conditional_expression] = STATE(1976), + [sym_logical_or_expression] = STATE(1976), + [sym_logical_and_expression] = STATE(1976), + [sym_equality_expression] = STATE(1976), + [sym_relational_expression] = STATE(1976), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [615] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1530), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1530), - [sym_conditional_expression] = STATE(1530), - [sym_logical_or_expression] = STATE(1530), - [sym_logical_and_expression] = STATE(1530), - [sym_equality_expression] = STATE(1530), - [sym_relational_expression] = STATE(1530), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [616] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1525), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1525), - [sym_conditional_expression] = STATE(1525), - [sym_logical_or_expression] = STATE(1525), - [sym_logical_and_expression] = STATE(1525), - [sym_equality_expression] = STATE(1525), - [sym_relational_expression] = STATE(1525), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(99), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(99), + [sym_conditional_expression] = STATE(99), + [sym_logical_or_expression] = STATE(99), + [sym_logical_and_expression] = STATE(99), + [sym_equality_expression] = STATE(99), + [sym_relational_expression] = STATE(99), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [617] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1519), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1519), - [sym_conditional_expression] = STATE(1519), - [sym_logical_or_expression] = STATE(1519), - [sym_logical_and_expression] = STATE(1519), - [sym_equality_expression] = STATE(1519), - [sym_relational_expression] = STATE(1519), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(100), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(100), + [sym_conditional_expression] = STATE(100), + [sym_logical_or_expression] = STATE(100), + [sym_logical_and_expression] = STATE(100), + [sym_equality_expression] = STATE(100), + [sym_relational_expression] = STATE(100), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [618] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym__real_expression] = STATE(1535), - [sym__below_relational_expression] = STATE(2646), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym_if_null_expression] = STATE(1535), - [sym_conditional_expression] = STATE(1535), - [sym_logical_or_expression] = STATE(1535), - [sym_logical_and_expression] = STATE(1535), - [sym_equality_expression] = STATE(1535), - [sym_relational_expression] = STATE(1535), - [sym_bitwise_or_expression] = STATE(2122), - [sym_bitwise_xor_expression] = STATE(2122), - [sym_bitwise_and_expression] = STATE(2122), - [sym_shift_expression] = STATE(2122), - [sym_additive_expression] = STATE(2122), - [sym_multiplicative_expression] = STATE(2122), - [sym__unary_expression] = STATE(2122), - [sym_unary_expression] = STATE(2122), - [sym__postfix_expression] = STATE(2122), - [sym_postfix_expression] = STATE(2122), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(2288), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1013), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1013), + [sym_conditional_expression] = STATE(1013), + [sym_logical_or_expression] = STATE(1013), + [sym_logical_and_expression] = STATE(1013), + [sym_equality_expression] = STATE(1013), + [sym_relational_expression] = STATE(1013), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [619] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1464), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1464), - [sym_conditional_expression] = STATE(1464), - [sym_logical_or_expression] = STATE(1464), - [sym_logical_and_expression] = STATE(1464), - [sym_equality_expression] = STATE(1464), - [sym_relational_expression] = STATE(1464), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(101), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(101), + [sym_conditional_expression] = STATE(101), + [sym_logical_or_expression] = STATE(101), + [sym_logical_and_expression] = STATE(101), + [sym_equality_expression] = STATE(101), + [sym_relational_expression] = STATE(101), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [620] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1470), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1470), - [sym_conditional_expression] = STATE(1470), - [sym_logical_or_expression] = STATE(1470), - [sym_logical_and_expression] = STATE(1470), - [sym_equality_expression] = STATE(1470), - [sym_relational_expression] = STATE(1470), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(750), + [sym__below_relational_expression] = STATE(2682), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(750), + [sym_conditional_expression] = STATE(750), + [sym_logical_or_expression] = STATE(750), + [sym_logical_and_expression] = STATE(750), + [sym_equality_expression] = STATE(750), + [sym_relational_expression] = STATE(750), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2323), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [621] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1458), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1458), - [sym_conditional_expression] = STATE(1458), - [sym_logical_or_expression] = STATE(1458), - [sym_logical_and_expression] = STATE(1458), - [sym_equality_expression] = STATE(1458), - [sym_relational_expression] = STATE(1458), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1014), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1014), + [sym_conditional_expression] = STATE(1014), + [sym_logical_or_expression] = STATE(1014), + [sym_logical_and_expression] = STATE(1014), + [sym_equality_expression] = STATE(1014), + [sym_relational_expression] = STATE(1014), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [622] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1461), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1461), - [sym_conditional_expression] = STATE(1461), - [sym_logical_or_expression] = STATE(1461), - [sym_logical_and_expression] = STATE(1461), - [sym_equality_expression] = STATE(1461), - [sym_relational_expression] = STATE(1461), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(749), + [sym__below_relational_expression] = STATE(2682), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(749), + [sym_conditional_expression] = STATE(749), + [sym_logical_or_expression] = STATE(749), + [sym_logical_and_expression] = STATE(749), + [sym_equality_expression] = STATE(749), + [sym_relational_expression] = STATE(749), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2323), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [623] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1462), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1462), - [sym_conditional_expression] = STATE(1462), - [sym_logical_or_expression] = STATE(1462), - [sym_logical_and_expression] = STATE(1462), - [sym_equality_expression] = STATE(1462), - [sym_relational_expression] = STATE(1462), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1015), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1015), + [sym_conditional_expression] = STATE(1015), + [sym_logical_or_expression] = STATE(1015), + [sym_logical_and_expression] = STATE(1015), + [sym_equality_expression] = STATE(1015), + [sym_relational_expression] = STATE(1015), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [624] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1463), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1463), - [sym_conditional_expression] = STATE(1463), - [sym_logical_or_expression] = STATE(1463), - [sym_logical_and_expression] = STATE(1463), - [sym_equality_expression] = STATE(1463), - [sym_relational_expression] = STATE(1463), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1504), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1504), + [sym_conditional_expression] = STATE(1504), + [sym_logical_or_expression] = STATE(1504), + [sym_logical_and_expression] = STATE(1504), + [sym_equality_expression] = STATE(1504), + [sym_relational_expression] = STATE(1504), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [625] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(346), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(346), - [sym_conditional_expression] = STATE(346), - [sym_logical_or_expression] = STATE(346), - [sym_logical_and_expression] = STATE(346), - [sym_equality_expression] = STATE(346), - [sym_relational_expression] = STATE(346), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1505), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1505), + [sym_conditional_expression] = STATE(1505), + [sym_logical_or_expression] = STATE(1505), + [sym_logical_and_expression] = STATE(1505), + [sym_equality_expression] = STATE(1505), + [sym_relational_expression] = STATE(1505), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [626] = { + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(748), + [sym__below_relational_expression] = STATE(2682), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(748), + [sym_conditional_expression] = STATE(748), + [sym_logical_or_expression] = STATE(748), + [sym_logical_and_expression] = STATE(748), + [sym_equality_expression] = STATE(748), + [sym_relational_expression] = STATE(748), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2323), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - }, - [626] = { - [sym__top_level_definition] = STATE(626), - [sym__annotation] = STATE(2352), - [sym_marker_annotation] = STATE(2352), - [sym_annotation] = STATE(2352), - [sym_enum_declaration] = STATE(626), - [sym_class_definition] = STATE(626), - [aux_sym__metadata] = STATE(2352), - [sym_getter_signature] = STATE(3338), - [sym_setter_signature] = STATE(3338), - [sym_variable_declaration] = STATE(3338), - [sym__declared_identifier] = STATE(3402), - [sym__final_const_var_or_type] = STATE(3780), - [sym__type] = STATE(2966), - [sym__type_not_function] = STATE(2569), - [sym__type_not_void_not_function] = STATE(2569), - [aux_sym__function_type_tails] = STATE(2566), - [sym__function_type_tail] = STATE(2566), - [sym__type_name] = STATE(2414), - [sym_void_type] = STATE(2569), - [sym_inferred_type] = STATE(3780), - [sym_function_signature] = STATE(2734), - [sym__covariant] = STATE(2423), - [sym__function_builtin_identifier] = STATE(2415), - [sym__get] = STATE(3779), - [sym__set] = STATE(3778), - [sym__const_builtin] = STATE(2648), - [sym__final_builtin] = STATE(2648), - [sym__external_builtin] = STATE(2418), - [aux_sym_program_repeat2] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_POUND] = ACTIONS(2026), - [sym_decimal_integer_literal] = ACTIONS(2031), - [sym_hex_integer_literal] = ACTIONS(2031), - [sym_octal_integer_literal] = ACTIONS(2026), - [sym_binary_integer_literal] = ACTIONS(2026), - [sym_decimal_floating_point_literal] = ACTIONS(2026), - [sym_hex_floating_point_literal] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_DQUOTE] = ACTIONS(2031), - [anon_sym_SQUOTE] = ACTIONS(2031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2026), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2026), - [anon_sym_r] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_throw] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2031), - [sym_increment_operator] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_TILDE] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2031), - [anon_sym_assert] = ACTIONS(2031), - [anon_sym_switch] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_AT] = ACTIONS(2033), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_abstract] = ACTIONS(2039), - [anon_sym_class] = ACTIONS(2042), - [anon_sym_super] = ACTIONS(2031), - [anon_sym_void] = ACTIONS(2045), - [anon_sym_var] = ACTIONS(2048), - [anon_sym_covariant] = ACTIONS(2051), - [anon_sym_Function] = ACTIONS(2054), - [anon_sym_get] = ACTIONS(2057), - [anon_sym_set] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_final] = ACTIONS(2063), - [anon_sym_external] = ACTIONS(2066), - [anon_sym_this] = ACTIONS(2031), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [627] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1460), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1460), - [sym_conditional_expression] = STATE(1460), - [sym_logical_or_expression] = STATE(1460), - [sym_logical_and_expression] = STATE(1460), - [sym_equality_expression] = STATE(1460), - [sym_relational_expression] = STATE(1460), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1573), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1573), + [sym_conditional_expression] = STATE(1573), + [sym_logical_or_expression] = STATE(1573), + [sym_logical_and_expression] = STATE(1573), + [sym_equality_expression] = STATE(1573), + [sym_relational_expression] = STATE(1573), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [628] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1480), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1480), - [sym_conditional_expression] = STATE(1480), - [sym_logical_or_expression] = STATE(1480), - [sym_logical_and_expression] = STATE(1480), - [sym_equality_expression] = STATE(1480), - [sym_relational_expression] = STATE(1480), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [629] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(2341), - [sym__below_relational_expression] = STATE(2008), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(2341), - [sym_conditional_expression] = STATE(2341), - [sym_logical_or_expression] = STATE(2341), - [sym_logical_and_expression] = STATE(2341), - [sym_equality_expression] = STATE(2341), - [sym_relational_expression] = STATE(2341), - [sym_bitwise_or_expression] = STATE(2277), - [sym_bitwise_xor_expression] = STATE(2277), - [sym_bitwise_and_expression] = STATE(2277), - [sym_shift_expression] = STATE(2277), - [sym_additive_expression] = STATE(2277), - [sym_multiplicative_expression] = STATE(2277), - [sym__unary_expression] = STATE(2277), - [sym_unary_expression] = STATE(2277), - [sym__postfix_expression] = STATE(2277), - [sym_postfix_expression] = STATE(2277), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2320), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(745), + [sym__below_relational_expression] = STATE(2682), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(745), + [sym_conditional_expression] = STATE(745), + [sym_logical_or_expression] = STATE(745), + [sym_logical_and_expression] = STATE(745), + [sym_equality_expression] = STATE(745), + [sym_relational_expression] = STATE(745), + [sym_bitwise_or_expression] = STATE(946), + [sym_bitwise_xor_expression] = STATE(946), + [sym_bitwise_and_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_additive_expression] = STATE(946), + [sym_multiplicative_expression] = STATE(946), + [sym__unary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym__postfix_expression] = STATE(946), + [sym_postfix_expression] = STATE(946), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2323), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, - [630] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1469), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1469), - [sym_conditional_expression] = STATE(1469), - [sym_logical_or_expression] = STATE(1469), - [sym_logical_and_expression] = STATE(1469), - [sym_equality_expression] = STATE(1469), - [sym_relational_expression] = STATE(1469), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [629] = { + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1567), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1567), + [sym_conditional_expression] = STATE(1567), + [sym_logical_or_expression] = STATE(1567), + [sym_logical_and_expression] = STATE(1567), + [sym_equality_expression] = STATE(1567), + [sym_relational_expression] = STATE(1567), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [631] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(1468), - [sym__below_relational_expression] = STATE(2644), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(1468), - [sym_conditional_expression] = STATE(1468), - [sym_logical_or_expression] = STATE(1468), - [sym_logical_and_expression] = STATE(1468), - [sym_equality_expression] = STATE(1468), - [sym_relational_expression] = STATE(1468), - [sym_bitwise_or_expression] = STATE(1885), - [sym_bitwise_xor_expression] = STATE(1885), - [sym_bitwise_and_expression] = STATE(1885), - [sym_shift_expression] = STATE(1885), - [sym_additive_expression] = STATE(1885), - [sym_multiplicative_expression] = STATE(1885), - [sym__unary_expression] = STATE(1885), - [sym_unary_expression] = STATE(1885), - [sym__postfix_expression] = STATE(1885), - [sym_postfix_expression] = STATE(1885), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2281), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [630] = { + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1555), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1555), + [sym_conditional_expression] = STATE(1555), + [sym_logical_or_expression] = STATE(1555), + [sym_logical_and_expression] = STATE(1555), + [sym_equality_expression] = STATE(1555), + [sym_relational_expression] = STATE(1555), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [632] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(338), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(338), - [sym_conditional_expression] = STATE(338), - [sym_logical_or_expression] = STATE(338), - [sym_logical_and_expression] = STATE(338), - [sym_equality_expression] = STATE(338), - [sym_relational_expression] = STATE(338), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), + [631] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2357), + [sym__below_relational_expression] = STATE(2680), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2357), + [sym_conditional_expression] = STATE(2357), + [sym_logical_or_expression] = STATE(2357), + [sym_logical_and_expression] = STATE(2357), + [sym_equality_expression] = STATE(2357), + [sym_relational_expression] = STATE(2357), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2320), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [632] = { + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1926), + [sym__below_relational_expression] = STATE(2703), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1926), + [sym_conditional_expression] = STATE(1926), + [sym_logical_or_expression] = STATE(1926), + [sym_logical_and_expression] = STATE(1926), + [sym_equality_expression] = STATE(1926), + [sym_relational_expression] = STATE(1926), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2329), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [633] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(339), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(339), - [sym_conditional_expression] = STATE(339), - [sym_logical_or_expression] = STATE(339), - [sym_logical_and_expression] = STATE(339), - [sym_equality_expression] = STATE(339), - [sym_relational_expression] = STATE(339), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1578), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1578), + [sym_conditional_expression] = STATE(1578), + [sym_logical_or_expression] = STATE(1578), + [sym_logical_and_expression] = STATE(1578), + [sym_equality_expression] = STATE(1578), + [sym_relational_expression] = STATE(1578), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [634] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(337), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(337), - [sym_conditional_expression] = STATE(337), - [sym_logical_or_expression] = STATE(337), - [sym_logical_and_expression] = STATE(337), - [sym_equality_expression] = STATE(337), - [sym_relational_expression] = STATE(337), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1925), + [sym__below_relational_expression] = STATE(2703), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1925), + [sym_conditional_expression] = STATE(1925), + [sym_logical_or_expression] = STATE(1925), + [sym_logical_and_expression] = STATE(1925), + [sym_equality_expression] = STATE(1925), + [sym_relational_expression] = STATE(1925), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2329), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [635] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(347), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(347), - [sym_conditional_expression] = STATE(347), - [sym_logical_or_expression] = STATE(347), - [sym_logical_and_expression] = STATE(347), - [sym_equality_expression] = STATE(347), - [sym_relational_expression] = STATE(347), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1924), + [sym__below_relational_expression] = STATE(2703), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1924), + [sym_conditional_expression] = STATE(1924), + [sym_logical_or_expression] = STATE(1924), + [sym_logical_and_expression] = STATE(1924), + [sym_equality_expression] = STATE(1924), + [sym_relational_expression] = STATE(1924), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2329), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [636] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1518), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1518), - [sym_conditional_expression] = STATE(1518), - [sym_logical_or_expression] = STATE(1518), - [sym_logical_and_expression] = STATE(1518), - [sym_equality_expression] = STATE(1518), - [sym_relational_expression] = STATE(1518), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1632), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1632), + [sym_conditional_expression] = STATE(1632), + [sym_logical_or_expression] = STATE(1632), + [sym_logical_and_expression] = STATE(1632), + [sym_equality_expression] = STATE(1632), + [sym_relational_expression] = STATE(1632), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [637] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(336), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(336), - [sym_conditional_expression] = STATE(336), - [sym_logical_or_expression] = STATE(336), - [sym_logical_and_expression] = STATE(336), - [sym_equality_expression] = STATE(336), - [sym_relational_expression] = STATE(336), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1922), + [sym__below_relational_expression] = STATE(2703), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1922), + [sym_conditional_expression] = STATE(1922), + [sym_logical_or_expression] = STATE(1922), + [sym_logical_and_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_relational_expression] = STATE(1922), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2329), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [638] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym__real_expression] = STATE(2343), - [sym__below_relational_expression] = STATE(1601), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym_if_null_expression] = STATE(2343), - [sym_conditional_expression] = STATE(2343), - [sym_logical_or_expression] = STATE(2343), - [sym_logical_and_expression] = STATE(2343), - [sym_equality_expression] = STATE(2343), - [sym_relational_expression] = STATE(2343), - [sym_bitwise_or_expression] = STATE(1799), - [sym_bitwise_xor_expression] = STATE(1799), - [sym_bitwise_and_expression] = STATE(1799), - [sym_shift_expression] = STATE(1799), - [sym_additive_expression] = STATE(1799), - [sym_multiplicative_expression] = STATE(1799), - [sym__unary_expression] = STATE(1799), - [sym_unary_expression] = STATE(1799), - [sym__postfix_expression] = STATE(1799), - [sym_postfix_expression] = STATE(1799), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(2299), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [639] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(982), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(982), - [sym_conditional_expression] = STATE(982), - [sym_logical_or_expression] = STATE(982), - [sym_logical_and_expression] = STATE(982), - [sym_equality_expression] = STATE(982), - [sym_relational_expression] = STATE(982), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1016), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1016), + [sym_conditional_expression] = STATE(1016), + [sym_logical_or_expression] = STATE(1016), + [sym_logical_and_expression] = STATE(1016), + [sym_equality_expression] = STATE(1016), + [sym_relational_expression] = STATE(1016), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -73892,251 +75161,873 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, + [639] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2380), + [sym__below_relational_expression] = STATE(1989), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2380), + [sym_conditional_expression] = STATE(2380), + [sym_logical_or_expression] = STATE(2380), + [sym_logical_and_expression] = STATE(2380), + [sym_equality_expression] = STATE(2380), + [sym_relational_expression] = STATE(2380), + [sym_bitwise_or_expression] = STATE(2294), + [sym_bitwise_xor_expression] = STATE(2294), + [sym_bitwise_and_expression] = STATE(2294), + [sym_shift_expression] = STATE(2294), + [sym_additive_expression] = STATE(2294), + [sym_multiplicative_expression] = STATE(2294), + [sym__unary_expression] = STATE(2294), + [sym_unary_expression] = STATE(2294), + [sym__postfix_expression] = STATE(2294), + [sym_postfix_expression] = STATE(2294), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2352), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, [640] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(560), - [sym__below_relational_expression] = STATE(2659), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(560), - [sym_conditional_expression] = STATE(560), - [sym_logical_or_expression] = STATE(560), - [sym_logical_and_expression] = STATE(560), - [sym_equality_expression] = STATE(560), - [sym_relational_expression] = STATE(560), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2307), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(2376), + [sym__below_relational_expression] = STATE(207), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(2376), + [sym_conditional_expression] = STATE(2376), + [sym_logical_or_expression] = STATE(2376), + [sym_logical_and_expression] = STATE(2376), + [sym_equality_expression] = STATE(2376), + [sym_relational_expression] = STATE(2376), + [sym_bitwise_or_expression] = STATE(301), + [sym_bitwise_xor_expression] = STATE(301), + [sym_bitwise_and_expression] = STATE(301), + [sym_shift_expression] = STATE(301), + [sym_additive_expression] = STATE(301), + [sym_multiplicative_expression] = STATE(301), + [sym__unary_expression] = STATE(301), + [sym_unary_expression] = STATE(301), + [sym__postfix_expression] = STATE(301), + [sym_postfix_expression] = STATE(301), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2350), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [641] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(557), - [sym__below_relational_expression] = STATE(2659), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_logical_or_expression] = STATE(557), - [sym_logical_and_expression] = STATE(557), - [sym_equality_expression] = STATE(557), - [sym_relational_expression] = STATE(557), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2307), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1636), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1636), + [sym_conditional_expression] = STATE(1636), + [sym_logical_or_expression] = STATE(1636), + [sym_logical_and_expression] = STATE(1636), + [sym_equality_expression] = STATE(1636), + [sym_relational_expression] = STATE(1636), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [642] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(971), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(971), - [sym_conditional_expression] = STATE(971), - [sym_logical_or_expression] = STATE(971), - [sym_logical_and_expression] = STATE(971), - [sym_equality_expression] = STATE(971), - [sym_relational_expression] = STATE(971), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(363), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(363), + [sym_conditional_expression] = STATE(363), + [sym_logical_or_expression] = STATE(363), + [sym_logical_and_expression] = STATE(363), + [sym_equality_expression] = STATE(363), + [sym_relational_expression] = STATE(363), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + }, + [643] = { + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(364), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(364), + [sym_conditional_expression] = STATE(364), + [sym_logical_or_expression] = STATE(364), + [sym_logical_and_expression] = STATE(364), + [sym_equality_expression] = STATE(364), + [sym_relational_expression] = STATE(364), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + }, + [644] = { + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(357), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(357), + [sym_conditional_expression] = STATE(357), + [sym_logical_or_expression] = STATE(357), + [sym_logical_and_expression] = STATE(357), + [sym_equality_expression] = STATE(357), + [sym_relational_expression] = STATE(357), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + }, + [645] = { + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1617), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1617), + [sym_conditional_expression] = STATE(1617), + [sym_logical_or_expression] = STATE(1617), + [sym_logical_and_expression] = STATE(1617), + [sym_equality_expression] = STATE(1617), + [sym_relational_expression] = STATE(1617), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [646] = { + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1628), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1628), + [sym_conditional_expression] = STATE(1628), + [sym_logical_or_expression] = STATE(1628), + [sym_logical_and_expression] = STATE(1628), + [sym_equality_expression] = STATE(1628), + [sym_relational_expression] = STATE(1628), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [647] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1974), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1974), + [sym_conditional_expression] = STATE(1974), + [sym_logical_or_expression] = STATE(1974), + [sym_logical_and_expression] = STATE(1974), + [sym_equality_expression] = STATE(1974), + [sym_relational_expression] = STATE(1974), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [648] = { + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1017), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1017), + [sym_conditional_expression] = STATE(1017), + [sym_logical_or_expression] = STATE(1017), + [sym_logical_and_expression] = STATE(1017), + [sym_equality_expression] = STATE(1017), + [sym_relational_expression] = STATE(1017), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -74150,1466 +76041,972 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [643] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(556), - [sym__below_relational_expression] = STATE(2659), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(556), - [sym_conditional_expression] = STATE(556), - [sym_logical_or_expression] = STATE(556), - [sym_logical_and_expression] = STATE(556), - [sym_equality_expression] = STATE(556), - [sym_relational_expression] = STATE(556), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2307), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - }, - [644] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(555), - [sym__below_relational_expression] = STATE(2659), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(555), - [sym_conditional_expression] = STATE(555), - [sym_logical_or_expression] = STATE(555), - [sym_logical_and_expression] = STATE(555), - [sym_equality_expression] = STATE(555), - [sym_relational_expression] = STATE(555), - [sym_bitwise_or_expression] = STATE(874), - [sym_bitwise_xor_expression] = STATE(874), - [sym_bitwise_and_expression] = STATE(874), - [sym_shift_expression] = STATE(874), - [sym_additive_expression] = STATE(874), - [sym_multiplicative_expression] = STATE(874), - [sym__unary_expression] = STATE(874), - [sym_unary_expression] = STATE(874), - [sym__postfix_expression] = STATE(874), - [sym_postfix_expression] = STATE(874), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2307), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - }, - [645] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(92), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(92), - [sym_conditional_expression] = STATE(92), - [sym_logical_or_expression] = STATE(92), - [sym_logical_and_expression] = STATE(92), - [sym_equality_expression] = STATE(92), - [sym_relational_expression] = STATE(92), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [646] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(100), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(100), - [sym_conditional_expression] = STATE(100), - [sym_logical_or_expression] = STATE(100), - [sym_logical_and_expression] = STATE(100), - [sym_equality_expression] = STATE(100), - [sym_relational_expression] = STATE(100), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [647] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(91), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(91), - [sym_conditional_expression] = STATE(91), - [sym_logical_or_expression] = STATE(91), - [sym_logical_and_expression] = STATE(91), - [sym_equality_expression] = STATE(91), - [sym_relational_expression] = STATE(91), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [648] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(98), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(98), - [sym_conditional_expression] = STATE(98), - [sym_logical_or_expression] = STATE(98), - [sym_logical_and_expression] = STATE(98), - [sym_equality_expression] = STATE(98), - [sym_relational_expression] = STATE(98), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, [649] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(101), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(101), - [sym_conditional_expression] = STATE(101), - [sym_logical_or_expression] = STATE(101), - [sym_logical_and_expression] = STATE(101), - [sym_equality_expression] = STATE(101), - [sym_relational_expression] = STATE(101), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1564), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1564), + [sym_conditional_expression] = STATE(1564), + [sym_logical_or_expression] = STATE(1564), + [sym_logical_and_expression] = STATE(1564), + [sym_equality_expression] = STATE(1564), + [sym_relational_expression] = STATE(1564), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [650] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(93), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(93), - [sym_conditional_expression] = STATE(93), - [sym_logical_or_expression] = STATE(93), - [sym_logical_and_expression] = STATE(93), - [sym_equality_expression] = STATE(93), - [sym_relational_expression] = STATE(93), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(2367), + [sym__below_relational_expression] = STATE(1654), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(2367), + [sym_conditional_expression] = STATE(2367), + [sym_logical_or_expression] = STATE(2367), + [sym_logical_and_expression] = STATE(2367), + [sym_equality_expression] = STATE(2367), + [sym_relational_expression] = STATE(2367), + [sym_bitwise_or_expression] = STATE(2163), + [sym_bitwise_xor_expression] = STATE(2163), + [sym_bitwise_and_expression] = STATE(2163), + [sym_shift_expression] = STATE(2163), + [sym_additive_expression] = STATE(2163), + [sym_multiplicative_expression] = STATE(2163), + [sym__unary_expression] = STATE(2163), + [sym_unary_expression] = STATE(2163), + [sym__postfix_expression] = STATE(2163), + [sym_postfix_expression] = STATE(2163), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2335), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [651] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2335), - [sym__below_relational_expression] = STATE(1936), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2335), - [sym_conditional_expression] = STATE(2335), - [sym_logical_or_expression] = STATE(2335), - [sym_logical_and_expression] = STATE(2335), - [sym_equality_expression] = STATE(2335), - [sym_relational_expression] = STATE(2335), - [sym_bitwise_or_expression] = STATE(2266), - [sym_bitwise_xor_expression] = STATE(2266), - [sym_bitwise_and_expression] = STATE(2266), - [sym_shift_expression] = STATE(2266), - [sym_additive_expression] = STATE(2266), - [sym_multiplicative_expression] = STATE(2266), - [sym__unary_expression] = STATE(2266), - [sym_unary_expression] = STATE(2266), - [sym__postfix_expression] = STATE(2266), - [sym_postfix_expression] = STATE(2266), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1018), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1018), + [sym_conditional_expression] = STATE(1018), + [sym_logical_or_expression] = STATE(1018), + [sym_logical_and_expression] = STATE(1018), + [sym_equality_expression] = STATE(1018), + [sym_relational_expression] = STATE(1018), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2303), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1847), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1849), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [652] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(2342), - [sym__below_relational_expression] = STATE(725), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(2342), - [sym_conditional_expression] = STATE(2342), - [sym_logical_or_expression] = STATE(2342), - [sym_logical_and_expression] = STATE(2342), - [sym_equality_expression] = STATE(2342), - [sym_relational_expression] = STATE(2342), - [sym_bitwise_or_expression] = STATE(877), - [sym_bitwise_xor_expression] = STATE(877), - [sym_bitwise_and_expression] = STATE(877), - [sym_shift_expression] = STATE(877), - [sym_additive_expression] = STATE(877), - [sym_multiplicative_expression] = STATE(877), - [sym__unary_expression] = STATE(877), - [sym_unary_expression] = STATE(877), - [sym__postfix_expression] = STATE(877), - [sym_postfix_expression] = STATE(877), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2314), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1024), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1024), + [sym_conditional_expression] = STATE(1024), + [sym_logical_or_expression] = STATE(1024), + [sym_logical_and_expression] = STATE(1024), + [sym_equality_expression] = STATE(1024), + [sym_relational_expression] = STATE(1024), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), + [sym_increment_operator] = ACTIONS(1847), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1849), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [653] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(2338), - [sym__below_relational_expression] = STATE(1083), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(2338), - [sym_conditional_expression] = STATE(2338), - [sym_logical_or_expression] = STATE(2338), - [sym_logical_and_expression] = STATE(2338), - [sym_equality_expression] = STATE(2338), - [sym_relational_expression] = STATE(2338), - [sym_bitwise_or_expression] = STATE(1386), - [sym_bitwise_xor_expression] = STATE(1386), - [sym_bitwise_and_expression] = STATE(1386), - [sym_shift_expression] = STATE(1386), - [sym_additive_expression] = STATE(1386), - [sym_multiplicative_expression] = STATE(1386), - [sym__unary_expression] = STATE(1386), - [sym_unary_expression] = STATE(1386), - [sym__postfix_expression] = STATE(1386), - [sym_postfix_expression] = STATE(1386), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2296), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1006), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1006), + [sym_conditional_expression] = STATE(1006), + [sym_logical_or_expression] = STATE(1006), + [sym_logical_and_expression] = STATE(1006), + [sym_equality_expression] = STATE(1006), + [sym_relational_expression] = STATE(1006), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [654] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(970), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(970), - [sym_conditional_expression] = STATE(970), - [sym_logical_or_expression] = STATE(970), - [sym_logical_and_expression] = STATE(970), - [sym_equality_expression] = STATE(970), - [sym_relational_expression] = STATE(970), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1026), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1026), + [sym_conditional_expression] = STATE(1026), + [sym_logical_or_expression] = STATE(1026), + [sym_logical_and_expression] = STATE(1026), + [sym_equality_expression] = STATE(1026), + [sym_relational_expression] = STATE(1026), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [655] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(2341), - [sym__below_relational_expression] = STATE(1977), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(2341), - [sym_conditional_expression] = STATE(2341), - [sym_logical_or_expression] = STATE(2341), - [sym_logical_and_expression] = STATE(2341), - [sym_equality_expression] = STATE(2341), - [sym_relational_expression] = STATE(2341), - [sym_bitwise_or_expression] = STATE(2277), - [sym_bitwise_xor_expression] = STATE(2277), - [sym_bitwise_and_expression] = STATE(2277), - [sym_shift_expression] = STATE(2277), - [sym_additive_expression] = STATE(2277), - [sym_multiplicative_expression] = STATE(2277), - [sym__unary_expression] = STATE(2277), - [sym_unary_expression] = STATE(2277), - [sym__postfix_expression] = STATE(2277), - [sym_postfix_expression] = STATE(2277), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2320), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1027), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1027), + [sym_conditional_expression] = STATE(1027), + [sym_logical_or_expression] = STATE(1027), + [sym_logical_and_expression] = STATE(1027), + [sym_equality_expression] = STATE(1027), + [sym_relational_expression] = STATE(1027), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1847), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1849), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [656] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(980), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(980), - [sym_conditional_expression] = STATE(980), - [sym_logical_or_expression] = STATE(980), - [sym_logical_and_expression] = STATE(980), - [sym_equality_expression] = STATE(980), - [sym_relational_expression] = STATE(980), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(358), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(358), + [sym_conditional_expression] = STATE(358), + [sym_logical_or_expression] = STATE(358), + [sym_logical_and_expression] = STATE(358), + [sym_equality_expression] = STATE(358), + [sym_relational_expression] = STATE(358), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [657] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1467), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1467), - [sym_conditional_expression] = STATE(1467), - [sym_logical_or_expression] = STATE(1467), - [sym_logical_and_expression] = STATE(1467), - [sym_equality_expression] = STATE(1467), - [sym_relational_expression] = STATE(1467), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(360), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(360), + [sym_conditional_expression] = STATE(360), + [sym_logical_or_expression] = STATE(360), + [sym_logical_and_expression] = STATE(360), + [sym_equality_expression] = STATE(360), + [sym_relational_expression] = STATE(360), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [658] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1591), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1591), - [sym_conditional_expression] = STATE(1591), - [sym_logical_or_expression] = STATE(1591), - [sym_logical_and_expression] = STATE(1591), - [sym_equality_expression] = STATE(1591), - [sym_relational_expression] = STATE(1591), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1025), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1025), + [sym_conditional_expression] = STATE(1025), + [sym_logical_or_expression] = STATE(1025), + [sym_logical_and_expression] = STATE(1025), + [sym_equality_expression] = STATE(1025), + [sym_relational_expression] = STATE(1025), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1847), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1849), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [659] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1593), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1593), - [sym_conditional_expression] = STATE(1593), - [sym_logical_or_expression] = STATE(1593), - [sym_logical_and_expression] = STATE(1593), - [sym_equality_expression] = STATE(1593), - [sym_relational_expression] = STATE(1593), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2200), + [sym__below_relational_expression] = STATE(2687), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2200), + [sym_conditional_expression] = STATE(2200), + [sym_logical_or_expression] = STATE(2200), + [sym_logical_and_expression] = STATE(2200), + [sym_equality_expression] = STATE(2200), + [sym_relational_expression] = STATE(2200), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2340), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -75617,2310 +77014,2364 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(47), [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [660] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1599), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1599), - [sym_conditional_expression] = STATE(1599), - [sym_logical_or_expression] = STATE(1599), - [sym_logical_and_expression] = STATE(1599), - [sym_equality_expression] = STATE(1599), - [sym_relational_expression] = STATE(1599), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1023), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1023), + [sym_conditional_expression] = STATE(1023), + [sym_logical_or_expression] = STATE(1023), + [sym_logical_and_expression] = STATE(1023), + [sym_equality_expression] = STATE(1023), + [sym_relational_expression] = STATE(1023), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1847), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1849), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [661] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym__real_expression] = STATE(972), - [sym__below_relational_expression] = STATE(2647), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym_if_null_expression] = STATE(972), - [sym_conditional_expression] = STATE(972), - [sym_logical_or_expression] = STATE(972), - [sym_logical_and_expression] = STATE(972), - [sym_equality_expression] = STATE(972), - [sym_relational_expression] = STATE(972), - [sym_bitwise_or_expression] = STATE(1381), - [sym_bitwise_xor_expression] = STATE(1381), - [sym_bitwise_and_expression] = STATE(1381), - [sym_shift_expression] = STATE(1381), - [sym_additive_expression] = STATE(1381), - [sym_multiplicative_expression] = STATE(1381), - [sym__unary_expression] = STATE(1381), - [sym_unary_expression] = STATE(1381), - [sym__postfix_expression] = STATE(1381), - [sym_postfix_expression] = STATE(1381), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(2298), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(361), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(361), + [sym_conditional_expression] = STATE(361), + [sym_logical_or_expression] = STATE(361), + [sym_logical_and_expression] = STATE(361), + [sym_equality_expression] = STATE(361), + [sym_relational_expression] = STATE(361), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [662] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1585), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1585), - [sym_conditional_expression] = STATE(1585), - [sym_logical_or_expression] = STATE(1585), - [sym_logical_and_expression] = STATE(1585), - [sym_equality_expression] = STATE(1585), - [sym_relational_expression] = STATE(1585), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(91), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(91), + [sym_conditional_expression] = STATE(91), + [sym_logical_or_expression] = STATE(91), + [sym_logical_and_expression] = STATE(91), + [sym_equality_expression] = STATE(91), + [sym_relational_expression] = STATE(91), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [663] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1584), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1584), - [sym_conditional_expression] = STATE(1584), - [sym_logical_or_expression] = STATE(1584), - [sym_logical_and_expression] = STATE(1584), - [sym_equality_expression] = STATE(1584), - [sym_relational_expression] = STATE(1584), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1497), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1497), + [sym_conditional_expression] = STATE(1497), + [sym_logical_or_expression] = STATE(1497), + [sym_logical_and_expression] = STATE(1497), + [sym_equality_expression] = STATE(1497), + [sym_relational_expression] = STATE(1497), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [664] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1581), - [sym__below_relational_expression] = STATE(2663), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1581), - [sym_conditional_expression] = STATE(1581), - [sym_logical_or_expression] = STATE(1581), - [sym_logical_and_expression] = STATE(1581), - [sym_equality_expression] = STATE(1581), - [sym_relational_expression] = STATE(1581), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1019), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1019), + [sym_conditional_expression] = STATE(1019), + [sym_logical_or_expression] = STATE(1019), + [sym_logical_and_expression] = STATE(1019), + [sym_equality_expression] = STATE(1019), + [sym_relational_expression] = STATE(1019), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2285), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1847), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1849), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [665] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1720), - [sym__below_relational_expression] = STATE(2637), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1720), - [sym_conditional_expression] = STATE(1720), - [sym_logical_or_expression] = STATE(1720), - [sym_logical_and_expression] = STATE(1720), - [sym_equality_expression] = STATE(1720), - [sym_relational_expression] = STATE(1720), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2312), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(93), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(93), + [sym_conditional_expression] = STATE(93), + [sym_logical_or_expression] = STATE(93), + [sym_logical_and_expression] = STATE(93), + [sym_equality_expression] = STATE(93), + [sym_relational_expression] = STATE(93), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [666] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1717), - [sym__below_relational_expression] = STATE(2637), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1717), - [sym_conditional_expression] = STATE(1717), - [sym_logical_or_expression] = STATE(1717), - [sym_logical_and_expression] = STATE(1717), - [sym_equality_expression] = STATE(1717), - [sym_relational_expression] = STATE(1717), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1010), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1010), + [sym_conditional_expression] = STATE(1010), + [sym_logical_or_expression] = STATE(1010), + [sym_logical_and_expression] = STATE(1010), + [sym_equality_expression] = STATE(1010), + [sym_relational_expression] = STATE(1010), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2312), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), + [sym_increment_operator] = ACTIONS(1847), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), + [anon_sym_await] = ACTIONS(1849), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [667] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1903), - [sym__below_relational_expression] = STATE(2637), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1903), - [sym_conditional_expression] = STATE(1903), - [sym_logical_or_expression] = STATE(1903), - [sym_logical_and_expression] = STATE(1903), - [sym_equality_expression] = STATE(1903), - [sym_relational_expression] = STATE(1903), - [sym_bitwise_or_expression] = STATE(2267), - [sym_bitwise_xor_expression] = STATE(2267), - [sym_bitwise_and_expression] = STATE(2267), - [sym_shift_expression] = STATE(2267), - [sym_additive_expression] = STATE(2267), - [sym_multiplicative_expression] = STATE(2267), - [sym__unary_expression] = STATE(2267), - [sym_unary_expression] = STATE(2267), - [sym__postfix_expression] = STATE(2267), - [sym_postfix_expression] = STATE(2267), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2312), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1566), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1566), + [sym_conditional_expression] = STATE(1566), + [sym_logical_or_expression] = STATE(1566), + [sym_logical_and_expression] = STATE(1566), + [sym_equality_expression] = STATE(1566), + [sym_relational_expression] = STATE(1566), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [668] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1471), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1471), - [sym_conditional_expression] = STATE(1471), - [sym_logical_or_expression] = STATE(1471), - [sym_logical_and_expression] = STATE(1471), - [sym_equality_expression] = STATE(1471), - [sym_relational_expression] = STATE(1471), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(92), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(92), + [sym_conditional_expression] = STATE(92), + [sym_logical_or_expression] = STATE(92), + [sym_logical_and_expression] = STATE(92), + [sym_equality_expression] = STATE(92), + [sym_relational_expression] = STATE(92), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [669] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(351), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(351), - [sym_conditional_expression] = STATE(351), - [sym_logical_or_expression] = STATE(351), - [sym_logical_and_expression] = STATE(351), - [sym_equality_expression] = STATE(351), - [sym_relational_expression] = STATE(351), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(2366), + [sym__below_relational_expression] = STATE(1641), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(2366), + [sym_conditional_expression] = STATE(2366), + [sym_logical_or_expression] = STATE(2366), + [sym_logical_and_expression] = STATE(2366), + [sym_equality_expression] = STATE(2366), + [sym_relational_expression] = STATE(2366), + [sym_bitwise_or_expression] = STATE(1934), + [sym_bitwise_xor_expression] = STATE(1934), + [sym_bitwise_and_expression] = STATE(1934), + [sym_shift_expression] = STATE(1934), + [sym_additive_expression] = STATE(1934), + [sym_multiplicative_expression] = STATE(1934), + [sym__unary_expression] = STATE(1934), + [sym_unary_expression] = STATE(1934), + [sym__postfix_expression] = STATE(1934), + [sym_postfix_expression] = STATE(1934), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2321), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [670] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(353), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(353), - [sym_conditional_expression] = STATE(353), - [sym_logical_or_expression] = STATE(353), - [sym_logical_and_expression] = STATE(353), - [sym_equality_expression] = STATE(353), - [sym_relational_expression] = STATE(353), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2197), + [sym__below_relational_expression] = STATE(2687), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2197), + [sym_conditional_expression] = STATE(2197), + [sym_logical_or_expression] = STATE(2197), + [sym_logical_and_expression] = STATE(2197), + [sym_equality_expression] = STATE(2197), + [sym_relational_expression] = STATE(2197), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2340), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [671] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1474), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1474), - [sym_conditional_expression] = STATE(1474), - [sym_logical_or_expression] = STATE(1474), - [sym_logical_and_expression] = STATE(1474), - [sym_equality_expression] = STATE(1474), - [sym_relational_expression] = STATE(1474), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - }, - [672] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(335), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(335), - [sym_conditional_expression] = STATE(335), - [sym_logical_or_expression] = STATE(335), - [sym_logical_and_expression] = STATE(335), - [sym_equality_expression] = STATE(335), - [sym_relational_expression] = STATE(335), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(485), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(485), + [sym_conditional_expression] = STATE(485), + [sym_logical_or_expression] = STATE(485), + [sym_logical_and_expression] = STATE(485), + [sym_equality_expression] = STATE(485), + [sym_relational_expression] = STATE(485), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, - [673] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(343), - [sym__below_relational_expression] = STATE(2652), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(343), - [sym_conditional_expression] = STATE(343), - [sym_logical_or_expression] = STATE(343), - [sym_logical_and_expression] = STATE(343), - [sym_equality_expression] = STATE(343), - [sym_relational_expression] = STATE(343), - [sym_bitwise_or_expression] = STATE(888), - [sym_bitwise_xor_expression] = STATE(888), - [sym_bitwise_and_expression] = STATE(888), - [sym_shift_expression] = STATE(888), - [sym_additive_expression] = STATE(888), - [sym_multiplicative_expression] = STATE(888), - [sym__unary_expression] = STATE(888), - [sym_unary_expression] = STATE(888), - [sym__postfix_expression] = STATE(888), - [sym_postfix_expression] = STATE(888), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2317), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), + [672] = { + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(486), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(486), + [sym_conditional_expression] = STATE(486), + [sym_logical_or_expression] = STATE(486), + [sym_logical_and_expression] = STATE(486), + [sym_equality_expression] = STATE(486), + [sym_relational_expression] = STATE(486), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + }, + [673] = { + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(2371), + [sym__below_relational_expression] = STATE(1136), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(2371), + [sym_conditional_expression] = STATE(2371), + [sym_logical_or_expression] = STATE(2371), + [sym_logical_and_expression] = STATE(2371), + [sym_equality_expression] = STATE(2371), + [sym_relational_expression] = STATE(2371), + [sym_bitwise_or_expression] = STATE(1438), + [sym_bitwise_xor_expression] = STATE(1438), + [sym_bitwise_and_expression] = STATE(1438), + [sym_shift_expression] = STATE(1438), + [sym_additive_expression] = STATE(1438), + [sym_multiplicative_expression] = STATE(1438), + [sym__unary_expression] = STATE(1438), + [sym_unary_expression] = STATE(1438), + [sym__postfix_expression] = STATE(1438), + [sym_postfix_expression] = STATE(1438), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1050), + [sym_super] = STATE(2333), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [674] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1598), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1598), - [sym_conditional_expression] = STATE(1598), - [sym_logical_or_expression] = STATE(1598), - [sym_logical_and_expression] = STATE(1598), - [sym_equality_expression] = STATE(1598), - [sym_relational_expression] = STATE(1598), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(487), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(487), + [sym_conditional_expression] = STATE(487), + [sym_logical_or_expression] = STATE(487), + [sym_logical_and_expression] = STATE(487), + [sym_equality_expression] = STATE(487), + [sym_relational_expression] = STATE(487), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [675] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1583), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1583), - [sym_conditional_expression] = STATE(1583), - [sym_logical_or_expression] = STATE(1583), - [sym_logical_and_expression] = STATE(1583), - [sym_equality_expression] = STATE(1583), - [sym_relational_expression] = STATE(1583), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(488), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(488), + [sym_conditional_expression] = STATE(488), + [sym_logical_or_expression] = STATE(488), + [sym_logical_and_expression] = STATE(488), + [sym_equality_expression] = STATE(488), + [sym_relational_expression] = STATE(488), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [676] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1586), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1586), - [sym_conditional_expression] = STATE(1586), - [sym_logical_or_expression] = STATE(1586), - [sym_logical_and_expression] = STATE(1586), - [sym_equality_expression] = STATE(1586), - [sym_relational_expression] = STATE(1586), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(95), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(95), + [sym_conditional_expression] = STATE(95), + [sym_logical_or_expression] = STATE(95), + [sym_logical_and_expression] = STATE(95), + [sym_equality_expression] = STATE(95), + [sym_relational_expression] = STATE(95), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [677] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1596), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1596), - [sym_conditional_expression] = STATE(1596), - [sym_logical_or_expression] = STATE(1596), - [sym_logical_and_expression] = STATE(1596), - [sym_equality_expression] = STATE(1596), - [sym_relational_expression] = STATE(1596), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(491), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(491), + [sym_conditional_expression] = STATE(491), + [sym_logical_or_expression] = STATE(491), + [sym_logical_and_expression] = STATE(491), + [sym_equality_expression] = STATE(491), + [sym_relational_expression] = STATE(491), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [678] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1588), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1588), - [sym_conditional_expression] = STATE(1588), - [sym_logical_or_expression] = STATE(1588), - [sym_logical_and_expression] = STATE(1588), - [sym_equality_expression] = STATE(1588), - [sym_relational_expression] = STATE(1588), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1631), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1631), + [sym_conditional_expression] = STATE(1631), + [sym_logical_or_expression] = STATE(1631), + [sym_logical_and_expression] = STATE(1631), + [sym_equality_expression] = STATE(1631), + [sym_relational_expression] = STATE(1631), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [679] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1577), - [sym__below_relational_expression] = STATE(2634), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1577), - [sym_conditional_expression] = STATE(1577), - [sym_logical_or_expression] = STATE(1577), - [sym_logical_and_expression] = STATE(1577), - [sym_equality_expression] = STATE(1577), - [sym_relational_expression] = STATE(1577), - [sym_bitwise_or_expression] = STATE(2258), - [sym_bitwise_xor_expression] = STATE(2258), - [sym_bitwise_and_expression] = STATE(2258), - [sym_shift_expression] = STATE(2258), - [sym_additive_expression] = STATE(2258), - [sym_multiplicative_expression] = STATE(2258), - [sym__unary_expression] = STATE(2258), - [sym_unary_expression] = STATE(2258), - [sym__postfix_expression] = STATE(2258), - [sym_postfix_expression] = STATE(2258), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2321), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1021), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1021), + [sym_conditional_expression] = STATE(1021), + [sym_logical_or_expression] = STATE(1021), + [sym_logical_and_expression] = STATE(1021), + [sym_equality_expression] = STATE(1021), + [sym_relational_expression] = STATE(1021), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [680] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym__real_expression] = STATE(2342), - [sym__below_relational_expression] = STATE(718), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym_if_null_expression] = STATE(2342), - [sym_conditional_expression] = STATE(2342), - [sym_logical_or_expression] = STATE(2342), - [sym_logical_and_expression] = STATE(2342), - [sym_equality_expression] = STATE(2342), - [sym_relational_expression] = STATE(2342), - [sym_bitwise_or_expression] = STATE(877), - [sym_bitwise_xor_expression] = STATE(877), - [sym_bitwise_and_expression] = STATE(877), - [sym_shift_expression] = STATE(877), - [sym_additive_expression] = STATE(877), - [sym_multiplicative_expression] = STATE(877), - [sym__unary_expression] = STATE(877), - [sym_unary_expression] = STATE(877), - [sym__postfix_expression] = STATE(877), - [sym_postfix_expression] = STATE(877), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(2314), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(493), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(493), + [sym_conditional_expression] = STATE(493), + [sym_logical_or_expression] = STATE(493), + [sym_logical_and_expression] = STATE(493), + [sym_equality_expression] = STATE(493), + [sym_relational_expression] = STATE(493), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [681] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(2344), - [sym__below_relational_expression] = STATE(1608), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(2344), - [sym_conditional_expression] = STATE(2344), - [sym_logical_or_expression] = STATE(2344), - [sym_logical_and_expression] = STATE(2344), - [sym_equality_expression] = STATE(2344), - [sym_relational_expression] = STATE(2344), - [sym_bitwise_or_expression] = STATE(2059), - [sym_bitwise_xor_expression] = STATE(2059), - [sym_bitwise_and_expression] = STATE(2059), - [sym_shift_expression] = STATE(2059), - [sym_additive_expression] = STATE(2059), - [sym_multiplicative_expression] = STATE(2059), - [sym__unary_expression] = STATE(2059), - [sym_unary_expression] = STATE(2059), - [sym__postfix_expression] = STATE(2059), - [sym_postfix_expression] = STATE(2059), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2302), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1522), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1522), + [sym_conditional_expression] = STATE(1522), + [sym_logical_or_expression] = STATE(1522), + [sym_logical_and_expression] = STATE(1522), + [sym_equality_expression] = STATE(1522), + [sym_relational_expression] = STATE(1522), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [682] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1527), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1527), - [sym_conditional_expression] = STATE(1527), - [sym_logical_or_expression] = STATE(1527), - [sym_logical_and_expression] = STATE(1527), - [sym_equality_expression] = STATE(1527), - [sym_relational_expression] = STATE(1527), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1513), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1513), + [sym_conditional_expression] = STATE(1513), + [sym_logical_or_expression] = STATE(1513), + [sym_logical_and_expression] = STATE(1513), + [sym_equality_expression] = STATE(1513), + [sym_relational_expression] = STATE(1513), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [683] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1529), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1529), - [sym_conditional_expression] = STATE(1529), - [sym_logical_or_expression] = STATE(1529), - [sym_logical_and_expression] = STATE(1529), - [sym_equality_expression] = STATE(1529), - [sym_relational_expression] = STATE(1529), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1581), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1581), + [sym_conditional_expression] = STATE(1581), + [sym_logical_or_expression] = STATE(1581), + [sym_logical_and_expression] = STATE(1581), + [sym_equality_expression] = STATE(1581), + [sym_relational_expression] = STATE(1581), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [684] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym__real_expression] = STATE(1533), - [sym__below_relational_expression] = STATE(2661), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym_if_null_expression] = STATE(1533), - [sym_conditional_expression] = STATE(1533), - [sym_logical_or_expression] = STATE(1533), - [sym_logical_and_expression] = STATE(1533), - [sym_equality_expression] = STATE(1533), - [sym_relational_expression] = STATE(1533), - [sym_bitwise_or_expression] = STATE(2042), - [sym_bitwise_xor_expression] = STATE(2042), - [sym_bitwise_and_expression] = STATE(2042), - [sym_shift_expression] = STATE(2042), - [sym_additive_expression] = STATE(2042), - [sym_multiplicative_expression] = STATE(2042), - [sym__unary_expression] = STATE(2042), - [sym_unary_expression] = STATE(2042), - [sym__postfix_expression] = STATE(2042), - [sym_postfix_expression] = STATE(2042), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(2305), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(2370), + [sym__below_relational_expression] = STATE(1648), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(2370), + [sym_conditional_expression] = STATE(2370), + [sym_logical_or_expression] = STATE(2370), + [sym_logical_and_expression] = STATE(2370), + [sym_equality_expression] = STATE(2370), + [sym_relational_expression] = STATE(2370), + [sym_bitwise_or_expression] = STATE(2111), + [sym_bitwise_xor_expression] = STATE(2111), + [sym_bitwise_and_expression] = STATE(2111), + [sym_shift_expression] = STATE(2111), + [sym_additive_expression] = STATE(2111), + [sym_multiplicative_expression] = STATE(2111), + [sym__unary_expression] = STATE(2111), + [sym_unary_expression] = STATE(2111), + [sym__postfix_expression] = STATE(2111), + [sym_postfix_expression] = STATE(2111), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2356), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [685] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym__real_expression] = STATE(1498), + [sym__below_relational_expression] = STATE(2694), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym_if_null_expression] = STATE(1498), + [sym_conditional_expression] = STATE(1498), + [sym_logical_or_expression] = STATE(1498), + [sym_logical_and_expression] = STATE(1498), + [sym_equality_expression] = STATE(1498), + [sym_relational_expression] = STATE(1498), + [sym_bitwise_or_expression] = STATE(1870), + [sym_bitwise_xor_expression] = STATE(1870), + [sym_bitwise_and_expression] = STATE(1870), + [sym_shift_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_unary_expression] = STATE(1870), + [sym__postfix_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(2319), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), + [sym_increment_operator] = ACTIONS(1778), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), + [anon_sym_await] = ACTIONS(1780), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - }, - [685] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1475), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1475), - [sym_conditional_expression] = STATE(1475), - [sym_logical_or_expression] = STATE(1475), - [sym_logical_and_expression] = STATE(1475), - [sym_equality_expression] = STATE(1475), - [sym_relational_expression] = STATE(1475), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [686] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(984), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(984), - [sym_conditional_expression] = STATE(984), - [sym_logical_or_expression] = STATE(984), - [sym_logical_and_expression] = STATE(984), - [sym_equality_expression] = STATE(984), - [sym_relational_expression] = STATE(984), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1022), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1022), + [sym_conditional_expression] = STATE(1022), + [sym_logical_or_expression] = STATE(1022), + [sym_logical_and_expression] = STATE(1022), + [sym_equality_expression] = STATE(1022), + [sym_relational_expression] = STATE(1022), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -77934,2143 +79385,2281 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, [687] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(973), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(973), - [sym_conditional_expression] = STATE(973), - [sym_logical_or_expression] = STATE(973), - [sym_logical_and_expression] = STATE(973), - [sym_equality_expression] = STATE(973), - [sym_relational_expression] = STATE(973), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(37), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2347), + [sym__below_relational_expression] = STATE(2680), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2347), + [sym_conditional_expression] = STATE(2347), + [sym_logical_or_expression] = STATE(2347), + [sym_logical_and_expression] = STATE(2347), + [sym_equality_expression] = STATE(2347), + [sym_relational_expression] = STATE(2347), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2320), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [688] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(977), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(977), - [sym_conditional_expression] = STATE(977), - [sym_logical_or_expression] = STATE(977), - [sym_logical_and_expression] = STATE(977), - [sym_equality_expression] = STATE(977), - [sym_relational_expression] = STATE(977), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym__real_expression] = STATE(98), + [sym__below_relational_expression] = STATE(2689), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym_if_null_expression] = STATE(98), + [sym_conditional_expression] = STATE(98), + [sym_logical_or_expression] = STATE(98), + [sym_logical_and_expression] = STATE(98), + [sym_equality_expression] = STATE(98), + [sym_relational_expression] = STATE(98), + [sym_bitwise_or_expression] = STATE(261), + [sym_bitwise_xor_expression] = STATE(261), + [sym_bitwise_and_expression] = STATE(261), + [sym_shift_expression] = STATE(261), + [sym_additive_expression] = STATE(261), + [sym_multiplicative_expression] = STATE(261), + [sym__unary_expression] = STATE(261), + [sym_unary_expression] = STATE(261), + [sym__postfix_expression] = STATE(261), + [sym_postfix_expression] = STATE(261), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(2331), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), [sym_comment] = ACTIONS(3), }, [689] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(99), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(99), - [sym_conditional_expression] = STATE(99), - [sym_logical_or_expression] = STATE(99), - [sym_logical_and_expression] = STATE(99), - [sym_equality_expression] = STATE(99), - [sym_relational_expression] = STATE(99), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1672), + [sym__below_relational_expression] = STATE(2703), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1672), + [sym_conditional_expression] = STATE(1672), + [sym_logical_or_expression] = STATE(1672), + [sym_logical_and_expression] = STATE(1672), + [sym_equality_expression] = STATE(1672), + [sym_relational_expression] = STATE(1672), + [sym_bitwise_or_expression] = STATE(2296), + [sym_bitwise_xor_expression] = STATE(2296), + [sym_bitwise_and_expression] = STATE(2296), + [sym_shift_expression] = STATE(2296), + [sym_additive_expression] = STATE(2296), + [sym_multiplicative_expression] = STATE(2296), + [sym__unary_expression] = STATE(2296), + [sym_unary_expression] = STATE(2296), + [sym__postfix_expression] = STATE(2296), + [sym_postfix_expression] = STATE(2296), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2329), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [690] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(96), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(96), - [sym_conditional_expression] = STATE(96), - [sym_logical_or_expression] = STATE(96), - [sym_logical_and_expression] = STATE(96), - [sym_equality_expression] = STATE(96), - [sym_relational_expression] = STATE(96), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(353), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(353), + [sym_conditional_expression] = STATE(353), + [sym_logical_or_expression] = STATE(353), + [sym_logical_and_expression] = STATE(353), + [sym_equality_expression] = STATE(353), + [sym_relational_expression] = STATE(353), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [691] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(95), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(95), - [sym_conditional_expression] = STATE(95), - [sym_logical_or_expression] = STATE(95), - [sym_logical_and_expression] = STATE(95), - [sym_equality_expression] = STATE(95), - [sym_relational_expression] = STATE(95), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2339), + [sym__below_relational_expression] = STATE(2680), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2339), + [sym_conditional_expression] = STATE(2339), + [sym_logical_or_expression] = STATE(2339), + [sym_logical_and_expression] = STATE(2339), + [sym_equality_expression] = STATE(2339), + [sym_relational_expression] = STATE(2339), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2320), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [692] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(94), - [sym__below_relational_expression] = STATE(2654), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(94), - [sym_conditional_expression] = STATE(94), - [sym_logical_or_expression] = STATE(94), - [sym_logical_and_expression] = STATE(94), - [sym_equality_expression] = STATE(94), - [sym_relational_expression] = STATE(94), - [sym_bitwise_or_expression] = STATE(295), - [sym_bitwise_xor_expression] = STATE(295), - [sym_bitwise_and_expression] = STATE(295), - [sym_shift_expression] = STATE(295), - [sym_additive_expression] = STATE(295), - [sym_multiplicative_expression] = STATE(295), - [sym__unary_expression] = STATE(295), - [sym_unary_expression] = STATE(295), - [sym__postfix_expression] = STATE(295), - [sym_postfix_expression] = STATE(295), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2324), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(2368), + [sym__below_relational_expression] = STATE(1993), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(2368), + [sym_conditional_expression] = STATE(2368), + [sym_logical_or_expression] = STATE(2368), + [sym_logical_and_expression] = STATE(2368), + [sym_equality_expression] = STATE(2368), + [sym_relational_expression] = STATE(2368), + [sym_bitwise_or_expression] = STATE(2283), + [sym_bitwise_xor_expression] = STATE(2283), + [sym_bitwise_and_expression] = STATE(2283), + [sym_shift_expression] = STATE(2283), + [sym_additive_expression] = STATE(2283), + [sym_multiplicative_expression] = STATE(2283), + [sym__unary_expression] = STATE(2283), + [sym_unary_expression] = STATE(2283), + [sym__postfix_expression] = STATE(2283), + [sym_postfix_expression] = STATE(2283), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2363), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [693] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1939), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1939), - [sym_conditional_expression] = STATE(1939), - [sym_logical_or_expression] = STATE(1939), - [sym_logical_and_expression] = STATE(1939), - [sym_equality_expression] = STATE(1939), - [sym_relational_expression] = STATE(1939), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym__real_expression] = STATE(1020), + [sym__below_relational_expression] = STATE(2695), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym_if_null_expression] = STATE(1020), + [sym_conditional_expression] = STATE(1020), + [sym_logical_or_expression] = STATE(1020), + [sym_logical_and_expression] = STATE(1020), + [sym_equality_expression] = STATE(1020), + [sym_relational_expression] = STATE(1020), + [sym_bitwise_or_expression] = STATE(1395), + [sym_bitwise_xor_expression] = STATE(1395), + [sym_bitwise_and_expression] = STATE(1395), + [sym_shift_expression] = STATE(1395), + [sym_additive_expression] = STATE(1395), + [sym_multiplicative_expression] = STATE(1395), + [sym__unary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym__postfix_expression] = STATE(1395), + [sym_postfix_expression] = STATE(1395), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym_this] = STATE(1050), + [sym_super] = STATE(2322), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), [sym_comment] = ACTIONS(3), }, [694] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(326), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(326), - [sym_conditional_expression] = STATE(326), - [sym_logical_or_expression] = STATE(326), - [sym_logical_and_expression] = STATE(326), - [sym_equality_expression] = STATE(326), - [sym_relational_expression] = STATE(326), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2358), + [sym__below_relational_expression] = STATE(2680), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2358), + [sym_conditional_expression] = STATE(2358), + [sym_logical_or_expression] = STATE(2358), + [sym_logical_and_expression] = STATE(2358), + [sym_equality_expression] = STATE(2358), + [sym_relational_expression] = STATE(2358), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2320), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [695] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(322), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(322), - [sym_conditional_expression] = STATE(322), - [sym_logical_or_expression] = STATE(322), - [sym_logical_and_expression] = STATE(322), - [sym_equality_expression] = STATE(322), - [sym_relational_expression] = STATE(322), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(415), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(415), + [sym_conditional_expression] = STATE(415), + [sym_logical_or_expression] = STATE(415), + [sym_logical_and_expression] = STATE(415), + [sym_equality_expression] = STATE(415), + [sym_relational_expression] = STATE(415), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [696] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(319), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(319), - [sym_conditional_expression] = STATE(319), - [sym_logical_or_expression] = STATE(319), - [sym_logical_and_expression] = STATE(319), - [sym_equality_expression] = STATE(319), - [sym_relational_expression] = STATE(319), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1972), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1972), + [sym_conditional_expression] = STATE(1972), + [sym_logical_or_expression] = STATE(1972), + [sym_logical_and_expression] = STATE(1972), + [sym_equality_expression] = STATE(1972), + [sym_relational_expression] = STATE(1972), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [697] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1940), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1940), - [sym_conditional_expression] = STATE(1940), - [sym_logical_or_expression] = STATE(1940), - [sym_logical_and_expression] = STATE(1940), - [sym_equality_expression] = STATE(1940), - [sym_relational_expression] = STATE(1940), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(423), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(423), + [sym_conditional_expression] = STATE(423), + [sym_logical_or_expression] = STATE(423), + [sym_logical_and_expression] = STATE(423), + [sym_equality_expression] = STATE(423), + [sym_relational_expression] = STATE(423), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [698] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(310), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(310), - [sym_conditional_expression] = STATE(310), - [sym_logical_or_expression] = STATE(310), - [sym_logical_and_expression] = STATE(310), - [sym_equality_expression] = STATE(310), - [sym_relational_expression] = STATE(310), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1619), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1619), + [sym_conditional_expression] = STATE(1619), + [sym_logical_or_expression] = STATE(1619), + [sym_logical_and_expression] = STATE(1619), + [sym_equality_expression] = STATE(1619), + [sym_relational_expression] = STATE(1619), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [699] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(307), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(307), - [sym_conditional_expression] = STATE(307), - [sym_logical_or_expression] = STATE(307), - [sym_logical_and_expression] = STATE(307), - [sym_equality_expression] = STATE(307), - [sym_relational_expression] = STATE(307), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1635), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1635), + [sym_conditional_expression] = STATE(1635), + [sym_logical_or_expression] = STATE(1635), + [sym_logical_and_expression] = STATE(1635), + [sym_equality_expression] = STATE(1635), + [sym_relational_expression] = STATE(1635), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [700] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym__real_expression] = STATE(317), - [sym__below_relational_expression] = STATE(2641), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym_if_null_expression] = STATE(317), - [sym_conditional_expression] = STATE(317), - [sym_logical_or_expression] = STATE(317), - [sym_logical_and_expression] = STATE(317), - [sym_equality_expression] = STATE(317), - [sym_relational_expression] = STATE(317), - [sym_bitwise_or_expression] = STATE(758), - [sym_bitwise_xor_expression] = STATE(758), - [sym_bitwise_and_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_additive_expression] = STATE(758), - [sym_multiplicative_expression] = STATE(758), - [sym__unary_expression] = STATE(758), - [sym_unary_expression] = STATE(758), - [sym__postfix_expression] = STATE(758), - [sym_postfix_expression] = STATE(758), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(2318), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1571), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1571), + [sym_conditional_expression] = STATE(1571), + [sym_logical_or_expression] = STATE(1571), + [sym_logical_and_expression] = STATE(1571), + [sym_equality_expression] = STATE(1571), + [sym_relational_expression] = STATE(1571), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [701] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym__real_expression] = STATE(2346), - [sym__below_relational_expression] = STATE(122), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym_if_null_expression] = STATE(2346), - [sym_conditional_expression] = STATE(2346), - [sym_logical_or_expression] = STATE(2346), - [sym_logical_and_expression] = STATE(2346), - [sym_equality_expression] = STATE(2346), - [sym_relational_expression] = STATE(2346), - [sym_bitwise_or_expression] = STATE(228), - [sym_bitwise_xor_expression] = STATE(228), - [sym_bitwise_and_expression] = STATE(228), - [sym_shift_expression] = STATE(228), - [sym_additive_expression] = STATE(228), - [sym_multiplicative_expression] = STATE(228), - [sym__unary_expression] = STATE(228), - [sym_unary_expression] = STATE(228), - [sym__postfix_expression] = STATE(228), - [sym_postfix_expression] = STATE(228), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(2323), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1833), + [sym__below_relational_expression] = STATE(2687), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1833), + [sym_conditional_expression] = STATE(1833), + [sym_logical_or_expression] = STATE(1833), + [sym_logical_and_expression] = STATE(1833), + [sym_equality_expression] = STATE(1833), + [sym_relational_expression] = STATE(1833), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2340), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), + [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), + [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [702] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1944), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1944), - [sym_conditional_expression] = STATE(1944), - [sym_logical_or_expression] = STATE(1944), - [sym_logical_and_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1895), + [sym__below_relational_expression] = STATE(2687), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1895), + [sym_conditional_expression] = STATE(1895), + [sym_logical_or_expression] = STATE(1895), + [sym_logical_and_expression] = STATE(1895), + [sym_equality_expression] = STATE(1895), + [sym_relational_expression] = STATE(1895), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2340), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [703] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(2339), - [sym__below_relational_expression] = STATE(1600), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(2339), - [sym_conditional_expression] = STATE(2339), - [sym_logical_or_expression] = STATE(2339), - [sym_logical_and_expression] = STATE(2339), - [sym_equality_expression] = STATE(2339), - [sym_relational_expression] = STATE(2339), - [sym_bitwise_or_expression] = STATE(1731), - [sym_bitwise_xor_expression] = STATE(1731), - [sym_bitwise_and_expression] = STATE(1731), - [sym_shift_expression] = STATE(1731), - [sym_additive_expression] = STATE(1731), - [sym_multiplicative_expression] = STATE(1731), - [sym__unary_expression] = STATE(1731), - [sym_unary_expression] = STATE(1731), - [sym__postfix_expression] = STATE(1731), - [sym_postfix_expression] = STATE(1731), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2308), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(2368), + [sym__below_relational_expression] = STATE(2007), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(2368), + [sym_conditional_expression] = STATE(2368), + [sym_logical_or_expression] = STATE(2368), + [sym_logical_and_expression] = STATE(2368), + [sym_equality_expression] = STATE(2368), + [sym_relational_expression] = STATE(2368), + [sym_bitwise_or_expression] = STATE(2283), + [sym_bitwise_xor_expression] = STATE(2283), + [sym_bitwise_and_expression] = STATE(2283), + [sym_shift_expression] = STATE(2283), + [sym_additive_expression] = STATE(2283), + [sym_multiplicative_expression] = STATE(2283), + [sym__unary_expression] = STATE(2283), + [sym_unary_expression] = STATE(2283), + [sym__postfix_expression] = STATE(2283), + [sym_postfix_expression] = STATE(2283), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2363), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [704] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(1992), - [sym__below_relational_expression] = STATE(2638), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(1992), - [sym_conditional_expression] = STATE(1992), - [sym_logical_or_expression] = STATE(1992), - [sym_logical_and_expression] = STATE(1992), - [sym_equality_expression] = STATE(1992), - [sym_relational_expression] = STATE(1992), - [sym_bitwise_or_expression] = STATE(2248), - [sym_bitwise_xor_expression] = STATE(2248), - [sym_bitwise_and_expression] = STATE(2248), - [sym_shift_expression] = STATE(2248), - [sym_additive_expression] = STATE(2248), - [sym_multiplicative_expression] = STATE(2248), - [sym__unary_expression] = STATE(2248), - [sym_unary_expression] = STATE(2248), - [sym__postfix_expression] = STATE(2248), - [sym_postfix_expression] = STATE(2248), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2290), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1970), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1970), + [sym_conditional_expression] = STATE(1970), + [sym_logical_or_expression] = STATE(1970), + [sym_logical_and_expression] = STATE(1970), + [sym_equality_expression] = STATE(1970), + [sym_relational_expression] = STATE(1970), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [705] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1476), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1476), - [sym_conditional_expression] = STATE(1476), - [sym_logical_or_expression] = STATE(1476), - [sym_logical_and_expression] = STATE(1476), - [sym_equality_expression] = STATE(1476), - [sym_relational_expression] = STATE(1476), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(362), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(362), + [sym_conditional_expression] = STATE(362), + [sym_logical_or_expression] = STATE(362), + [sym_logical_and_expression] = STATE(362), + [sym_equality_expression] = STATE(362), + [sym_relational_expression] = STATE(362), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [706] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1457), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1457), - [sym_conditional_expression] = STATE(1457), - [sym_logical_or_expression] = STATE(1457), - [sym_logical_and_expression] = STATE(1457), - [sym_equality_expression] = STATE(1457), - [sym_relational_expression] = STATE(1457), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1907), + [sym__below_relational_expression] = STATE(2687), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1907), + [sym_conditional_expression] = STATE(1907), + [sym_logical_or_expression] = STATE(1907), + [sym_logical_and_expression] = STATE(1907), + [sym_equality_expression] = STATE(1907), + [sym_relational_expression] = STATE(1907), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2340), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [707] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1479), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1479), - [sym_conditional_expression] = STATE(1479), - [sym_logical_or_expression] = STATE(1479), - [sym_logical_and_expression] = STATE(1479), - [sym_equality_expression] = STATE(1479), - [sym_relational_expression] = STATE(1479), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1957), + [sym__below_relational_expression] = STATE(2687), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1957), + [sym_conditional_expression] = STATE(1957), + [sym_logical_or_expression] = STATE(1957), + [sym_logical_and_expression] = STATE(1957), + [sym_equality_expression] = STATE(1957), + [sym_relational_expression] = STATE(1957), + [sym_bitwise_or_expression] = STATE(2301), + [sym_bitwise_xor_expression] = STATE(2301), + [sym_bitwise_and_expression] = STATE(2301), + [sym_shift_expression] = STATE(2301), + [sym_additive_expression] = STATE(2301), + [sym_multiplicative_expression] = STATE(2301), + [sym__unary_expression] = STATE(2301), + [sym_unary_expression] = STATE(2301), + [sym__postfix_expression] = STATE(2301), + [sym_postfix_expression] = STATE(2301), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2340), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [708] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1477), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1477), - [sym_conditional_expression] = STATE(1477), - [sym_logical_or_expression] = STATE(1477), - [sym_logical_and_expression] = STATE(1477), - [sym_equality_expression] = STATE(1477), - [sym_relational_expression] = STATE(1477), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(366), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(366), + [sym_conditional_expression] = STATE(366), + [sym_logical_or_expression] = STATE(366), + [sym_logical_and_expression] = STATE(366), + [sym_equality_expression] = STATE(366), + [sym_relational_expression] = STATE(366), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [709] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1472), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1472), - [sym_conditional_expression] = STATE(1472), - [sym_logical_or_expression] = STATE(1472), - [sym_logical_and_expression] = STATE(1472), - [sym_equality_expression] = STATE(1472), - [sym_relational_expression] = STATE(1472), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym__real_expression] = STATE(367), + [sym__below_relational_expression] = STATE(2692), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym_if_null_expression] = STATE(367), + [sym_conditional_expression] = STATE(367), + [sym_logical_or_expression] = STATE(367), + [sym_logical_and_expression] = STATE(367), + [sym_equality_expression] = STATE(367), + [sym_relational_expression] = STATE(367), + [sym_bitwise_or_expression] = STATE(852), + [sym_bitwise_xor_expression] = STATE(852), + [sym_bitwise_and_expression] = STATE(852), + [sym_shift_expression] = STATE(852), + [sym_additive_expression] = STATE(852), + [sym_multiplicative_expression] = STATE(852), + [sym__unary_expression] = STATE(852), + [sym_unary_expression] = STATE(852), + [sym__postfix_expression] = STATE(852), + [sym_postfix_expression] = STATE(852), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(2361), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [710] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(978), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(978), - [sym_conditional_expression] = STATE(978), - [sym_logical_or_expression] = STATE(978), - [sym_logical_and_expression] = STATE(978), - [sym_equality_expression] = STATE(978), - [sym_relational_expression] = STATE(978), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(2365), + [sym__below_relational_expression] = STATE(752), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(2365), + [sym_conditional_expression] = STATE(2365), + [sym_logical_or_expression] = STATE(2365), + [sym_logical_and_expression] = STATE(2365), + [sym_equality_expression] = STATE(2365), + [sym_relational_expression] = STATE(2365), + [sym_bitwise_or_expression] = STATE(919), + [sym_bitwise_xor_expression] = STATE(919), + [sym_bitwise_and_expression] = STATE(919), + [sym_shift_expression] = STATE(919), + [sym_additive_expression] = STATE(919), + [sym_multiplicative_expression] = STATE(919), + [sym__unary_expression] = STATE(919), + [sym_unary_expression] = STATE(919), + [sym__postfix_expression] = STATE(919), + [sym_postfix_expression] = STATE(919), + [sym_prefix_operator] = STATE(2679), [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), + [sym_negation_operator] = STATE(3008), [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_r] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_null] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(37), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2328), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1822), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1824), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), - [anon_sym_this] = ACTIONS(109), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, [711] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym__real_expression] = STATE(979), - [sym__below_relational_expression] = STATE(2639), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym_if_null_expression] = STATE(979), - [sym_conditional_expression] = STATE(979), - [sym_logical_or_expression] = STATE(979), - [sym_logical_and_expression] = STATE(979), - [sym_equality_expression] = STATE(979), - [sym_relational_expression] = STATE(979), - [sym_bitwise_or_expression] = STATE(1333), - [sym_bitwise_xor_expression] = STATE(1333), - [sym_bitwise_and_expression] = STATE(1333), - [sym_shift_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_unary_expression] = STATE(1333), - [sym__postfix_expression] = STATE(1333), - [sym_postfix_expression] = STATE(1333), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(2280), - [sym_identifier] = ACTIONS(857), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1639), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1639), + [sym_conditional_expression] = STATE(1639), + [sym_logical_or_expression] = STATE(1639), + [sym_logical_and_expression] = STATE(1639), + [sym_equality_expression] = STATE(1639), + [sym_relational_expression] = STATE(1639), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [712] = { + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(1009), + [sym__below_relational_expression] = STATE(2678), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(1009), + [sym_conditional_expression] = STATE(1009), + [sym_logical_or_expression] = STATE(1009), + [sym_logical_and_expression] = STATE(1009), + [sym_equality_expression] = STATE(1009), + [sym_relational_expression] = STATE(1009), + [sym_bitwise_or_expression] = STATE(1356), + [sym_bitwise_xor_expression] = STATE(1356), + [sym_bitwise_and_expression] = STATE(1356), + [sym_shift_expression] = STATE(1356), + [sym_additive_expression] = STATE(1356), + [sym_multiplicative_expression] = STATE(1356), + [sym__unary_expression] = STATE(1356), + [sym_unary_expression] = STATE(1356), + [sym__postfix_expression] = STATE(1356), + [sym_postfix_expression] = STATE(1356), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2336), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -80084,3382 +81673,2845 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [712] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1901), - [sym__below_relational_expression] = STATE(2633), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1901), - [sym_conditional_expression] = STATE(1901), - [sym_logical_or_expression] = STATE(1901), - [sym_logical_and_expression] = STATE(1901), - [sym_equality_expression] = STATE(1901), - [sym_relational_expression] = STATE(1901), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2326), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - }, [713] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1899), - [sym__below_relational_expression] = STATE(2633), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1899), - [sym_conditional_expression] = STATE(1899), - [sym_logical_or_expression] = STATE(1899), - [sym_logical_and_expression] = STATE(1899), - [sym_equality_expression] = STATE(1899), - [sym_relational_expression] = STATE(1899), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2326), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2369), + [sym__below_relational_expression] = STATE(1989), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2369), + [sym_conditional_expression] = STATE(2369), + [sym_logical_or_expression] = STATE(2369), + [sym_logical_and_expression] = STATE(2369), + [sym_equality_expression] = STATE(2369), + [sym_relational_expression] = STATE(2369), + [sym_bitwise_or_expression] = STATE(2294), + [sym_bitwise_xor_expression] = STATE(2294), + [sym_bitwise_and_expression] = STATE(2294), + [sym_shift_expression] = STATE(2294), + [sym_additive_expression] = STATE(2294), + [sym_multiplicative_expression] = STATE(2294), + [sym__unary_expression] = STATE(2294), + [sym_unary_expression] = STATE(2294), + [sym__postfix_expression] = STATE(2294), + [sym_postfix_expression] = STATE(2294), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2320), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), + [sym_increment_operator] = ACTIONS(1784), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1786), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [714] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym__real_expression] = STATE(2336), - [sym__below_relational_expression] = STATE(1993), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym_if_null_expression] = STATE(2336), - [sym_conditional_expression] = STATE(2336), - [sym_logical_or_expression] = STATE(2336), - [sym_logical_and_expression] = STATE(2336), - [sym_equality_expression] = STATE(2336), - [sym_relational_expression] = STATE(2336), - [sym_bitwise_or_expression] = STATE(2266), - [sym_bitwise_xor_expression] = STATE(2266), - [sym_bitwise_and_expression] = STATE(2266), - [sym_shift_expression] = STATE(2266), - [sym_additive_expression] = STATE(2266), - [sym_multiplicative_expression] = STATE(2266), - [sym__unary_expression] = STATE(2266), - [sym_unary_expression] = STATE(2266), - [sym__postfix_expression] = STATE(2266), - [sym_postfix_expression] = STATE(2266), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(2284), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1638), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1638), + [sym_conditional_expression] = STATE(1638), + [sym_logical_or_expression] = STATE(1638), + [sym_logical_and_expression] = STATE(1638), + [sym_equality_expression] = STATE(1638), + [sym_relational_expression] = STATE(1638), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [715] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1898), - [sym__below_relational_expression] = STATE(2633), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1898), - [sym_conditional_expression] = STATE(1898), - [sym_logical_or_expression] = STATE(1898), - [sym_logical_and_expression] = STATE(1898), - [sym_equality_expression] = STATE(1898), - [sym_relational_expression] = STATE(1898), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2326), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1510), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1510), + [sym_conditional_expression] = STATE(1510), + [sym_logical_or_expression] = STATE(1510), + [sym_logical_and_expression] = STATE(1510), + [sym_equality_expression] = STATE(1510), + [sym_relational_expression] = STATE(1510), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [716] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym__real_expression] = STATE(1897), - [sym__below_relational_expression] = STATE(2633), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym_if_null_expression] = STATE(1897), - [sym_conditional_expression] = STATE(1897), - [sym_logical_or_expression] = STATE(1897), - [sym_logical_and_expression] = STATE(1897), - [sym_equality_expression] = STATE(1897), - [sym_relational_expression] = STATE(1897), - [sym_bitwise_or_expression] = STATE(2242), - [sym_bitwise_xor_expression] = STATE(2242), - [sym_bitwise_and_expression] = STATE(2242), - [sym_shift_expression] = STATE(2242), - [sym_additive_expression] = STATE(2242), - [sym_multiplicative_expression] = STATE(2242), - [sym__unary_expression] = STATE(2242), - [sym_unary_expression] = STATE(2242), - [sym__postfix_expression] = STATE(2242), - [sym_postfix_expression] = STATE(2242), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(2326), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1511), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1511), + [sym_conditional_expression] = STATE(1511), + [sym_logical_or_expression] = STATE(1511), + [sym_logical_and_expression] = STATE(1511), + [sym_equality_expression] = STATE(1511), + [sym_relational_expression] = STATE(1511), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [717] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym__real_expression] = STATE(1481), - [sym__below_relational_expression] = STATE(2660), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym_if_null_expression] = STATE(1481), - [sym_conditional_expression] = STATE(1481), - [sym_logical_or_expression] = STATE(1481), - [sym_logical_and_expression] = STATE(1481), - [sym_equality_expression] = STATE(1481), - [sym_relational_expression] = STATE(1481), - [sym_bitwise_or_expression] = STATE(1846), - [sym_bitwise_xor_expression] = STATE(1846), - [sym_bitwise_and_expression] = STATE(1846), - [sym_shift_expression] = STATE(1846), - [sym_additive_expression] = STATE(1846), - [sym_multiplicative_expression] = STATE(1846), - [sym__unary_expression] = STATE(1846), - [sym_unary_expression] = STATE(1846), - [sym__postfix_expression] = STATE(1846), - [sym_postfix_expression] = STATE(1846), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(2309), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1618), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1618), + [sym_conditional_expression] = STATE(1618), + [sym_logical_or_expression] = STATE(1618), + [sym_logical_and_expression] = STATE(1618), + [sym_equality_expression] = STATE(1618), + [sym_relational_expression] = STATE(1618), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [718] = { - [sym_relational_operator] = STATE(586), - [sym_type_test] = STATE(2247), - [sym_is_operator] = STATE(2619), - [sym_type_cast] = STATE(2247), - [sym_as_operator] = STATE(2593), - [ts_builtin_sym_end] = ACTIONS(821), - [sym_identifier] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(821), - [sym_decimal_integer_literal] = ACTIONS(823), - [sym_hex_integer_literal] = ACTIONS(823), - [sym_octal_integer_literal] = ACTIONS(821), - [sym_binary_integer_literal] = ACTIONS(821), - [sym_decimal_floating_point_literal] = ACTIONS(821), - [sym_hex_floating_point_literal] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(821), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(821), - [anon_sym_r] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_null] = ACTIONS(823), - [anon_sym_throw] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_QMARK_QMARK] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [sym_equality_operator] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(828), - [anon_sym_LT_EQ] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(823), - [anon_sym_GT_GT_GT] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_TILDE_SLASH] = ACTIONS(821), - [sym_increment_operator] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [anon_sym_await] = ACTIONS(823), - [anon_sym_is] = ACTIONS(831), - [anon_sym_as] = ACTIONS(834), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_assert] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_yield] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_abstract] = ACTIONS(823), - [anon_sym_class] = ACTIONS(823), - [anon_sym_super] = ACTIONS(823), - [anon_sym_void] = ACTIONS(823), - [anon_sym_var] = ACTIONS(823), - [anon_sym_covariant] = ACTIONS(823), - [anon_sym_Function] = ACTIONS(823), - [anon_sym_get] = ACTIONS(823), - [anon_sym_set] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_final] = ACTIONS(823), - [anon_sym_external] = ACTIONS(823), - [anon_sym_this] = ACTIONS(823), + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1512), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1512), + [sym_conditional_expression] = STATE(1512), + [sym_logical_or_expression] = STATE(1512), + [sym_logical_and_expression] = STATE(1512), + [sym_equality_expression] = STATE(1512), + [sym_relational_expression] = STATE(1512), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [719] = { - [sym__assignment_operator] = STATE(431), - [sym_arguments] = STATE(890), - [sym__cascade_subsection] = STATE(908), - [sym__cascade_assignment_section] = STATE(1055), - [sym_argument_part] = STATE(721), - [sym_unconditional_assignable_selector] = STATE(871), - [sym_assignable_selector] = STATE(913), - [sym_type_arguments] = STATE(3516), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(721), - [aux_sym_cascade_section_repeat1] = STATE(908), - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(637), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(637), - [anon_sym_r] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_null] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [sym_increment_operator] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_await] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_super] = ACTIONS(639), - [anon_sym_void] = ACTIONS(639), - [anon_sym_var] = ACTIONS(639), - [anon_sym_covariant] = ACTIONS(639), - [anon_sym_Function] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_new] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_external] = ACTIONS(639), - [anon_sym_this] = ACTIONS(639), + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1633), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1633), + [sym_conditional_expression] = STATE(1633), + [sym_logical_or_expression] = STATE(1633), + [sym_logical_and_expression] = STATE(1633), + [sym_equality_expression] = STATE(1633), + [sym_relational_expression] = STATE(1633), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, [720] = { - [sym__assignment_operator] = STATE(431), - [sym_arguments] = STATE(890), - [sym__cascade_subsection] = STATE(911), - [sym__cascade_assignment_section] = STATE(1045), - [sym_argument_part] = STATE(719), - [sym_unconditional_assignable_selector] = STATE(871), - [sym_assignable_selector] = STATE(913), - [sym_type_arguments] = STATE(3516), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(719), - [aux_sym_cascade_section_repeat1] = STATE(911), - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [anon_sym_POUND] = ACTIONS(681), - [sym_decimal_integer_literal] = ACTIONS(683), - [sym_hex_integer_literal] = ACTIONS(683), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(681), - [sym_decimal_floating_point_literal] = ACTIONS(681), - [sym_hex_floating_point_literal] = ACTIONS(683), - [anon_sym_true] = ACTIONS(683), - [anon_sym_false] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(681), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(681), - [anon_sym_r] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(681), - [anon_sym_null] = ACTIONS(683), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [sym_increment_operator] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_await] = ACTIONS(683), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(681), - [anon_sym_assert] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_try] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_abstract] = ACTIONS(683), - [anon_sym_class] = ACTIONS(683), - [anon_sym_super] = ACTIONS(683), - [anon_sym_void] = ACTIONS(683), - [anon_sym_var] = ACTIONS(683), - [anon_sym_covariant] = ACTIONS(683), - [anon_sym_Function] = ACTIONS(683), - [anon_sym_get] = ACTIONS(683), - [anon_sym_set] = ACTIONS(683), - [anon_sym_new] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_final] = ACTIONS(683), - [anon_sym_external] = ACTIONS(683), - [anon_sym_this] = ACTIONS(683), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1962), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1962), + [sym_conditional_expression] = STATE(1962), + [sym_logical_or_expression] = STATE(1962), + [sym_logical_and_expression] = STATE(1962), + [sym_equality_expression] = STATE(1962), + [sym_relational_expression] = STATE(1962), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [721] = { - [sym_arguments] = STATE(890), - [sym_argument_part] = STATE(721), - [sym_type_arguments] = STATE(3516), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(837), - [sym_identifier] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(837), - [sym_decimal_integer_literal] = ACTIONS(839), - [sym_hex_integer_literal] = ACTIONS(839), - [sym_octal_integer_literal] = ACTIONS(837), - [sym_binary_integer_literal] = ACTIONS(837), - [sym_decimal_floating_point_literal] = ACTIONS(837), - [sym_hex_floating_point_literal] = ACTIONS(839), - [anon_sym_true] = ACTIONS(839), - [anon_sym_false] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(837), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(837), - [anon_sym_r] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_COMMA] = ACTIONS(837), - [anon_sym_RBRACK] = ACTIONS(837), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_null] = ACTIONS(839), - [anon_sym_throw] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(837), - [anon_sym_PLUS_EQ] = ACTIONS(837), - [anon_sym_DASH_EQ] = ACTIONS(837), - [anon_sym_STAR_EQ] = ACTIONS(837), - [anon_sym_SLASH_EQ] = ACTIONS(837), - [anon_sym_AMP_EQ] = ACTIONS(837), - [anon_sym_PIPE_EQ] = ACTIONS(837), - [anon_sym_CARET_EQ] = ACTIONS(837), - [anon_sym_PERCENT_EQ] = ACTIONS(837), - [anon_sym_LT_LT_EQ] = ACTIONS(837), - [anon_sym_GT_GT_EQ] = ACTIONS(837), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(837), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_RPAREN] = ACTIONS(837), - [anon_sym_LT] = ACTIONS(844), - [anon_sym_DASH] = ACTIONS(839), - [sym_increment_operator] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(837), - [anon_sym_TILDE] = ACTIONS(837), - [anon_sym_await] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_QMARK_DOT] = ACTIONS(837), - [anon_sym_DOT_DOT] = ACTIONS(837), - [anon_sym_assert] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(839), - [anon_sym_do] = ACTIONS(839), - [anon_sym_while] = ACTIONS(839), - [anon_sym_break] = ACTIONS(839), - [anon_sym_continue] = ACTIONS(839), - [anon_sym_yield] = ACTIONS(839), - [anon_sym_return] = ACTIONS(839), - [anon_sym_try] = ACTIONS(839), - [anon_sym_if] = ACTIONS(839), - [anon_sym_else] = ACTIONS(839), - [anon_sym_for] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(837), - [anon_sym_enum] = ACTIONS(839), - [anon_sym_abstract] = ACTIONS(839), - [anon_sym_class] = ACTIONS(839), - [anon_sym_super] = ACTIONS(839), - [anon_sym_void] = ACTIONS(839), - [anon_sym_var] = ACTIONS(839), - [anon_sym_covariant] = ACTIONS(839), - [anon_sym_Function] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_new] = ACTIONS(839), - [anon_sym_const] = ACTIONS(839), - [anon_sym_final] = ACTIONS(839), - [anon_sym_external] = ACTIONS(839), - [anon_sym_this] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(837), + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1963), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1963), + [sym_conditional_expression] = STATE(1963), + [sym_logical_or_expression] = STATE(1963), + [sym_logical_and_expression] = STATE(1963), + [sym_equality_expression] = STATE(1963), + [sym_relational_expression] = STATE(1963), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, [722] = { - [aux_sym__function_type_tails] = STATE(724), - [sym__function_type_tail] = STATE(724), - [sym__function_builtin_identifier] = STATE(2996), - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(972), - [sym_decimal_integer_literal] = ACTIONS(974), - [sym_hex_integer_literal] = ACTIONS(974), - [sym_octal_integer_literal] = ACTIONS(972), - [sym_binary_integer_literal] = ACTIONS(972), - [sym_decimal_floating_point_literal] = ACTIONS(972), - [sym_hex_floating_point_literal] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(972), - [anon_sym_r] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_null] = ACTIONS(974), - [anon_sym_throw] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_QMARK_QMARK] = ACTIONS(972), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [sym_equality_operator] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_GT_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(972), - [anon_sym_TILDE_SLASH] = ACTIONS(972), - [sym_increment_operator] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_await] = ACTIONS(974), - [anon_sym_is] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_QMARK_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_assert] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_yield] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_try] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_AT] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_abstract] = ACTIONS(974), - [anon_sym_class] = ACTIONS(974), - [anon_sym_super] = ACTIONS(974), - [anon_sym_void] = ACTIONS(974), - [anon_sym_var] = ACTIONS(974), - [anon_sym_covariant] = ACTIONS(974), - [anon_sym_Function] = ACTIONS(2086), - [anon_sym_get] = ACTIONS(974), - [anon_sym_set] = ACTIONS(974), - [anon_sym_new] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_final] = ACTIONS(974), - [anon_sym_external] = ACTIONS(974), - [anon_sym_this] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - }, - [723] = { - [aux_sym__function_type_tails] = STATE(724), - [sym__function_type_tail] = STATE(724), - [sym__function_builtin_identifier] = STATE(2996), - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(966), - [sym_decimal_integer_literal] = ACTIONS(968), - [sym_hex_integer_literal] = ACTIONS(968), - [sym_octal_integer_literal] = ACTIONS(966), - [sym_binary_integer_literal] = ACTIONS(966), - [sym_decimal_floating_point_literal] = ACTIONS(966), - [sym_hex_floating_point_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(966), - [anon_sym_r] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_null] = ACTIONS(968), - [anon_sym_throw] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_QMARK_QMARK] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(966), - [sym_equality_operator] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(966), - [anon_sym_LT_EQ] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(968), - [anon_sym_GT_GT_GT] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_TILDE_SLASH] = ACTIONS(966), - [sym_increment_operator] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_await] = ACTIONS(968), - [anon_sym_is] = ACTIONS(968), - [anon_sym_as] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_assert] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_abstract] = ACTIONS(968), - [anon_sym_class] = ACTIONS(968), - [anon_sym_super] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_var] = ACTIONS(968), - [anon_sym_covariant] = ACTIONS(968), - [anon_sym_Function] = ACTIONS(2086), - [anon_sym_get] = ACTIONS(968), - [anon_sym_set] = ACTIONS(968), - [anon_sym_new] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_final] = ACTIONS(968), - [anon_sym_external] = ACTIONS(968), - [anon_sym_this] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - }, - [724] = { - [aux_sym__function_type_tails] = STATE(724), - [sym__function_type_tail] = STATE(724), - [sym__function_builtin_identifier] = STATE(2996), - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(976), - [sym_decimal_integer_literal] = ACTIONS(978), - [sym_hex_integer_literal] = ACTIONS(978), - [sym_octal_integer_literal] = ACTIONS(976), - [sym_binary_integer_literal] = ACTIONS(976), - [sym_decimal_floating_point_literal] = ACTIONS(976), - [sym_hex_floating_point_literal] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(976), - [anon_sym_r] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_null] = ACTIONS(978), - [anon_sym_throw] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [sym_equality_operator] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_GT] = ACTIONS(978), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(978), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_TILDE_SLASH] = ACTIONS(976), - [sym_increment_operator] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_await] = ACTIONS(978), - [anon_sym_is] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_QMARK_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_assert] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_yield] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_try] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_abstract] = ACTIONS(978), - [anon_sym_class] = ACTIONS(978), - [anon_sym_super] = ACTIONS(978), - [anon_sym_void] = ACTIONS(978), - [anon_sym_var] = ACTIONS(978), - [anon_sym_covariant] = ACTIONS(978), - [anon_sym_Function] = ACTIONS(2088), - [anon_sym_get] = ACTIONS(978), - [anon_sym_set] = ACTIONS(978), - [anon_sym_new] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_final] = ACTIONS(978), - [anon_sym_external] = ACTIONS(978), - [anon_sym_this] = ACTIONS(978), - [sym_comment] = ACTIONS(3), - }, - [725] = { - [sym_relational_operator] = STATE(586), - [sym_type_test] = STATE(2247), - [sym_is_operator] = STATE(2619), - [sym_type_cast] = STATE(2247), - [sym_as_operator] = STATE(2593), - [ts_builtin_sym_end] = ACTIONS(821), - [sym_identifier] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(821), - [sym_decimal_integer_literal] = ACTIONS(823), - [sym_hex_integer_literal] = ACTIONS(823), - [sym_octal_integer_literal] = ACTIONS(821), - [sym_binary_integer_literal] = ACTIONS(821), - [sym_decimal_floating_point_literal] = ACTIONS(821), - [sym_hex_floating_point_literal] = ACTIONS(823), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(821), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(821), - [anon_sym_r] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_null] = ACTIONS(823), - [anon_sym_throw] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_QMARK_QMARK] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(823), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [sym_equality_operator] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_LT] = ACTIONS(821), - [anon_sym_GT_GT] = ACTIONS(823), - [anon_sym_GT_GT_GT] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_TILDE_SLASH] = ACTIONS(821), - [sym_increment_operator] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [anon_sym_await] = ACTIONS(823), - [anon_sym_is] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_assert] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_yield] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_abstract] = ACTIONS(823), - [anon_sym_class] = ACTIONS(823), - [anon_sym_super] = ACTIONS(823), - [anon_sym_void] = ACTIONS(823), - [anon_sym_var] = ACTIONS(823), - [anon_sym_covariant] = ACTIONS(823), - [anon_sym_Function] = ACTIONS(823), - [anon_sym_get] = ACTIONS(823), - [anon_sym_set] = ACTIONS(823), - [anon_sym_new] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_final] = ACTIONS(823), - [anon_sym_external] = ACTIONS(823), - [anon_sym_this] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - }, - [726] = { - [sym_shift_operator] = STATE(698), - [aux_sym_shift_expression_repeat1] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(989), - [sym_decimal_integer_literal] = ACTIONS(991), - [sym_hex_integer_literal] = ACTIONS(991), - [sym_octal_integer_literal] = ACTIONS(989), - [sym_binary_integer_literal] = ACTIONS(989), - [sym_decimal_floating_point_literal] = ACTIONS(989), - [sym_hex_floating_point_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(989), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(989), - [anon_sym_r] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_null] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_QMARK_QMARK] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [sym_equality_operator] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_GT_GT_GT] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_TILDE_SLASH] = ACTIONS(989), - [sym_increment_operator] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_is] = ACTIONS(991), - [anon_sym_as] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_QMARK_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_assert] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(991), - [anon_sym_abstract] = ACTIONS(991), - [anon_sym_class] = ACTIONS(991), - [anon_sym_super] = ACTIONS(991), - [anon_sym_void] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_covariant] = ACTIONS(991), - [anon_sym_Function] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_new] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_final] = ACTIONS(991), - [anon_sym_external] = ACTIONS(991), - [anon_sym_this] = ACTIONS(991), - [sym_comment] = ACTIONS(3), - }, - [727] = { - [sym_multiplicative_operator] = STATE(700), - [aux_sym_multiplicative_expression_repeat1] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_identifier] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1023), - [sym_decimal_integer_literal] = ACTIONS(1025), - [sym_hex_integer_literal] = ACTIONS(1025), - [sym_octal_integer_literal] = ACTIONS(1023), - [sym_binary_integer_literal] = ACTIONS(1023), - [sym_decimal_floating_point_literal] = ACTIONS(1023), - [sym_hex_floating_point_literal] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1023), - [anon_sym_r] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1025), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_QMARK_QMARK] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [sym_equality_operator] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_GT_GT_GT] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_TILDE_SLASH] = ACTIONS(1023), - [sym_increment_operator] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_is] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_QMARK_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_assert] = ACTIONS(1025), - [anon_sym_switch] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_abstract] = ACTIONS(1025), - [anon_sym_class] = ACTIONS(1025), - [anon_sym_super] = ACTIONS(1025), - [anon_sym_void] = ACTIONS(1025), - [anon_sym_var] = ACTIONS(1025), - [anon_sym_covariant] = ACTIONS(1025), - [anon_sym_Function] = ACTIONS(1025), - [anon_sym_get] = ACTIONS(1025), - [anon_sym_set] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_final] = ACTIONS(1025), - [anon_sym_external] = ACTIONS(1025), - [anon_sym_this] = ACTIONS(1025), - [sym_comment] = ACTIONS(3), - }, - [728] = { - [sym_type_parameters] = STATE(3387), - [sym_parameter_type_list] = STATE(802), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(983), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(983), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(983), - [anon_sym_r] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_null] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_QMARK_QMARK] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [sym_equality_operator] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_GT_GT_GT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_TILDE_SLASH] = ACTIONS(983), - [sym_increment_operator] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_is] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_QMARK_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_super] = ACTIONS(985), - [anon_sym_void] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_covariant] = ACTIONS(985), - [anon_sym_Function] = ACTIONS(985), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(985), - [anon_sym_new] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_external] = ACTIONS(985), - [anon_sym_this] = ACTIONS(985), - [sym_comment] = ACTIONS(3), - }, - [729] = { - [sym_cascade_section] = STATE(733), - [aux_sym__expression_repeat1] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(996), - [sym_identifier] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(996), - [sym_decimal_integer_literal] = ACTIONS(998), - [sym_hex_integer_literal] = ACTIONS(998), - [sym_octal_integer_literal] = ACTIONS(996), - [sym_binary_integer_literal] = ACTIONS(996), - [sym_decimal_floating_point_literal] = ACTIONS(996), - [sym_hex_floating_point_literal] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(996), - [anon_sym_r] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_null] = ACTIONS(998), - [anon_sym_throw] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_QMARK_QMARK] = ACTIONS(996), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_PIPE_PIPE] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(996), - [sym_equality_operator] = ACTIONS(996), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_GT_EQ] = ACTIONS(996), - [anon_sym_LT_EQ] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_LT_LT] = ACTIONS(996), - [anon_sym_GT_GT] = ACTIONS(998), - [anon_sym_GT_GT_GT] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_SLASH] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(996), - [anon_sym_TILDE_SLASH] = ACTIONS(996), - [sym_increment_operator] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_await] = ACTIONS(998), - [anon_sym_is] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_QMARK_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(2101), - [anon_sym_assert] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(998), - [anon_sym_class] = ACTIONS(998), - [anon_sym_super] = ACTIONS(998), - [anon_sym_void] = ACTIONS(998), - [anon_sym_var] = ACTIONS(998), - [anon_sym_covariant] = ACTIONS(998), - [anon_sym_Function] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_new] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_final] = ACTIONS(998), - [anon_sym_external] = ACTIONS(998), - [anon_sym_this] = ACTIONS(998), - [sym_comment] = ACTIONS(3), - }, - [730] = { - [sym_multiplicative_operator] = STATE(700), - [aux_sym_multiplicative_expression_repeat1] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [anon_sym_POUND] = ACTIONS(573), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [anon_sym_true] = ACTIONS(575), - [anon_sym_false] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [anon_sym_SQUOTE] = ACTIONS(575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(573), - [anon_sym_r] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_QMARK_QMARK] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(573), - [sym_equality_operator] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(575), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(575), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_GT_GT_GT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_TILDE_SLASH] = ACTIONS(1013), - [sym_increment_operator] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(575), - [anon_sym_await] = ACTIONS(575), - [anon_sym_is] = ACTIONS(575), - [anon_sym_as] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_super] = ACTIONS(575), - [anon_sym_void] = ACTIONS(575), - [anon_sym_var] = ACTIONS(575), - [anon_sym_covariant] = ACTIONS(575), - [anon_sym_Function] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), - [anon_sym_new] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_external] = ACTIONS(575), - [anon_sym_this] = ACTIONS(575), - [sym_comment] = ACTIONS(3), - }, - [731] = { - [sym_additive_operator] = STATE(699), - [aux_sym_additive_expression_repeat1] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [sym_decimal_integer_literal] = ACTIONS(610), - [sym_hex_integer_literal] = ACTIONS(610), - [sym_octal_integer_literal] = ACTIONS(608), - [sym_binary_integer_literal] = ACTIONS(608), - [sym_decimal_floating_point_literal] = ACTIONS(608), - [sym_hex_floating_point_literal] = ACTIONS(610), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(608), - [anon_sym_r] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_null] = ACTIONS(610), - [anon_sym_throw] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_QMARK_QMARK] = ACTIONS(608), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(608), - [sym_equality_operator] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_TILDE_SLASH] = ACTIONS(608), - [sym_increment_operator] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_await] = ACTIONS(610), - [anon_sym_is] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_QMARK_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_assert] = ACTIONS(610), - [anon_sym_switch] = ACTIONS(610), - [anon_sym_do] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_try] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_abstract] = ACTIONS(610), - [anon_sym_class] = ACTIONS(610), - [anon_sym_super] = ACTIONS(610), - [anon_sym_void] = ACTIONS(610), - [anon_sym_var] = ACTIONS(610), - [anon_sym_covariant] = ACTIONS(610), - [anon_sym_Function] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_new] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_final] = ACTIONS(610), - [anon_sym_external] = ACTIONS(610), - [anon_sym_this] = ACTIONS(610), - [sym_comment] = ACTIONS(3), - }, - [732] = { - [sym_shift_operator] = STATE(698), - [aux_sym_shift_expression_repeat1] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [sym_decimal_integer_literal] = ACTIONS(598), - [sym_hex_integer_literal] = ACTIONS(598), - [sym_octal_integer_literal] = ACTIONS(596), - [sym_binary_integer_literal] = ACTIONS(596), - [sym_decimal_floating_point_literal] = ACTIONS(596), - [sym_hex_floating_point_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), - [anon_sym_r] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_throw] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [sym_equality_operator] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_GT_GT_GT] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_TILDE_SLASH] = ACTIONS(596), - [sym_increment_operator] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_await] = ACTIONS(598), - [anon_sym_is] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(598), - [anon_sym_QMARK_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_switch] = ACTIONS(598), - [anon_sym_do] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_try] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_abstract] = ACTIONS(598), - [anon_sym_class] = ACTIONS(598), - [anon_sym_super] = ACTIONS(598), - [anon_sym_void] = ACTIONS(598), - [anon_sym_var] = ACTIONS(598), - [anon_sym_covariant] = ACTIONS(598), - [anon_sym_Function] = ACTIONS(598), - [anon_sym_get] = ACTIONS(598), - [anon_sym_set] = ACTIONS(598), - [anon_sym_new] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_final] = ACTIONS(598), - [anon_sym_external] = ACTIONS(598), - [anon_sym_this] = ACTIONS(598), + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(2375), + [sym__below_relational_expression] = STATE(1640), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(2375), + [sym_conditional_expression] = STATE(2375), + [sym_logical_or_expression] = STATE(2375), + [sym_logical_and_expression] = STATE(2375), + [sym_equality_expression] = STATE(2375), + [sym_relational_expression] = STATE(2375), + [sym_bitwise_or_expression] = STATE(1847), + [sym_bitwise_xor_expression] = STATE(1847), + [sym_bitwise_and_expression] = STATE(1847), + [sym_shift_expression] = STATE(1847), + [sym_additive_expression] = STATE(1847), + [sym_multiplicative_expression] = STATE(1847), + [sym__unary_expression] = STATE(1847), + [sym_unary_expression] = STATE(1847), + [sym__postfix_expression] = STATE(1847), + [sym_postfix_expression] = STATE(1847), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2349), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [733] = { - [sym_cascade_section] = STATE(733), - [aux_sym__expression_repeat1] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(1016), - [sym_identifier] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(1016), - [sym_decimal_integer_literal] = ACTIONS(1018), - [sym_hex_integer_literal] = ACTIONS(1018), - [sym_octal_integer_literal] = ACTIONS(1016), - [sym_binary_integer_literal] = ACTIONS(1016), - [sym_decimal_floating_point_literal] = ACTIONS(1016), - [sym_hex_floating_point_literal] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1018), - [anon_sym_false] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1016), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1016), - [anon_sym_r] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1018), - [anon_sym_throw] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_QMARK_QMARK] = ACTIONS(1016), - [anon_sym_QMARK] = ACTIONS(1018), - [anon_sym_PIPE_PIPE] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1016), - [sym_equality_operator] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_GT_EQ] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_LT_LT] = ACTIONS(1016), - [anon_sym_GT_GT] = ACTIONS(1018), - [anon_sym_GT_GT_GT] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_PERCENT] = ACTIONS(1016), - [anon_sym_TILDE_SLASH] = ACTIONS(1016), - [sym_increment_operator] = ACTIONS(1016), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_is] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_QMARK_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(2107), - [anon_sym_assert] = ACTIONS(1018), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_AT] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1018), - [anon_sym_abstract] = ACTIONS(1018), - [anon_sym_class] = ACTIONS(1018), - [anon_sym_super] = ACTIONS(1018), - [anon_sym_void] = ACTIONS(1018), - [anon_sym_var] = ACTIONS(1018), - [anon_sym_covariant] = ACTIONS(1018), - [anon_sym_Function] = ACTIONS(1018), - [anon_sym_get] = ACTIONS(1018), - [anon_sym_set] = ACTIONS(1018), - [anon_sym_new] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [anon_sym_final] = ACTIONS(1018), - [anon_sym_external] = ACTIONS(1018), - [anon_sym_this] = ACTIONS(1018), + [723] = { + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1625), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1625), + [sym_conditional_expression] = STATE(1625), + [sym_logical_or_expression] = STATE(1625), + [sym_logical_and_expression] = STATE(1625), + [sym_equality_expression] = STATE(1625), + [sym_relational_expression] = STATE(1625), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [734] = { - [sym_type_arguments] = STATE(798), - [sym__type_args] = STATE(818), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(983), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(983), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(983), - [anon_sym_r] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_null] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_QMARK_QMARK] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [sym_equality_operator] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_GT_GT_GT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_TILDE_SLASH] = ACTIONS(983), - [sym_increment_operator] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_is] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_QMARK_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_super] = ACTIONS(985), - [anon_sym_void] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_covariant] = ACTIONS(985), - [anon_sym_Function] = ACTIONS(985), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(985), - [anon_sym_new] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_external] = ACTIONS(985), - [anon_sym_this] = ACTIONS(985), + [724] = { + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1572), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1572), + [sym_conditional_expression] = STATE(1572), + [sym_logical_or_expression] = STATE(1572), + [sym_logical_and_expression] = STATE(1572), + [sym_equality_expression] = STATE(1572), + [sym_relational_expression] = STATE(1572), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [735] = { - [sym_additive_operator] = STATE(699), - [aux_sym_additive_expression_repeat1] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(1003), - [sym_identifier] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(1003), - [sym_decimal_integer_literal] = ACTIONS(1005), - [sym_hex_integer_literal] = ACTIONS(1005), - [sym_octal_integer_literal] = ACTIONS(1003), - [sym_binary_integer_literal] = ACTIONS(1003), - [sym_decimal_floating_point_literal] = ACTIONS(1003), - [sym_hex_floating_point_literal] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1003), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1003), - [anon_sym_r] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_throw] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_QMARK_QMARK] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [sym_equality_operator] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1003), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_GT_GT_GT] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_PERCENT] = ACTIONS(1003), - [anon_sym_TILDE_SLASH] = ACTIONS(1003), - [sym_increment_operator] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_await] = ACTIONS(1005), - [anon_sym_is] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1005), - [anon_sym_QMARK_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_assert] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_abstract] = ACTIONS(1005), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_super] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1005), - [anon_sym_var] = ACTIONS(1005), - [anon_sym_covariant] = ACTIONS(1005), - [anon_sym_Function] = ACTIONS(1005), - [anon_sym_get] = ACTIONS(1005), - [anon_sym_set] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_final] = ACTIONS(1005), - [anon_sym_external] = ACTIONS(1005), - [anon_sym_this] = ACTIONS(1005), + [725] = { + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1558), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1558), + [sym_conditional_expression] = STATE(1558), + [sym_logical_or_expression] = STATE(1558), + [sym_logical_and_expression] = STATE(1558), + [sym_equality_expression] = STATE(1558), + [sym_relational_expression] = STATE(1558), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [736] = { - [aux_sym_bitwise_xor_expression_repeat1] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(1066), - [sym_decimal_integer_literal] = ACTIONS(1068), - [sym_hex_integer_literal] = ACTIONS(1068), - [sym_octal_integer_literal] = ACTIONS(1066), - [sym_binary_integer_literal] = ACTIONS(1066), - [sym_decimal_floating_point_literal] = ACTIONS(1066), - [sym_hex_floating_point_literal] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1068), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1066), - [anon_sym_r] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1068), - [anon_sym_throw] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_QMARK_QMARK] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [sym_equality_operator] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_CARET] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_LT_LT] = ACTIONS(1066), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_GT_GT_GT] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_SLASH] = ACTIONS(1068), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_TILDE_SLASH] = ACTIONS(1066), - [sym_increment_operator] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_await] = ACTIONS(1068), - [anon_sym_is] = ACTIONS(1068), - [anon_sym_as] = ACTIONS(1068), - [anon_sym_DOT] = ACTIONS(1068), - [anon_sym_QMARK_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1066), - [anon_sym_assert] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_yield] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_AT] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_abstract] = ACTIONS(1068), - [anon_sym_class] = ACTIONS(1068), - [anon_sym_super] = ACTIONS(1068), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_var] = ACTIONS(1068), - [anon_sym_covariant] = ACTIONS(1068), - [anon_sym_Function] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_new] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_final] = ACTIONS(1068), - [anon_sym_external] = ACTIONS(1068), - [anon_sym_this] = ACTIONS(1068), + [726] = { + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym__real_expression] = STATE(1560), + [sym__below_relational_expression] = STATE(2693), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym_if_null_expression] = STATE(1560), + [sym_conditional_expression] = STATE(1560), + [sym_logical_or_expression] = STATE(1560), + [sym_logical_and_expression] = STATE(1560), + [sym_equality_expression] = STATE(1560), + [sym_relational_expression] = STATE(1560), + [sym_bitwise_or_expression] = STATE(2133), + [sym_bitwise_xor_expression] = STATE(2133), + [sym_bitwise_and_expression] = STATE(2133), + [sym_shift_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_unary_expression] = STATE(2133), + [sym__postfix_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(2342), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [737] = { - [sym__type_dot_identifier] = STATE(815), - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(1058), - [sym_decimal_integer_literal] = ACTIONS(1060), - [sym_hex_integer_literal] = ACTIONS(1060), - [sym_octal_integer_literal] = ACTIONS(1058), - [sym_binary_integer_literal] = ACTIONS(1058), - [sym_decimal_floating_point_literal] = ACTIONS(1058), - [sym_hex_floating_point_literal] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1058), - [anon_sym_r] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1060), - [anon_sym_throw] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_QMARK_QMARK] = ACTIONS(1058), - [anon_sym_QMARK] = ACTIONS(1060), - [anon_sym_PIPE_PIPE] = ACTIONS(1058), - [anon_sym_AMP_AMP] = ACTIONS(1058), - [sym_equality_operator] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_EQ] = ACTIONS(1058), - [anon_sym_LT_EQ] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_CARET] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_LT_LT] = ACTIONS(1058), - [anon_sym_GT_GT] = ACTIONS(1060), - [anon_sym_GT_GT_GT] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1058), - [anon_sym_TILDE_SLASH] = ACTIONS(1058), - [sym_increment_operator] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_await] = ACTIONS(1060), - [anon_sym_is] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1060), - [anon_sym_QMARK_DOT] = ACTIONS(1058), - [anon_sym_DOT_DOT] = ACTIONS(1058), - [anon_sym_assert] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_yield] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_abstract] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1060), - [anon_sym_super] = ACTIONS(1060), - [anon_sym_void] = ACTIONS(1060), - [anon_sym_var] = ACTIONS(1060), - [anon_sym_covariant] = ACTIONS(1060), - [anon_sym_Function] = ACTIONS(1060), - [anon_sym_get] = ACTIONS(1060), - [anon_sym_set] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_final] = ACTIONS(1060), - [anon_sym_external] = ACTIONS(1060), - [anon_sym_this] = ACTIONS(1060), + [727] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1630), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1630), + [sym_conditional_expression] = STATE(1630), + [sym_logical_or_expression] = STATE(1630), + [sym_logical_and_expression] = STATE(1630), + [sym_equality_expression] = STATE(1630), + [sym_relational_expression] = STATE(1630), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [738] = { - [aux_sym_bitwise_xor_expression_repeat1] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [sym_decimal_integer_literal] = ACTIONS(606), - [sym_hex_integer_literal] = ACTIONS(606), - [sym_octal_integer_literal] = ACTIONS(604), - [sym_binary_integer_literal] = ACTIONS(604), - [sym_decimal_floating_point_literal] = ACTIONS(604), - [sym_hex_floating_point_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), - [anon_sym_r] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_null] = ACTIONS(606), - [anon_sym_throw] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_QMARK_QMARK] = ACTIONS(604), - [anon_sym_QMARK] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_AMP_AMP] = ACTIONS(604), - [sym_equality_operator] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_GT_GT_GT] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(604), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(604), - [anon_sym_TILDE_SLASH] = ACTIONS(604), - [sym_increment_operator] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_await] = ACTIONS(606), - [anon_sym_is] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(606), - [anon_sym_QMARK_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(604), - [anon_sym_assert] = ACTIONS(606), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_do] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_try] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(604), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_abstract] = ACTIONS(606), - [anon_sym_class] = ACTIONS(606), - [anon_sym_super] = ACTIONS(606), - [anon_sym_void] = ACTIONS(606), - [anon_sym_var] = ACTIONS(606), - [anon_sym_covariant] = ACTIONS(606), - [anon_sym_Function] = ACTIONS(606), - [anon_sym_get] = ACTIONS(606), - [anon_sym_set] = ACTIONS(606), - [anon_sym_new] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_final] = ACTIONS(606), - [anon_sym_external] = ACTIONS(606), - [anon_sym_this] = ACTIONS(606), + [728] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1623), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1623), + [sym_conditional_expression] = STATE(1623), + [sym_logical_or_expression] = STATE(1623), + [sym_logical_and_expression] = STATE(1623), + [sym_equality_expression] = STATE(1623), + [sym_relational_expression] = STATE(1623), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [739] = { - [aux_sym__function_type_tails] = STATE(741), - [sym__function_type_tail] = STATE(741), - [sym__function_builtin_identifier] = STATE(3029), - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(972), - [sym_decimal_integer_literal] = ACTIONS(974), - [sym_hex_integer_literal] = ACTIONS(974), - [sym_octal_integer_literal] = ACTIONS(972), - [sym_binary_integer_literal] = ACTIONS(972), - [sym_decimal_floating_point_literal] = ACTIONS(972), - [sym_hex_floating_point_literal] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(972), - [anon_sym_r] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_null] = ACTIONS(974), - [anon_sym_throw] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_QMARK_QMARK] = ACTIONS(972), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [sym_equality_operator] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_GT_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(972), - [anon_sym_TILDE_SLASH] = ACTIONS(972), - [sym_increment_operator] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_await] = ACTIONS(974), - [anon_sym_is] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_assert] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_yield] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_try] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_AT] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_abstract] = ACTIONS(974), - [anon_sym_class] = ACTIONS(974), - [anon_sym_super] = ACTIONS(974), - [anon_sym_void] = ACTIONS(974), - [anon_sym_var] = ACTIONS(974), - [anon_sym_covariant] = ACTIONS(974), - [anon_sym_Function] = ACTIONS(2115), - [anon_sym_get] = ACTIONS(974), - [anon_sym_set] = ACTIONS(974), - [anon_sym_new] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_final] = ACTIONS(974), - [anon_sym_external] = ACTIONS(974), - [anon_sym_this] = ACTIONS(974), + [729] = { + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym__real_expression] = STATE(1501), + [sym__below_relational_expression] = STATE(2677), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym_if_null_expression] = STATE(1501), + [sym_conditional_expression] = STATE(1501), + [sym_logical_or_expression] = STATE(1501), + [sym_logical_and_expression] = STATE(1501), + [sym_equality_expression] = STATE(1501), + [sym_relational_expression] = STATE(1501), + [sym_bitwise_or_expression] = STATE(1774), + [sym_bitwise_xor_expression] = STATE(1774), + [sym_bitwise_and_expression] = STATE(1774), + [sym_shift_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_unary_expression] = STATE(1774), + [sym__postfix_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(2351), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [740] = { - [aux_sym_bitwise_and_expression_repeat1] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(565), - [sym_identifier] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(565), - [sym_decimal_integer_literal] = ACTIONS(567), - [sym_hex_integer_literal] = ACTIONS(567), - [sym_octal_integer_literal] = ACTIONS(565), - [sym_binary_integer_literal] = ACTIONS(565), - [sym_decimal_floating_point_literal] = ACTIONS(565), - [sym_hex_floating_point_literal] = ACTIONS(567), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(565), - [anon_sym_r] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_null] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_QMARK_QMARK] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(565), - [anon_sym_AMP_AMP] = ACTIONS(565), - [sym_equality_operator] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_LT_LT] = ACTIONS(565), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_TILDE_SLASH] = ACTIONS(565), - [sym_increment_operator] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_await] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_DOT_DOT] = ACTIONS(565), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(567), - [anon_sym_do] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_try] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(567), - [anon_sym_class] = ACTIONS(567), - [anon_sym_super] = ACTIONS(567), - [anon_sym_void] = ACTIONS(567), - [anon_sym_var] = ACTIONS(567), - [anon_sym_covariant] = ACTIONS(567), - [anon_sym_Function] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_new] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_final] = ACTIONS(567), - [anon_sym_external] = ACTIONS(567), - [anon_sym_this] = ACTIONS(567), + [730] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1969), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1969), + [sym_conditional_expression] = STATE(1969), + [sym_logical_or_expression] = STATE(1969), + [sym_logical_and_expression] = STATE(1969), + [sym_equality_expression] = STATE(1969), + [sym_relational_expression] = STATE(1969), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [741] = { - [aux_sym__function_type_tails] = STATE(741), - [sym__function_type_tail] = STATE(741), - [sym__function_builtin_identifier] = STATE(3029), - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(976), - [sym_decimal_integer_literal] = ACTIONS(978), - [sym_hex_integer_literal] = ACTIONS(978), - [sym_octal_integer_literal] = ACTIONS(976), - [sym_binary_integer_literal] = ACTIONS(976), - [sym_decimal_floating_point_literal] = ACTIONS(976), - [sym_hex_floating_point_literal] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(976), - [anon_sym_r] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_null] = ACTIONS(978), - [anon_sym_throw] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [sym_equality_operator] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_GT] = ACTIONS(978), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(978), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_TILDE_SLASH] = ACTIONS(976), - [sym_increment_operator] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_await] = ACTIONS(978), - [anon_sym_is] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_assert] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_yield] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_try] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_abstract] = ACTIONS(978), - [anon_sym_class] = ACTIONS(978), - [anon_sym_super] = ACTIONS(978), - [anon_sym_void] = ACTIONS(978), - [anon_sym_var] = ACTIONS(978), - [anon_sym_covariant] = ACTIONS(978), - [anon_sym_Function] = ACTIONS(2120), - [anon_sym_get] = ACTIONS(978), - [anon_sym_set] = ACTIONS(978), - [anon_sym_new] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_final] = ACTIONS(978), - [anon_sym_external] = ACTIONS(978), - [anon_sym_this] = ACTIONS(978), + [731] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1627), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1627), + [sym_conditional_expression] = STATE(1627), + [sym_logical_or_expression] = STATE(1627), + [sym_logical_and_expression] = STATE(1627), + [sym_equality_expression] = STATE(1627), + [sym_relational_expression] = STATE(1627), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [742] = { - [aux_sym_bitwise_and_expression_repeat1] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(1062), - [sym_decimal_integer_literal] = ACTIONS(1064), - [sym_hex_integer_literal] = ACTIONS(1064), - [sym_octal_integer_literal] = ACTIONS(1062), - [sym_binary_integer_literal] = ACTIONS(1062), - [sym_decimal_floating_point_literal] = ACTIONS(1062), - [sym_hex_floating_point_literal] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1064), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1062), - [anon_sym_r] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1064), - [anon_sym_throw] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_QMARK_QMARK] = ACTIONS(1062), - [anon_sym_QMARK] = ACTIONS(1064), - [anon_sym_PIPE_PIPE] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(1062), - [sym_equality_operator] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1064), - [anon_sym_GT_EQ] = ACTIONS(1062), - [anon_sym_LT_EQ] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_CARET] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_LT_LT] = ACTIONS(1062), - [anon_sym_GT_GT] = ACTIONS(1064), - [anon_sym_GT_GT_GT] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_SLASH] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1062), - [anon_sym_TILDE_SLASH] = ACTIONS(1062), - [sym_increment_operator] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_await] = ACTIONS(1064), - [anon_sym_is] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [anon_sym_DOT] = ACTIONS(1064), - [anon_sym_QMARK_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_assert] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_yield] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_AT] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_abstract] = ACTIONS(1064), - [anon_sym_class] = ACTIONS(1064), - [anon_sym_super] = ACTIONS(1064), - [anon_sym_void] = ACTIONS(1064), - [anon_sym_var] = ACTIONS(1064), - [anon_sym_covariant] = ACTIONS(1064), - [anon_sym_Function] = ACTIONS(1064), - [anon_sym_get] = ACTIONS(1064), - [anon_sym_set] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_final] = ACTIONS(1064), - [anon_sym_external] = ACTIONS(1064), - [anon_sym_this] = ACTIONS(1064), + [732] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1621), + [sym__below_relational_expression] = STATE(2696), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1621), + [sym_conditional_expression] = STATE(1621), + [sym_logical_or_expression] = STATE(1621), + [sym_logical_and_expression] = STATE(1621), + [sym_equality_expression] = STATE(1621), + [sym_relational_expression] = STATE(1621), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2345), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [743] = { - [aux_sym_bitwise_or_expression_repeat1] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_identifier] = ACTIONS(1093), - [anon_sym_POUND] = ACTIONS(1091), - [sym_decimal_integer_literal] = ACTIONS(1093), - [sym_hex_integer_literal] = ACTIONS(1093), - [sym_octal_integer_literal] = ACTIONS(1091), - [sym_binary_integer_literal] = ACTIONS(1091), - [sym_decimal_floating_point_literal] = ACTIONS(1091), - [sym_hex_floating_point_literal] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1091), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1091), - [anon_sym_r] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1091), - [anon_sym_COMMA] = ACTIONS(1091), - [anon_sym_null] = ACTIONS(1093), - [anon_sym_throw] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_QMARK_QMARK] = ACTIONS(1091), - [anon_sym_QMARK] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [sym_equality_operator] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_GT_EQ] = ACTIONS(1091), - [anon_sym_LT_EQ] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_GT_GT_GT] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1091), - [anon_sym_SLASH] = ACTIONS(1093), - [anon_sym_PERCENT] = ACTIONS(1091), - [anon_sym_TILDE_SLASH] = ACTIONS(1091), - [sym_increment_operator] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1093), - [anon_sym_is] = ACTIONS(1093), - [anon_sym_as] = ACTIONS(1093), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_QMARK_DOT] = ACTIONS(1091), - [anon_sym_DOT_DOT] = ACTIONS(1091), - [anon_sym_assert] = ACTIONS(1093), - [anon_sym_switch] = ACTIONS(1093), - [anon_sym_do] = ACTIONS(1093), - [anon_sym_while] = ACTIONS(1093), - [anon_sym_break] = ACTIONS(1093), - [anon_sym_continue] = ACTIONS(1093), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_return] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(1093), - [anon_sym_if] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1093), - [anon_sym_AT] = ACTIONS(1091), - [anon_sym_enum] = ACTIONS(1093), - [anon_sym_abstract] = ACTIONS(1093), - [anon_sym_class] = ACTIONS(1093), - [anon_sym_super] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1093), - [anon_sym_var] = ACTIONS(1093), - [anon_sym_covariant] = ACTIONS(1093), - [anon_sym_Function] = ACTIONS(1093), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1093), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_const] = ACTIONS(1093), - [anon_sym_final] = ACTIONS(1093), - [anon_sym_external] = ACTIONS(1093), - [anon_sym_this] = ACTIONS(1093), + [733] = { + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym__real_expression] = STATE(1629), + [sym__below_relational_expression] = STATE(2686), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym_if_null_expression] = STATE(1629), + [sym_conditional_expression] = STATE(1629), + [sym_logical_or_expression] = STATE(1629), + [sym_logical_and_expression] = STATE(1629), + [sym_equality_expression] = STATE(1629), + [sym_relational_expression] = STATE(1629), + [sym_bitwise_or_expression] = STATE(2275), + [sym_bitwise_xor_expression] = STATE(2275), + [sym_bitwise_and_expression] = STATE(2275), + [sym_shift_expression] = STATE(2275), + [sym_additive_expression] = STATE(2275), + [sym_multiplicative_expression] = STATE(2275), + [sym__unary_expression] = STATE(2275), + [sym_unary_expression] = STATE(2275), + [sym__postfix_expression] = STATE(2275), + [sym_postfix_expression] = STATE(2275), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(2364), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), [sym_comment] = ACTIONS(3), }, - [744] = { - [aux_sym_logical_and_expression_repeat1] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1085), - [anon_sym_POUND] = ACTIONS(1083), - [sym_decimal_integer_literal] = ACTIONS(1085), - [sym_hex_integer_literal] = ACTIONS(1085), - [sym_octal_integer_literal] = ACTIONS(1083), - [sym_binary_integer_literal] = ACTIONS(1083), - [sym_decimal_floating_point_literal] = ACTIONS(1083), - [sym_hex_floating_point_literal] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1085), - [anon_sym_false] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), - [anon_sym_r] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1085), - [anon_sym_throw] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_QMARK_QMARK] = ACTIONS(1083), - [anon_sym_QMARK] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1083), - [anon_sym_AMP_AMP] = ACTIONS(1083), - [sym_equality_operator] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1083), - [anon_sym_PIPE] = ACTIONS(1085), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1083), - [anon_sym_GT_GT] = ACTIONS(1085), - [anon_sym_GT_GT_GT] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1085), - [anon_sym_PERCENT] = ACTIONS(1083), - [anon_sym_TILDE_SLASH] = ACTIONS(1083), - [sym_increment_operator] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_is] = ACTIONS(1085), - [anon_sym_as] = ACTIONS(1085), - [anon_sym_DOT] = ACTIONS(1085), - [anon_sym_QMARK_DOT] = ACTIONS(1083), - [anon_sym_DOT_DOT] = ACTIONS(1083), - [anon_sym_assert] = ACTIONS(1085), - [anon_sym_switch] = ACTIONS(1085), - [anon_sym_do] = ACTIONS(1085), - [anon_sym_while] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1085), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_yield] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1085), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_abstract] = ACTIONS(1085), - [anon_sym_class] = ACTIONS(1085), - [anon_sym_super] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1085), - [anon_sym_var] = ACTIONS(1085), - [anon_sym_covariant] = ACTIONS(1085), - [anon_sym_Function] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1085), - [anon_sym_final] = ACTIONS(1085), - [anon_sym_external] = ACTIONS(1085), - [anon_sym_this] = ACTIONS(1085), + [734] = { + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym__real_expression] = STATE(2372), + [sym__below_relational_expression] = STATE(1125), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym_if_null_expression] = STATE(2372), + [sym_conditional_expression] = STATE(2372), + [sym_logical_or_expression] = STATE(2372), + [sym_logical_and_expression] = STATE(2372), + [sym_equality_expression] = STATE(2372), + [sym_relational_expression] = STATE(2372), + [sym_bitwise_or_expression] = STATE(1464), + [sym_bitwise_xor_expression] = STATE(1464), + [sym_bitwise_and_expression] = STATE(1464), + [sym_shift_expression] = STATE(1464), + [sym_additive_expression] = STATE(1464), + [sym_multiplicative_expression] = STATE(1464), + [sym__unary_expression] = STATE(1464), + [sym_unary_expression] = STATE(1464), + [sym__postfix_expression] = STATE(1464), + [sym_postfix_expression] = STATE(1464), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(2354), + [sym_identifier] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(113), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(15), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_r] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_null] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1808), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(101), + [anon_sym_const] = ACTIONS(811), + [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [745] = { - [aux_sym_bitwise_or_expression_repeat1] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_POUND] = ACTIONS(569), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [anon_sym_true] = ACTIONS(571), - [anon_sym_false] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(569), - [anon_sym_r] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_null] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_PIPE_PIPE] = ACTIONS(569), - [anon_sym_AMP_AMP] = ACTIONS(569), - [sym_equality_operator] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(2123), - [anon_sym_CARET] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_GT_GT_GT] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(569), - [anon_sym_TILDE_SLASH] = ACTIONS(569), - [sym_increment_operator] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_await] = ACTIONS(571), - [anon_sym_is] = ACTIONS(571), - [anon_sym_as] = ACTIONS(571), - [anon_sym_DOT] = ACTIONS(571), - [anon_sym_QMARK_DOT] = ACTIONS(569), - [anon_sym_DOT_DOT] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_super] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_covariant] = ACTIONS(571), - [anon_sym_Function] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [anon_sym_new] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_external] = ACTIONS(571), - [anon_sym_this] = ACTIONS(571), + [735] = { + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1574), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1574), + [sym_conditional_expression] = STATE(1574), + [sym_logical_or_expression] = STATE(1574), + [sym_logical_and_expression] = STATE(1574), + [sym_equality_expression] = STATE(1574), + [sym_relational_expression] = STATE(1574), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [746] = { - [aux_sym__function_type_tails] = STATE(741), - [sym__function_type_tail] = STATE(741), - [sym__function_builtin_identifier] = STATE(3029), - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(966), - [sym_decimal_integer_literal] = ACTIONS(968), - [sym_hex_integer_literal] = ACTIONS(968), - [sym_octal_integer_literal] = ACTIONS(966), - [sym_binary_integer_literal] = ACTIONS(966), - [sym_decimal_floating_point_literal] = ACTIONS(966), - [sym_hex_floating_point_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(966), - [anon_sym_r] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_null] = ACTIONS(968), - [anon_sym_throw] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_QMARK_QMARK] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(966), - [sym_equality_operator] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(966), - [anon_sym_LT_EQ] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(968), - [anon_sym_GT_GT_GT] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_TILDE_SLASH] = ACTIONS(966), - [sym_increment_operator] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_await] = ACTIONS(968), - [anon_sym_is] = ACTIONS(968), - [anon_sym_as] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_assert] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_abstract] = ACTIONS(968), - [anon_sym_class] = ACTIONS(968), - [anon_sym_super] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_var] = ACTIONS(968), - [anon_sym_covariant] = ACTIONS(968), - [anon_sym_Function] = ACTIONS(2115), - [anon_sym_get] = ACTIONS(968), - [anon_sym_set] = ACTIONS(968), - [anon_sym_new] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_final] = ACTIONS(968), - [anon_sym_external] = ACTIONS(968), - [anon_sym_this] = ACTIONS(968), + [736] = { + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1568), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1568), + [sym_conditional_expression] = STATE(1568), + [sym_logical_or_expression] = STATE(1568), + [sym_logical_and_expression] = STATE(1568), + [sym_equality_expression] = STATE(1568), + [sym_relational_expression] = STATE(1568), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [747] = { - [aux_sym__if_null_expression] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [anon_sym_POUND] = ACTIONS(1105), - [sym_decimal_integer_literal] = ACTIONS(1107), - [sym_hex_integer_literal] = ACTIONS(1107), - [sym_octal_integer_literal] = ACTIONS(1105), - [sym_binary_integer_literal] = ACTIONS(1105), - [sym_decimal_floating_point_literal] = ACTIONS(1105), - [sym_hex_floating_point_literal] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1105), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_r] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_null] = ACTIONS(1107), - [anon_sym_throw] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_QMARK_QMARK] = ACTIONS(2126), - [anon_sym_QMARK] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [sym_equality_operator] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_GT_GT_GT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_TILDE_SLASH] = ACTIONS(1105), - [sym_increment_operator] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_is] = ACTIONS(1107), - [anon_sym_as] = ACTIONS(1107), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_QMARK_DOT] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_switch] = ACTIONS(1107), - [anon_sym_do] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_abstract] = ACTIONS(1107), - [anon_sym_class] = ACTIONS(1107), - [anon_sym_super] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_covariant] = ACTIONS(1107), - [anon_sym_Function] = ACTIONS(1107), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1107), - [anon_sym_new] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_final] = ACTIONS(1107), - [anon_sym_external] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1107), + [737] = { + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(425), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(425), + [sym_conditional_expression] = STATE(425), + [sym_logical_or_expression] = STATE(425), + [sym_logical_and_expression] = STATE(425), + [sym_equality_expression] = STATE(425), + [sym_relational_expression] = STATE(425), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, - [748] = { - [aux_sym_logical_or_expression_repeat1] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1089), - [anon_sym_POUND] = ACTIONS(1087), - [sym_decimal_integer_literal] = ACTIONS(1089), - [sym_hex_integer_literal] = ACTIONS(1089), - [sym_octal_integer_literal] = ACTIONS(1087), - [sym_binary_integer_literal] = ACTIONS(1087), - [sym_decimal_floating_point_literal] = ACTIONS(1087), - [sym_hex_floating_point_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1089), - [anon_sym_false] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1087), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1087), - [anon_sym_r] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_COMMA] = ACTIONS(1087), - [anon_sym_null] = ACTIONS(1089), - [anon_sym_throw] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_QMARK_QMARK] = ACTIONS(1087), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1087), - [anon_sym_AMP_AMP] = ACTIONS(1087), - [sym_equality_operator] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1089), - [anon_sym_GT_EQ] = ACTIONS(1087), - [anon_sym_LT_EQ] = ACTIONS(1087), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1087), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_GT_GT_GT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1089), - [anon_sym_PERCENT] = ACTIONS(1087), - [anon_sym_TILDE_SLASH] = ACTIONS(1087), - [sym_increment_operator] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_is] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1089), - [anon_sym_DOT] = ACTIONS(1089), - [anon_sym_QMARK_DOT] = ACTIONS(1087), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_assert] = ACTIONS(1089), - [anon_sym_switch] = ACTIONS(1089), - [anon_sym_do] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1089), - [anon_sym_break] = ACTIONS(1089), - [anon_sym_continue] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1089), - [anon_sym_return] = ACTIONS(1089), - [anon_sym_try] = ACTIONS(1089), - [anon_sym_if] = ACTIONS(1089), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1089), - [anon_sym_abstract] = ACTIONS(1089), - [anon_sym_class] = ACTIONS(1089), - [anon_sym_super] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_var] = ACTIONS(1089), - [anon_sym_covariant] = ACTIONS(1089), - [anon_sym_Function] = ACTIONS(1089), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_new] = ACTIONS(1089), - [anon_sym_const] = ACTIONS(1089), - [anon_sym_final] = ACTIONS(1089), - [anon_sym_external] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(1089), + [738] = { + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1556), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1556), + [sym_conditional_expression] = STATE(1556), + [sym_logical_or_expression] = STATE(1556), + [sym_logical_and_expression] = STATE(1556), + [sym_equality_expression] = STATE(1556), + [sym_relational_expression] = STATE(1556), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [749] = { - [sym__type_dot_identifier] = STATE(2453), - [ts_builtin_sym_end] = ACTIONS(1073), - [sym_identifier] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(1073), - [sym_decimal_integer_literal] = ACTIONS(1075), - [sym_hex_integer_literal] = ACTIONS(1075), - [sym_octal_integer_literal] = ACTIONS(1073), - [sym_binary_integer_literal] = ACTIONS(1073), - [sym_decimal_floating_point_literal] = ACTIONS(1073), - [sym_hex_floating_point_literal] = ACTIONS(1075), - [anon_sym_true] = ACTIONS(1075), - [anon_sym_false] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1073), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1073), - [anon_sym_r] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1073), - [anon_sym_COMMA] = ACTIONS(1073), - [anon_sym_null] = ACTIONS(1075), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_QMARK_QMARK] = ACTIONS(1073), - [anon_sym_QMARK] = ACTIONS(1075), - [anon_sym_PIPE_PIPE] = ACTIONS(1073), - [anon_sym_AMP_AMP] = ACTIONS(1073), - [sym_equality_operator] = ACTIONS(1073), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_GT_EQ] = ACTIONS(1073), - [anon_sym_LT_EQ] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_LT_LT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1075), - [anon_sym_GT_GT_GT] = ACTIONS(1073), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_PERCENT] = ACTIONS(1073), - [anon_sym_TILDE_SLASH] = ACTIONS(1073), - [sym_increment_operator] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_await] = ACTIONS(1075), - [anon_sym_is] = ACTIONS(1075), - [anon_sym_as] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1080), - [anon_sym_QMARK_DOT] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_assert] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_yield] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_try] = ACTIONS(1075), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_AT] = ACTIONS(1073), - [anon_sym_enum] = ACTIONS(1075), - [anon_sym_abstract] = ACTIONS(1075), - [anon_sym_class] = ACTIONS(1075), - [anon_sym_super] = ACTIONS(1075), - [anon_sym_void] = ACTIONS(1075), - [anon_sym_var] = ACTIONS(1075), - [anon_sym_covariant] = ACTIONS(1075), - [anon_sym_Function] = ACTIONS(1075), - [anon_sym_get] = ACTIONS(1075), - [anon_sym_set] = ACTIONS(1075), - [anon_sym_new] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_final] = ACTIONS(1075), - [anon_sym_external] = ACTIONS(1075), - [anon_sym_this] = ACTIONS(1075), + [739] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(1964), + [sym__below_relational_expression] = STATE(2676), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(1964), + [sym_conditional_expression] = STATE(1964), + [sym_logical_or_expression] = STATE(1964), + [sym_logical_and_expression] = STATE(1964), + [sym_equality_expression] = STATE(1964), + [sym_relational_expression] = STATE(1964), + [sym_bitwise_or_expression] = STATE(2286), + [sym_bitwise_xor_expression] = STATE(2286), + [sym_bitwise_and_expression] = STATE(2286), + [sym_shift_expression] = STATE(2286), + [sym_additive_expression] = STATE(2286), + [sym_multiplicative_expression] = STATE(2286), + [sym__unary_expression] = STATE(2286), + [sym_unary_expression] = STATE(2286), + [sym__postfix_expression] = STATE(2286), + [sym_postfix_expression] = STATE(2286), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2313), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [750] = { - [aux_sym__if_null_expression] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_identifier] = ACTIONS(1097), - [anon_sym_POUND] = ACTIONS(1095), - [sym_decimal_integer_literal] = ACTIONS(1097), - [sym_hex_integer_literal] = ACTIONS(1097), - [sym_octal_integer_literal] = ACTIONS(1095), - [sym_binary_integer_literal] = ACTIONS(1095), - [sym_decimal_floating_point_literal] = ACTIONS(1095), - [sym_hex_floating_point_literal] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_SQUOTE] = ACTIONS(1097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1095), - [anon_sym_r] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_null] = ACTIONS(1097), - [anon_sym_throw] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_QMARK_QMARK] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [sym_equality_operator] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_GT_EQ] = ACTIONS(1095), - [anon_sym_LT_EQ] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1097), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1097), - [anon_sym_GT_GT_GT] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1095), - [anon_sym_TILDE_SLASH] = ACTIONS(1095), - [sym_increment_operator] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_await] = ACTIONS(1097), - [anon_sym_is] = ACTIONS(1097), - [anon_sym_as] = ACTIONS(1097), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_QMARK_DOT] = ACTIONS(1095), - [anon_sym_DOT_DOT] = ACTIONS(1095), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_switch] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1097), - [anon_sym_continue] = ACTIONS(1097), - [anon_sym_yield] = ACTIONS(1097), - [anon_sym_return] = ACTIONS(1097), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_AT] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1097), - [anon_sym_abstract] = ACTIONS(1097), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_super] = ACTIONS(1097), - [anon_sym_void] = ACTIONS(1097), - [anon_sym_var] = ACTIONS(1097), - [anon_sym_covariant] = ACTIONS(1097), - [anon_sym_Function] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_new] = ACTIONS(1097), - [anon_sym_const] = ACTIONS(1097), - [anon_sym_final] = ACTIONS(1097), - [anon_sym_external] = ACTIONS(1097), - [anon_sym_this] = ACTIONS(1097), + [740] = { + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym__real_expression] = STATE(424), + [sym__below_relational_expression] = STATE(2704), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym_if_null_expression] = STATE(424), + [sym_conditional_expression] = STATE(424), + [sym_logical_or_expression] = STATE(424), + [sym_logical_and_expression] = STATE(424), + [sym_equality_expression] = STATE(424), + [sym_relational_expression] = STATE(424), + [sym_bitwise_or_expression] = STATE(943), + [sym_bitwise_xor_expression] = STATE(943), + [sym_bitwise_and_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_additive_expression] = STATE(943), + [sym_multiplicative_expression] = STATE(943), + [sym__unary_expression] = STATE(943), + [sym_unary_expression] = STATE(943), + [sym__postfix_expression] = STATE(943), + [sym_postfix_expression] = STATE(943), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(2325), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), [sym_comment] = ACTIONS(3), }, - [751] = { - [aux_sym_logical_or_expression_repeat1] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [sym_decimal_integer_literal] = ACTIONS(590), - [sym_hex_integer_literal] = ACTIONS(590), - [sym_octal_integer_literal] = ACTIONS(588), - [sym_binary_integer_literal] = ACTIONS(588), - [sym_decimal_floating_point_literal] = ACTIONS(588), - [sym_hex_floating_point_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), - [anon_sym_r] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_null] = ACTIONS(590), - [anon_sym_throw] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_QMARK_QMARK] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(2129), - [anon_sym_AMP_AMP] = ACTIONS(588), - [sym_equality_operator] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_GT_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_TILDE_SLASH] = ACTIONS(588), - [sym_increment_operator] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_is] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(590), - [anon_sym_QMARK_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_switch] = ACTIONS(590), - [anon_sym_do] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_try] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_abstract] = ACTIONS(590), - [anon_sym_class] = ACTIONS(590), - [anon_sym_super] = ACTIONS(590), - [anon_sym_void] = ACTIONS(590), - [anon_sym_var] = ACTIONS(590), - [anon_sym_covariant] = ACTIONS(590), - [anon_sym_Function] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), - [anon_sym_new] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_final] = ACTIONS(590), - [anon_sym_external] = ACTIONS(590), - [anon_sym_this] = ACTIONS(590), + [741] = { + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1562), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1562), + [sym_conditional_expression] = STATE(1562), + [sym_logical_or_expression] = STATE(1562), + [sym_logical_and_expression] = STATE(1562), + [sym_equality_expression] = STATE(1562), + [sym_relational_expression] = STATE(1562), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [742] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym__real_expression] = STATE(2380), + [sym__below_relational_expression] = STATE(2041), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym_if_null_expression] = STATE(2380), + [sym_conditional_expression] = STATE(2380), + [sym_logical_or_expression] = STATE(2380), + [sym_logical_and_expression] = STATE(2380), + [sym_equality_expression] = STATE(2380), + [sym_relational_expression] = STATE(2380), + [sym_bitwise_or_expression] = STATE(2294), + [sym_bitwise_xor_expression] = STATE(2294), + [sym_bitwise_and_expression] = STATE(2294), + [sym_shift_expression] = STATE(2294), + [sym_additive_expression] = STATE(2294), + [sym_multiplicative_expression] = STATE(2294), + [sym__unary_expression] = STATE(2294), + [sym_unary_expression] = STATE(2294), + [sym__postfix_expression] = STATE(2294), + [sym_postfix_expression] = STATE(2294), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(2352), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), [sym_comment] = ACTIONS(3), }, - [752] = { - [aux_sym_logical_and_expression_repeat1] = STATE(752), + [743] = { + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1559), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1559), + [sym_conditional_expression] = STATE(1559), + [sym_logical_or_expression] = STATE(1559), + [sym_logical_and_expression] = STATE(1559), + [sym_equality_expression] = STATE(1559), + [sym_relational_expression] = STATE(1559), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [744] = { + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym__real_expression] = STATE(1577), + [sym__below_relational_expression] = STATE(2683), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym_if_null_expression] = STATE(1577), + [sym_conditional_expression] = STATE(1577), + [sym_logical_or_expression] = STATE(1577), + [sym_logical_and_expression] = STATE(1577), + [sym_equality_expression] = STATE(1577), + [sym_relational_expression] = STATE(1577), + [sym_bitwise_or_expression] = STATE(2162), + [sym_bitwise_xor_expression] = STATE(2162), + [sym_bitwise_and_expression] = STATE(2162), + [sym_shift_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_unary_expression] = STATE(2162), + [sym__postfix_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(2327), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [745] = { + [aux_sym__if_null_expression] = STATE(958), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(959), + [aux_sym_logical_and_expression_repeat1] = STATE(960), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), [ts_builtin_sym_end] = ACTIONS(584), [sym_identifier] = ACTIONS(586), [anon_sym_POUND] = ACTIONS(584), @@ -83482,35 +84534,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(586), [anon_sym_throw] = ACTIONS(586), [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [sym_equality_operator] = ACTIONS(584), + [anon_sym_QMARK_QMARK] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [sym_equality_operator] = ACTIONS(1959), [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_GT_GT_GT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_TILDE_SLASH] = ACTIONS(584), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), [sym_increment_operator] = ACTIONS(584), [anon_sym_BANG] = ACTIONS(586), [anon_sym_TILDE] = ACTIONS(586), [anon_sym_await] = ACTIONS(586), - [anon_sym_is] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_QMARK_DOT] = ACTIONS(584), [anon_sym_DOT_DOT] = ACTIONS(584), [anon_sym_assert] = ACTIONS(586), [anon_sym_switch] = ACTIONS(586), @@ -83541,5585 +84586,2713 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(586), [sym_comment] = ACTIONS(3), }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [sym_decimal_integer_literal] = ACTIONS(1136), - [sym_hex_integer_literal] = ACTIONS(1136), - [sym_octal_integer_literal] = ACTIONS(1134), - [sym_binary_integer_literal] = ACTIONS(1134), - [sym_decimal_floating_point_literal] = ACTIONS(1134), - [sym_hex_floating_point_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1134), - [anon_sym_r] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_null] = ACTIONS(1136), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_QMARK_QMARK] = ACTIONS(1134), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1134), - [sym_equality_operator] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_EQ] = ACTIONS(1134), - [anon_sym_LT_EQ] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_GT_GT_GT] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1136), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_TILDE_SLASH] = ACTIONS(1134), - [sym_increment_operator] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_is] = ACTIONS(1136), - [anon_sym_as] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1136), - [anon_sym_QMARK_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_assert] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_abstract] = ACTIONS(1136), - [anon_sym_class] = ACTIONS(1136), - [anon_sym_super] = ACTIONS(1136), - [anon_sym_void] = ACTIONS(1136), - [anon_sym_var] = ACTIONS(1136), - [anon_sym_covariant] = ACTIONS(1136), - [anon_sym_Function] = ACTIONS(1136), - [anon_sym_get] = ACTIONS(1136), - [anon_sym_set] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_final] = ACTIONS(1136), - [anon_sym_external] = ACTIONS(1136), - [anon_sym_this] = ACTIONS(1136), - [sym_comment] = ACTIONS(3), - }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1368), - [sym_decimal_integer_literal] = ACTIONS(1370), - [sym_hex_integer_literal] = ACTIONS(1370), - [sym_octal_integer_literal] = ACTIONS(1368), - [sym_binary_integer_literal] = ACTIONS(1368), - [sym_decimal_floating_point_literal] = ACTIONS(1368), - [sym_hex_floating_point_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1368), - [anon_sym_r] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_throw] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_QMARK_QMARK] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1368), - [sym_equality_operator] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1370), - [anon_sym_GT_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_TILDE_SLASH] = ACTIONS(1368), - [sym_increment_operator] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_await] = ACTIONS(1370), - [anon_sym_is] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_QMARK_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_yield] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(1370), - [anon_sym_class] = ACTIONS(1370), - [anon_sym_super] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_covariant] = ACTIONS(1370), - [anon_sym_Function] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_new] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_final] = ACTIONS(1370), - [anon_sym_external] = ACTIONS(1370), - [anon_sym_this] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [755] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [sym_decimal_integer_literal] = ACTIONS(1168), - [sym_hex_integer_literal] = ACTIONS(1168), - [sym_octal_integer_literal] = ACTIONS(1166), - [sym_binary_integer_literal] = ACTIONS(1166), - [sym_decimal_floating_point_literal] = ACTIONS(1166), - [sym_hex_floating_point_literal] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1166), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1166), - [anon_sym_r] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_throw] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_QMARK_QMARK] = ACTIONS(1166), - [anon_sym_QMARK] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1166), - [sym_equality_operator] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1166), - [anon_sym_LT_EQ] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_LT_LT] = ACTIONS(1166), - [anon_sym_GT_GT] = ACTIONS(1168), - [anon_sym_GT_GT_GT] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1166), - [anon_sym_TILDE_SLASH] = ACTIONS(1166), - [sym_increment_operator] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1168), - [anon_sym_await] = ACTIONS(1168), - [anon_sym_is] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1168), - [anon_sym_DOT] = ACTIONS(1168), - [anon_sym_QMARK_DOT] = ACTIONS(1166), - [anon_sym_DOT_DOT] = ACTIONS(1166), - [anon_sym_assert] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_yield] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_AT] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_abstract] = ACTIONS(1168), - [anon_sym_class] = ACTIONS(1168), - [anon_sym_super] = ACTIONS(1168), - [anon_sym_void] = ACTIONS(1168), - [anon_sym_var] = ACTIONS(1168), - [anon_sym_covariant] = ACTIONS(1168), - [anon_sym_Function] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_new] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_final] = ACTIONS(1168), - [anon_sym_external] = ACTIONS(1168), - [anon_sym_this] = ACTIONS(1168), - [sym_comment] = ACTIONS(3), - }, - [756] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [sym_decimal_integer_literal] = ACTIONS(1208), - [sym_hex_integer_literal] = ACTIONS(1208), - [sym_octal_integer_literal] = ACTIONS(1206), - [sym_binary_integer_literal] = ACTIONS(1206), - [sym_decimal_floating_point_literal] = ACTIONS(1206), - [sym_hex_floating_point_literal] = ACTIONS(1208), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1206), - [anon_sym_r] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_null] = ACTIONS(1208), - [anon_sym_throw] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_QMARK_QMARK] = ACTIONS(1213), - [anon_sym_QMARK] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1213), - [anon_sym_AMP_AMP] = ACTIONS(1213), - [sym_equality_operator] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_CARET] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_LT_LT] = ACTIONS(1213), - [anon_sym_GT_GT] = ACTIONS(1210), - [anon_sym_GT_GT_GT] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1210), - [anon_sym_PERCENT] = ACTIONS(1213), - [anon_sym_TILDE_SLASH] = ACTIONS(1213), - [sym_increment_operator] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_await] = ACTIONS(1208), - [anon_sym_is] = ACTIONS(1208), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_QMARK_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_AT] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_abstract] = ACTIONS(1208), - [anon_sym_class] = ACTIONS(1208), - [anon_sym_super] = ACTIONS(1208), - [anon_sym_void] = ACTIONS(1208), - [anon_sym_var] = ACTIONS(1208), - [anon_sym_covariant] = ACTIONS(1208), - [anon_sym_Function] = ACTIONS(1208), - [anon_sym_get] = ACTIONS(1208), - [anon_sym_set] = ACTIONS(1208), - [anon_sym_new] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_final] = ACTIONS(1208), - [anon_sym_external] = ACTIONS(1208), - [anon_sym_this] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_identifier] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1131), - [sym_decimal_integer_literal] = ACTIONS(1128), - [sym_hex_integer_literal] = ACTIONS(1128), - [sym_octal_integer_literal] = ACTIONS(1131), - [sym_binary_integer_literal] = ACTIONS(1131), - [sym_decimal_floating_point_literal] = ACTIONS(1131), - [sym_hex_floating_point_literal] = ACTIONS(1128), - [anon_sym_true] = ACTIONS(1128), - [anon_sym_false] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1131), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1131), - [anon_sym_r] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1131), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_throw] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_QMARK_QMARK] = ACTIONS(1131), - [anon_sym_QMARK] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1131), - [anon_sym_AMP_AMP] = ACTIONS(1131), - [sym_equality_operator] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1131), - [anon_sym_LT_EQ] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1131), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_GT_GT_GT] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_TILDE_SLASH] = ACTIONS(1131), - [sym_increment_operator] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_await] = ACTIONS(1128), - [anon_sym_is] = ACTIONS(1128), - [anon_sym_as] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1128), - [anon_sym_QMARK_DOT] = ACTIONS(1131), - [anon_sym_DOT_DOT] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_yield] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_try] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_AT] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_abstract] = ACTIONS(1128), - [anon_sym_class] = ACTIONS(1128), - [anon_sym_super] = ACTIONS(1128), - [anon_sym_void] = ACTIONS(1128), - [anon_sym_var] = ACTIONS(1128), - [anon_sym_covariant] = ACTIONS(1128), - [anon_sym_Function] = ACTIONS(1128), - [anon_sym_get] = ACTIONS(1128), - [anon_sym_set] = ACTIONS(1128), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_final] = ACTIONS(1128), - [anon_sym_external] = ACTIONS(1128), - [anon_sym_this] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1467), - [sym_decimal_integer_literal] = ACTIONS(1469), - [sym_hex_integer_literal] = ACTIONS(1469), - [sym_octal_integer_literal] = ACTIONS(1467), - [sym_binary_integer_literal] = ACTIONS(1467), - [sym_decimal_floating_point_literal] = ACTIONS(1467), - [sym_hex_floating_point_literal] = ACTIONS(1469), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1467), - [anon_sym_r] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1469), - [anon_sym_throw] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [sym_equality_operator] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_GT_EQ] = ACTIONS(1213), - [anon_sym_LT_EQ] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_GT_GT_GT] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_TILDE_SLASH] = ACTIONS(1467), - [sym_increment_operator] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1469), - [anon_sym_is] = ACTIONS(1210), - [anon_sym_as] = ACTIONS(1210), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_QMARK_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_try] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_abstract] = ACTIONS(1469), - [anon_sym_class] = ACTIONS(1469), - [anon_sym_super] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1469), - [anon_sym_var] = ACTIONS(1469), - [anon_sym_covariant] = ACTIONS(1469), - [anon_sym_Function] = ACTIONS(1469), - [anon_sym_get] = ACTIONS(1469), - [anon_sym_set] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_final] = ACTIONS(1469), - [anon_sym_external] = ACTIONS(1469), - [anon_sym_this] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_QMARK_QMARK] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - }, - [760] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_QMARK_QMARK] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1184), - [anon_sym_QMARK_DOT] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [anon_sym_POUND] = ACTIONS(1268), - [sym_decimal_integer_literal] = ACTIONS(1270), - [sym_hex_integer_literal] = ACTIONS(1270), - [sym_octal_integer_literal] = ACTIONS(1268), - [sym_binary_integer_literal] = ACTIONS(1268), - [sym_decimal_floating_point_literal] = ACTIONS(1268), - [sym_hex_floating_point_literal] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1268), - [anon_sym_r] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_null] = ACTIONS(1270), - [anon_sym_throw] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [sym_equality_operator] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_TILDE_SLASH] = ACTIONS(1268), - [sym_increment_operator] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_is] = ACTIONS(1270), - [anon_sym_as] = ACTIONS(1270), - [anon_sym_DOT] = ACTIONS(1270), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1268), - [anon_sym_assert] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_try] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_abstract] = ACTIONS(1270), - [anon_sym_class] = ACTIONS(1270), - [anon_sym_super] = ACTIONS(1270), - [anon_sym_void] = ACTIONS(1270), - [anon_sym_var] = ACTIONS(1270), - [anon_sym_covariant] = ACTIONS(1270), - [anon_sym_Function] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_new] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_final] = ACTIONS(1270), - [anon_sym_external] = ACTIONS(1270), - [anon_sym_this] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1189), - [anon_sym_QMARK_DOT] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - }, - [763] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [sym_decimal_integer_literal] = ACTIONS(1398), - [sym_hex_integer_literal] = ACTIONS(1398), - [sym_octal_integer_literal] = ACTIONS(1396), - [sym_binary_integer_literal] = ACTIONS(1396), - [sym_decimal_floating_point_literal] = ACTIONS(1396), - [sym_hex_floating_point_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1396), - [anon_sym_r] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_throw] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1396), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [sym_equality_operator] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_GT_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_TILDE_SLASH] = ACTIONS(1396), - [sym_increment_operator] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_await] = ACTIONS(1398), - [anon_sym_is] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_QMARK_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_abstract] = ACTIONS(1398), - [anon_sym_class] = ACTIONS(1398), - [anon_sym_super] = ACTIONS(1398), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_covariant] = ACTIONS(1398), - [anon_sym_Function] = ACTIONS(1398), - [anon_sym_get] = ACTIONS(1398), - [anon_sym_set] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_final] = ACTIONS(1398), - [anon_sym_external] = ACTIONS(1398), - [anon_sym_this] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1459), - [sym_decimal_integer_literal] = ACTIONS(1461), - [sym_hex_integer_literal] = ACTIONS(1461), - [sym_octal_integer_literal] = ACTIONS(1459), - [sym_binary_integer_literal] = ACTIONS(1459), - [sym_decimal_floating_point_literal] = ACTIONS(1459), - [sym_hex_floating_point_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1459), - [anon_sym_r] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_COMMA] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1461), - [anon_sym_throw] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_QMARK_QMARK] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [sym_equality_operator] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_GT_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_TILDE_SLASH] = ACTIONS(1459), - [sym_increment_operator] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_await] = ACTIONS(1461), - [anon_sym_is] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_AT] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_abstract] = ACTIONS(1461), - [anon_sym_class] = ACTIONS(1461), - [anon_sym_super] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1461), - [anon_sym_var] = ACTIONS(1461), - [anon_sym_covariant] = ACTIONS(1461), - [anon_sym_Function] = ACTIONS(1461), - [anon_sym_get] = ACTIONS(1461), - [anon_sym_set] = ACTIONS(1461), - [anon_sym_new] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_final] = ACTIONS(1461), - [anon_sym_external] = ACTIONS(1461), - [anon_sym_this] = ACTIONS(1461), - [sym_comment] = ACTIONS(3), - }, - [765] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [sym_decimal_integer_literal] = ACTIONS(1176), - [sym_hex_integer_literal] = ACTIONS(1176), - [sym_octal_integer_literal] = ACTIONS(1174), - [sym_binary_integer_literal] = ACTIONS(1174), - [sym_decimal_floating_point_literal] = ACTIONS(1174), - [sym_hex_floating_point_literal] = ACTIONS(1176), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1174), - [anon_sym_r] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1176), - [anon_sym_throw] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_QMARK_QMARK] = ACTIONS(1174), - [anon_sym_QMARK] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), - [anon_sym_AMP_AMP] = ACTIONS(1174), - [sym_equality_operator] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_GT] = ACTIONS(1176), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_CARET] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_LT_LT] = ACTIONS(1174), - [anon_sym_GT_GT] = ACTIONS(1176), - [anon_sym_GT_GT_GT] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_PERCENT] = ACTIONS(1174), - [anon_sym_TILDE_SLASH] = ACTIONS(1174), - [sym_increment_operator] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_await] = ACTIONS(1176), - [anon_sym_is] = ACTIONS(1176), - [anon_sym_as] = ACTIONS(1176), - [anon_sym_DOT] = ACTIONS(1176), - [anon_sym_QMARK_DOT] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_assert] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_yield] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_abstract] = ACTIONS(1176), - [anon_sym_class] = ACTIONS(1176), - [anon_sym_super] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1176), - [anon_sym_var] = ACTIONS(1176), - [anon_sym_covariant] = ACTIONS(1176), - [anon_sym_Function] = ACTIONS(1176), - [anon_sym_get] = ACTIONS(1176), - [anon_sym_set] = ACTIONS(1176), - [anon_sym_new] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_final] = ACTIONS(1176), - [anon_sym_external] = ACTIONS(1176), - [anon_sym_this] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - }, - [766] = { - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1192), - [sym_decimal_integer_literal] = ACTIONS(1194), - [sym_hex_integer_literal] = ACTIONS(1194), - [sym_octal_integer_literal] = ACTIONS(1192), - [sym_binary_integer_literal] = ACTIONS(1192), - [sym_decimal_floating_point_literal] = ACTIONS(1192), - [sym_hex_floating_point_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1192), - [anon_sym_r] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_throw] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_QMARK_QMARK] = ACTIONS(1192), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [sym_equality_operator] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_GT_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_TILDE_SLASH] = ACTIONS(1192), - [sym_increment_operator] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_await] = ACTIONS(1194), - [anon_sym_is] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_QMARK_DOT] = ACTIONS(1192), - [anon_sym_DOT_DOT] = ACTIONS(1192), - [anon_sym_assert] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_abstract] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(1194), - [anon_sym_super] = ACTIONS(1194), - [anon_sym_void] = ACTIONS(1194), - [anon_sym_var] = ACTIONS(1194), - [anon_sym_covariant] = ACTIONS(1194), - [anon_sym_Function] = ACTIONS(1194), - [anon_sym_get] = ACTIONS(1194), - [anon_sym_set] = ACTIONS(1194), - [anon_sym_new] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_final] = ACTIONS(1194), - [anon_sym_external] = ACTIONS(1194), - [anon_sym_this] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - }, - [767] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1483), - [sym_decimal_integer_literal] = ACTIONS(1485), - [sym_hex_integer_literal] = ACTIONS(1485), - [sym_octal_integer_literal] = ACTIONS(1483), - [sym_binary_integer_literal] = ACTIONS(1483), - [sym_decimal_floating_point_literal] = ACTIONS(1483), - [sym_hex_floating_point_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1483), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1483), - [anon_sym_r] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_throw] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_QMARK_QMARK] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [sym_equality_operator] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_GT_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_TILDE_SLASH] = ACTIONS(1483), - [sym_increment_operator] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_await] = ACTIONS(1485), - [anon_sym_is] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_QMARK_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1485), - [anon_sym_switch] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_abstract] = ACTIONS(1485), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_super] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1485), - [anon_sym_var] = ACTIONS(1485), - [anon_sym_covariant] = ACTIONS(1485), - [anon_sym_Function] = ACTIONS(1485), - [anon_sym_get] = ACTIONS(1485), - [anon_sym_set] = ACTIONS(1485), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_final] = ACTIONS(1485), - [anon_sym_external] = ACTIONS(1485), - [anon_sym_this] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - }, - [768] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1182), - [sym_decimal_integer_literal] = ACTIONS(1184), - [sym_hex_integer_literal] = ACTIONS(1184), - [sym_octal_integer_literal] = ACTIONS(1182), - [sym_binary_integer_literal] = ACTIONS(1182), - [sym_decimal_floating_point_literal] = ACTIONS(1182), - [sym_hex_floating_point_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1182), - [anon_sym_r] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_throw] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_QMARK_QMARK] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [sym_equality_operator] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_GT_GT_GT] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_TILDE_SLASH] = ACTIONS(1182), - [sym_increment_operator] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_await] = ACTIONS(1184), - [anon_sym_is] = ACTIONS(1184), - [anon_sym_as] = ACTIONS(1184), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_QMARK_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_assert] = ACTIONS(1184), - [anon_sym_switch] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_super] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1184), - [anon_sym_var] = ACTIONS(1184), - [anon_sym_covariant] = ACTIONS(1184), - [anon_sym_Function] = ACTIONS(1184), - [anon_sym_get] = ACTIONS(1184), - [anon_sym_set] = ACTIONS(1184), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_external] = ACTIONS(1184), - [anon_sym_this] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - }, - [769] = { - [sym_multiplicative_operator] = STATE(637), - [aux_sym_multiplicative_expression_repeat1] = STATE(820), - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_identifier] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1023), - [sym_decimal_integer_literal] = ACTIONS(1025), - [sym_hex_integer_literal] = ACTIONS(1025), - [sym_octal_integer_literal] = ACTIONS(1023), - [sym_binary_integer_literal] = ACTIONS(1023), - [sym_decimal_floating_point_literal] = ACTIONS(1023), - [sym_hex_floating_point_literal] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1023), - [anon_sym_r] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1025), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_QMARK_QMARK] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [sym_equality_operator] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_GT_GT_GT] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_TILDE_SLASH] = ACTIONS(1023), - [sym_increment_operator] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_is] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_assert] = ACTIONS(1025), - [anon_sym_switch] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_abstract] = ACTIONS(1025), - [anon_sym_class] = ACTIONS(1025), - [anon_sym_super] = ACTIONS(1025), - [anon_sym_void] = ACTIONS(1025), - [anon_sym_var] = ACTIONS(1025), - [anon_sym_covariant] = ACTIONS(1025), - [anon_sym_Function] = ACTIONS(1025), - [anon_sym_get] = ACTIONS(1025), - [anon_sym_set] = ACTIONS(1025), - [anon_sym_new] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_final] = ACTIONS(1025), - [anon_sym_external] = ACTIONS(1025), - [anon_sym_this] = ACTIONS(1025), - [sym_comment] = ACTIONS(3), - }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_identifier] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(1142), - [sym_decimal_integer_literal] = ACTIONS(1144), - [sym_hex_integer_literal] = ACTIONS(1144), - [sym_octal_integer_literal] = ACTIONS(1142), - [sym_binary_integer_literal] = ACTIONS(1142), - [sym_decimal_floating_point_literal] = ACTIONS(1142), - [sym_hex_floating_point_literal] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1144), - [anon_sym_false] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1144), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1142), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1142), - [anon_sym_r] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_COMMA] = ACTIONS(1142), - [anon_sym_null] = ACTIONS(1144), - [anon_sym_throw] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_QMARK_QMARK] = ACTIONS(1142), - [anon_sym_QMARK] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1142), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [sym_equality_operator] = ACTIONS(1142), - [anon_sym_LT] = ACTIONS(1144), - [anon_sym_GT] = ACTIONS(1144), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_LT_LT] = ACTIONS(1142), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_GT_GT_GT] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PERCENT] = ACTIONS(1142), - [anon_sym_TILDE_SLASH] = ACTIONS(1142), - [sym_increment_operator] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1144), - [anon_sym_await] = ACTIONS(1144), - [anon_sym_is] = ACTIONS(1144), - [anon_sym_as] = ACTIONS(1144), - [anon_sym_DOT] = ACTIONS(1144), - [anon_sym_QMARK_DOT] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1142), - [anon_sym_assert] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_try] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_abstract] = ACTIONS(1144), - [anon_sym_class] = ACTIONS(1144), - [anon_sym_super] = ACTIONS(1144), - [anon_sym_void] = ACTIONS(1144), - [anon_sym_var] = ACTIONS(1144), - [anon_sym_covariant] = ACTIONS(1144), - [anon_sym_Function] = ACTIONS(1144), - [anon_sym_get] = ACTIONS(1144), - [anon_sym_set] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_final] = ACTIONS(1144), - [anon_sym_external] = ACTIONS(1144), - [anon_sym_this] = ACTIONS(1144), - [sym_comment] = ACTIONS(3), - }, - [771] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(1300), - [sym_decimal_integer_literal] = ACTIONS(1302), - [sym_hex_integer_literal] = ACTIONS(1302), - [sym_octal_integer_literal] = ACTIONS(1300), - [sym_binary_integer_literal] = ACTIONS(1300), - [sym_decimal_floating_point_literal] = ACTIONS(1300), - [sym_hex_floating_point_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1300), - [anon_sym_r] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_throw] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_QMARK_QMARK] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1302), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [sym_equality_operator] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_LT_LT] = ACTIONS(1300), - [anon_sym_GT_GT] = ACTIONS(1302), - [anon_sym_GT_GT_GT] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1300), - [anon_sym_TILDE_SLASH] = ACTIONS(1300), - [sym_increment_operator] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_await] = ACTIONS(1302), - [anon_sym_is] = ACTIONS(1302), - [anon_sym_as] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_QMARK_DOT] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_assert] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_abstract] = ACTIONS(1302), - [anon_sym_class] = ACTIONS(1302), - [anon_sym_super] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1302), - [anon_sym_var] = ACTIONS(1302), - [anon_sym_covariant] = ACTIONS(1302), - [anon_sym_Function] = ACTIONS(1302), - [anon_sym_get] = ACTIONS(1302), - [anon_sym_set] = ACTIONS(1302), - [anon_sym_new] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_final] = ACTIONS(1302), - [anon_sym_external] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, - [772] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(1284), - [sym_decimal_integer_literal] = ACTIONS(1286), - [sym_hex_integer_literal] = ACTIONS(1286), - [sym_octal_integer_literal] = ACTIONS(1284), - [sym_binary_integer_literal] = ACTIONS(1284), - [sym_decimal_floating_point_literal] = ACTIONS(1284), - [sym_hex_floating_point_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1284), - [anon_sym_r] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_throw] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_QMARK_QMARK] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [sym_equality_operator] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1286), - [anon_sym_GT_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_TILDE_SLASH] = ACTIONS(1284), - [sym_increment_operator] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_await] = ACTIONS(1286), - [anon_sym_is] = ACTIONS(1286), - [anon_sym_as] = ACTIONS(1286), - [anon_sym_DOT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(1284), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_assert] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_AT] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_abstract] = ACTIONS(1286), - [anon_sym_class] = ACTIONS(1286), - [anon_sym_super] = ACTIONS(1286), - [anon_sym_void] = ACTIONS(1286), - [anon_sym_var] = ACTIONS(1286), - [anon_sym_covariant] = ACTIONS(1286), - [anon_sym_Function] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_new] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_final] = ACTIONS(1286), - [anon_sym_external] = ACTIONS(1286), - [anon_sym_this] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [sym_decimal_integer_literal] = ACTIONS(1204), - [sym_hex_integer_literal] = ACTIONS(1204), - [sym_octal_integer_literal] = ACTIONS(1202), - [sym_binary_integer_literal] = ACTIONS(1202), - [sym_decimal_floating_point_literal] = ACTIONS(1202), - [sym_hex_floating_point_literal] = ACTIONS(1204), - [anon_sym_true] = ACTIONS(1204), - [anon_sym_false] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1204), - [anon_sym_SQUOTE] = ACTIONS(1204), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1202), - [anon_sym_r] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_COMMA] = ACTIONS(1202), - [anon_sym_null] = ACTIONS(1204), - [anon_sym_throw] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_QMARK_QMARK] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(1204), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_AMP_AMP] = ACTIONS(1202), - [sym_equality_operator] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_GT] = ACTIONS(1204), - [anon_sym_GT_EQ] = ACTIONS(1202), - [anon_sym_LT_EQ] = ACTIONS(1202), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_CARET] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_LT_LT] = ACTIONS(1202), - [anon_sym_GT_GT] = ACTIONS(1204), - [anon_sym_GT_GT_GT] = ACTIONS(1202), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(1204), - [anon_sym_PERCENT] = ACTIONS(1202), - [anon_sym_TILDE_SLASH] = ACTIONS(1202), - [sym_increment_operator] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1204), - [anon_sym_await] = ACTIONS(1204), - [anon_sym_is] = ACTIONS(1204), - [anon_sym_as] = ACTIONS(1204), - [anon_sym_DOT] = ACTIONS(1204), - [anon_sym_QMARK_DOT] = ACTIONS(1202), - [anon_sym_DOT_DOT] = ACTIONS(1202), - [anon_sym_assert] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_yield] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_try] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_AT] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_abstract] = ACTIONS(1204), - [anon_sym_class] = ACTIONS(1204), - [anon_sym_super] = ACTIONS(1204), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_var] = ACTIONS(1204), - [anon_sym_covariant] = ACTIONS(1204), - [anon_sym_Function] = ACTIONS(1204), - [anon_sym_get] = ACTIONS(1204), - [anon_sym_set] = ACTIONS(1204), - [anon_sym_new] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_final] = ACTIONS(1204), - [anon_sym_external] = ACTIONS(1204), - [anon_sym_this] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1240), - [sym_decimal_integer_literal] = ACTIONS(1242), - [sym_hex_integer_literal] = ACTIONS(1242), - [sym_octal_integer_literal] = ACTIONS(1240), - [sym_binary_integer_literal] = ACTIONS(1240), - [sym_decimal_floating_point_literal] = ACTIONS(1240), - [sym_hex_floating_point_literal] = ACTIONS(1242), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1240), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1240), - [anon_sym_r] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [anon_sym_null] = ACTIONS(1242), - [anon_sym_throw] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_QMARK_QMARK] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [sym_equality_operator] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1240), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_GT_GT_GT] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_TILDE_SLASH] = ACTIONS(1240), - [sym_increment_operator] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_await] = ACTIONS(1242), - [anon_sym_is] = ACTIONS(1242), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_QMARK_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_assert] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_abstract] = ACTIONS(1242), - [anon_sym_class] = ACTIONS(1242), - [anon_sym_super] = ACTIONS(1242), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_var] = ACTIONS(1242), - [anon_sym_covariant] = ACTIONS(1242), - [anon_sym_Function] = ACTIONS(1242), - [anon_sym_get] = ACTIONS(1242), - [anon_sym_set] = ACTIONS(1242), - [anon_sym_new] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_final] = ACTIONS(1242), - [anon_sym_external] = ACTIONS(1242), - [anon_sym_this] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [sym_decimal_integer_literal] = ACTIONS(1180), - [sym_hex_integer_literal] = ACTIONS(1180), - [sym_octal_integer_literal] = ACTIONS(1178), - [sym_binary_integer_literal] = ACTIONS(1178), - [sym_decimal_floating_point_literal] = ACTIONS(1178), - [sym_hex_floating_point_literal] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1178), - [anon_sym_r] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_null] = ACTIONS(1180), - [anon_sym_throw] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_QMARK_QMARK] = ACTIONS(1178), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [sym_equality_operator] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_GT_GT_GT] = ACTIONS(1178), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PERCENT] = ACTIONS(1178), - [anon_sym_TILDE_SLASH] = ACTIONS(1178), - [sym_increment_operator] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_await] = ACTIONS(1180), - [anon_sym_is] = ACTIONS(1180), - [anon_sym_as] = ACTIONS(1180), - [anon_sym_DOT] = ACTIONS(1180), - [anon_sym_QMARK_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_assert] = ACTIONS(1180), - [anon_sym_switch] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_try] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_AT] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_abstract] = ACTIONS(1180), - [anon_sym_class] = ACTIONS(1180), - [anon_sym_super] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1180), - [anon_sym_var] = ACTIONS(1180), - [anon_sym_covariant] = ACTIONS(1180), - [anon_sym_Function] = ACTIONS(1180), - [anon_sym_get] = ACTIONS(1180), - [anon_sym_set] = ACTIONS(1180), - [anon_sym_new] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_final] = ACTIONS(1180), - [anon_sym_external] = ACTIONS(1180), - [anon_sym_this] = ACTIONS(1180), - [sym_comment] = ACTIONS(3), - }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(1220), - [sym_decimal_integer_literal] = ACTIONS(1222), - [sym_hex_integer_literal] = ACTIONS(1222), - [sym_octal_integer_literal] = ACTIONS(1220), - [sym_binary_integer_literal] = ACTIONS(1220), - [sym_decimal_floating_point_literal] = ACTIONS(1220), - [sym_hex_floating_point_literal] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1220), - [anon_sym_r] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_throw] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_QMARK_QMARK] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [sym_equality_operator] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1220), - [anon_sym_TILDE_SLASH] = ACTIONS(1220), - [sym_increment_operator] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_await] = ACTIONS(1222), - [anon_sym_is] = ACTIONS(1222), - [anon_sym_as] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_QMARK_DOT] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_abstract] = ACTIONS(1222), - [anon_sym_class] = ACTIONS(1222), - [anon_sym_super] = ACTIONS(1222), - [anon_sym_void] = ACTIONS(1222), - [anon_sym_var] = ACTIONS(1222), - [anon_sym_covariant] = ACTIONS(1222), - [anon_sym_Function] = ACTIONS(1222), - [anon_sym_get] = ACTIONS(1222), - [anon_sym_set] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_final] = ACTIONS(1222), - [anon_sym_external] = ACTIONS(1222), - [anon_sym_this] = ACTIONS(1222), - [sym_comment] = ACTIONS(3), - }, - [777] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1280), - [sym_decimal_integer_literal] = ACTIONS(1282), - [sym_hex_integer_literal] = ACTIONS(1282), - [sym_octal_integer_literal] = ACTIONS(1280), - [sym_binary_integer_literal] = ACTIONS(1280), - [sym_decimal_floating_point_literal] = ACTIONS(1280), - [sym_hex_floating_point_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1280), - [anon_sym_r] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_throw] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_QMARK_QMARK] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [sym_equality_operator] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1282), - [anon_sym_GT_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_TILDE_SLASH] = ACTIONS(1280), - [sym_increment_operator] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_is] = ACTIONS(1282), - [anon_sym_as] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_QMARK_DOT] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_assert] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_abstract] = ACTIONS(1282), - [anon_sym_class] = ACTIONS(1282), - [anon_sym_super] = ACTIONS(1282), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_var] = ACTIONS(1282), - [anon_sym_covariant] = ACTIONS(1282), - [anon_sym_Function] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_final] = ACTIONS(1282), - [anon_sym_external] = ACTIONS(1282), - [anon_sym_this] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - }, - [778] = { - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [anon_sym_POUND] = ACTIONS(1124), - [sym_decimal_integer_literal] = ACTIONS(1126), - [sym_hex_integer_literal] = ACTIONS(1126), - [sym_octal_integer_literal] = ACTIONS(1124), - [sym_binary_integer_literal] = ACTIONS(1124), - [sym_decimal_floating_point_literal] = ACTIONS(1124), - [sym_hex_floating_point_literal] = ACTIONS(1126), - [anon_sym_true] = ACTIONS(1126), - [anon_sym_false] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1124), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1124), - [anon_sym_r] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1126), - [anon_sym_throw] = ACTIONS(1126), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_QMARK_QMARK] = ACTIONS(1124), - [anon_sym_QMARK] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1124), - [anon_sym_AMP_AMP] = ACTIONS(1124), - [sym_equality_operator] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_GT_EQ] = ACTIONS(1124), - [anon_sym_LT_EQ] = ACTIONS(1124), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1126), - [anon_sym_GT_GT_GT] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_SLASH] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_TILDE_SLASH] = ACTIONS(1124), - [sym_increment_operator] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_await] = ACTIONS(1126), - [anon_sym_is] = ACTIONS(1126), - [anon_sym_as] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_QMARK_DOT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1124), - [anon_sym_assert] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1126), - [anon_sym_do] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_abstract] = ACTIONS(1126), - [anon_sym_class] = ACTIONS(1126), - [anon_sym_super] = ACTIONS(1126), - [anon_sym_void] = ACTIONS(1126), - [anon_sym_var] = ACTIONS(1126), - [anon_sym_covariant] = ACTIONS(1126), - [anon_sym_Function] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_new] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_final] = ACTIONS(1126), - [anon_sym_external] = ACTIONS(1126), - [anon_sym_this] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [anon_sym_POUND] = ACTIONS(1260), - [sym_decimal_integer_literal] = ACTIONS(1262), - [sym_hex_integer_literal] = ACTIONS(1262), - [sym_octal_integer_literal] = ACTIONS(1260), - [sym_binary_integer_literal] = ACTIONS(1260), - [sym_decimal_floating_point_literal] = ACTIONS(1260), - [sym_hex_floating_point_literal] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1260), - [anon_sym_r] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_COMMA] = ACTIONS(1260), - [anon_sym_null] = ACTIONS(1262), - [anon_sym_throw] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_QMARK_QMARK] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [sym_equality_operator] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1262), - [anon_sym_GT_GT_GT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_SLASH] = ACTIONS(1262), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_TILDE_SLASH] = ACTIONS(1260), - [sym_increment_operator] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_await] = ACTIONS(1262), - [anon_sym_is] = ACTIONS(1262), - [anon_sym_as] = ACTIONS(1262), - [anon_sym_DOT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(1260), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_assert] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_yield] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_try] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_abstract] = ACTIONS(1262), - [anon_sym_class] = ACTIONS(1262), - [anon_sym_super] = ACTIONS(1262), - [anon_sym_void] = ACTIONS(1262), - [anon_sym_var] = ACTIONS(1262), - [anon_sym_covariant] = ACTIONS(1262), - [anon_sym_Function] = ACTIONS(1262), - [anon_sym_get] = ACTIONS(1262), - [anon_sym_set] = ACTIONS(1262), - [anon_sym_new] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_final] = ACTIONS(1262), - [anon_sym_external] = ACTIONS(1262), - [anon_sym_this] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [sym_decimal_integer_literal] = ACTIONS(1140), - [sym_hex_integer_literal] = ACTIONS(1140), - [sym_octal_integer_literal] = ACTIONS(1138), - [sym_binary_integer_literal] = ACTIONS(1138), - [sym_decimal_floating_point_literal] = ACTIONS(1138), - [sym_hex_floating_point_literal] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1138), - [anon_sym_r] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_COMMA] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(1140), - [anon_sym_throw] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_QMARK_QMARK] = ACTIONS(1138), - [anon_sym_QMARK] = ACTIONS(1140), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [sym_equality_operator] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_GT_EQ] = ACTIONS(1138), - [anon_sym_LT_EQ] = ACTIONS(1138), - [anon_sym_PIPE] = ACTIONS(1140), - [anon_sym_CARET] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_LT_LT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1140), - [anon_sym_GT_GT_GT] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(1140), - [anon_sym_PERCENT] = ACTIONS(1138), - [anon_sym_TILDE_SLASH] = ACTIONS(1138), - [sym_increment_operator] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_await] = ACTIONS(1140), - [anon_sym_is] = ACTIONS(1140), - [anon_sym_as] = ACTIONS(1140), - [anon_sym_DOT] = ACTIONS(1140), - [anon_sym_QMARK_DOT] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1138), - [anon_sym_assert] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_try] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_super] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1140), - [anon_sym_var] = ACTIONS(1140), - [anon_sym_covariant] = ACTIONS(1140), - [anon_sym_Function] = ACTIONS(1140), - [anon_sym_get] = ACTIONS(1140), - [anon_sym_set] = ACTIONS(1140), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_external] = ACTIONS(1140), - [anon_sym_this] = ACTIONS(1140), - [sym_comment] = ACTIONS(3), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [anon_sym_POUND] = ACTIONS(1264), - [sym_decimal_integer_literal] = ACTIONS(1266), - [sym_hex_integer_literal] = ACTIONS(1266), - [sym_octal_integer_literal] = ACTIONS(1264), - [sym_binary_integer_literal] = ACTIONS(1264), - [sym_decimal_floating_point_literal] = ACTIONS(1264), - [sym_hex_floating_point_literal] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1264), - [anon_sym_r] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_null] = ACTIONS(1266), - [anon_sym_throw] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_QMARK_QMARK] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [sym_equality_operator] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1266), - [anon_sym_GT_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1266), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_TILDE_SLASH] = ACTIONS(1264), - [sym_increment_operator] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_await] = ACTIONS(1266), - [anon_sym_is] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(1266), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_QMARK_DOT] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_assert] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_yield] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_try] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_abstract] = ACTIONS(1266), - [anon_sym_class] = ACTIONS(1266), - [anon_sym_super] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1266), - [anon_sym_var] = ACTIONS(1266), - [anon_sym_covariant] = ACTIONS(1266), - [anon_sym_Function] = ACTIONS(1266), - [anon_sym_get] = ACTIONS(1266), - [anon_sym_set] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_final] = ACTIONS(1266), - [anon_sym_external] = ACTIONS(1266), - [anon_sym_this] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_POUND] = ACTIONS(1232), - [sym_decimal_integer_literal] = ACTIONS(1234), - [sym_hex_integer_literal] = ACTIONS(1234), - [sym_octal_integer_literal] = ACTIONS(1232), - [sym_binary_integer_literal] = ACTIONS(1232), - [sym_decimal_floating_point_literal] = ACTIONS(1232), - [sym_hex_floating_point_literal] = ACTIONS(1234), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1232), - [anon_sym_r] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_null] = ACTIONS(1234), - [anon_sym_throw] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_QMARK_QMARK] = ACTIONS(1232), - [anon_sym_QMARK] = ACTIONS(1234), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [sym_equality_operator] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_GT_GT_GT] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1232), - [anon_sym_TILDE_SLASH] = ACTIONS(1232), - [sym_increment_operator] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_await] = ACTIONS(1234), - [anon_sym_is] = ACTIONS(1234), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_assert] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_AT] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_abstract] = ACTIONS(1234), - [anon_sym_class] = ACTIONS(1234), - [anon_sym_super] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(1234), - [anon_sym_var] = ACTIONS(1234), - [anon_sym_covariant] = ACTIONS(1234), - [anon_sym_Function] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_final] = ACTIONS(1234), - [anon_sym_external] = ACTIONS(1234), - [anon_sym_this] = ACTIONS(1234), - [sym_comment] = ACTIONS(3), - }, - [783] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1334), - [anon_sym_POUND] = ACTIONS(1332), - [sym_decimal_integer_literal] = ACTIONS(1334), - [sym_hex_integer_literal] = ACTIONS(1334), - [sym_octal_integer_literal] = ACTIONS(1332), - [sym_binary_integer_literal] = ACTIONS(1332), - [sym_decimal_floating_point_literal] = ACTIONS(1332), - [sym_hex_floating_point_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1332), - [anon_sym_r] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_null] = ACTIONS(1334), - [anon_sym_throw] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_QMARK_QMARK] = ACTIONS(1332), - [anon_sym_QMARK] = ACTIONS(1334), - [anon_sym_PIPE_PIPE] = ACTIONS(1332), - [anon_sym_AMP_AMP] = ACTIONS(1332), - [sym_equality_operator] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_LT_LT] = ACTIONS(1332), - [anon_sym_GT_GT] = ACTIONS(1334), - [anon_sym_GT_GT_GT] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym_PERCENT] = ACTIONS(1332), - [anon_sym_TILDE_SLASH] = ACTIONS(1332), - [sym_increment_operator] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_await] = ACTIONS(1334), - [anon_sym_is] = ACTIONS(1334), - [anon_sym_as] = ACTIONS(1334), - [anon_sym_DOT] = ACTIONS(1334), - [anon_sym_QMARK_DOT] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_assert] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_try] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_AT] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_abstract] = ACTIONS(1334), - [anon_sym_class] = ACTIONS(1334), - [anon_sym_super] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1334), - [anon_sym_var] = ACTIONS(1334), - [anon_sym_covariant] = ACTIONS(1334), - [anon_sym_Function] = ACTIONS(1334), - [anon_sym_get] = ACTIONS(1334), - [anon_sym_set] = ACTIONS(1334), - [anon_sym_new] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_final] = ACTIONS(1334), - [anon_sym_external] = ACTIONS(1334), - [anon_sym_this] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [784] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [sym_decimal_integer_literal] = ACTIONS(1172), - [sym_hex_integer_literal] = ACTIONS(1172), - [sym_octal_integer_literal] = ACTIONS(1170), - [sym_binary_integer_literal] = ACTIONS(1170), - [sym_decimal_floating_point_literal] = ACTIONS(1170), - [sym_hex_floating_point_literal] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1170), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1170), - [anon_sym_r] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_COMMA] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_throw] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_QMARK_QMARK] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_PIPE_PIPE] = ACTIONS(1170), - [anon_sym_AMP_AMP] = ACTIONS(1170), - [sym_equality_operator] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1172), - [anon_sym_GT_GT_GT] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1172), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_TILDE_SLASH] = ACTIONS(1170), - [sym_increment_operator] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_TILDE] = ACTIONS(1172), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_is] = ACTIONS(1172), - [anon_sym_as] = ACTIONS(1172), - [anon_sym_DOT] = ACTIONS(1172), - [anon_sym_QMARK_DOT] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1170), - [anon_sym_assert] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_yield] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_abstract] = ACTIONS(1172), - [anon_sym_class] = ACTIONS(1172), - [anon_sym_super] = ACTIONS(1172), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_var] = ACTIONS(1172), - [anon_sym_covariant] = ACTIONS(1172), - [anon_sym_Function] = ACTIONS(1172), - [anon_sym_get] = ACTIONS(1172), - [anon_sym_set] = ACTIONS(1172), - [anon_sym_new] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_final] = ACTIONS(1172), - [anon_sym_external] = ACTIONS(1172), - [anon_sym_this] = ACTIONS(1172), - [sym_comment] = ACTIONS(3), - }, - [785] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [sym_decimal_integer_literal] = ACTIONS(1152), - [sym_hex_integer_literal] = ACTIONS(1152), - [sym_octal_integer_literal] = ACTIONS(1150), - [sym_binary_integer_literal] = ACTIONS(1150), - [sym_decimal_floating_point_literal] = ACTIONS(1150), - [sym_hex_floating_point_literal] = ACTIONS(1152), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1150), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1150), - [anon_sym_r] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1152), - [anon_sym_throw] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_QMARK_QMARK] = ACTIONS(1150), - [anon_sym_QMARK] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [sym_equality_operator] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_CARET] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_GT_GT_GT] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1152), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_TILDE_SLASH] = ACTIONS(1150), - [sym_increment_operator] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_await] = ACTIONS(1152), - [anon_sym_is] = ACTIONS(1152), - [anon_sym_as] = ACTIONS(1152), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_QMARK_DOT] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_assert] = ACTIONS(1152), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_class] = ACTIONS(1152), - [anon_sym_super] = ACTIONS(1152), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_var] = ACTIONS(1152), - [anon_sym_covariant] = ACTIONS(1152), - [anon_sym_Function] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_new] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_final] = ACTIONS(1152), - [anon_sym_external] = ACTIONS(1152), - [anon_sym_this] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - }, - [786] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [sym_decimal_integer_literal] = ACTIONS(1156), - [sym_hex_integer_literal] = ACTIONS(1156), - [sym_octal_integer_literal] = ACTIONS(1154), - [sym_binary_integer_literal] = ACTIONS(1154), - [sym_decimal_floating_point_literal] = ACTIONS(1154), - [sym_hex_floating_point_literal] = ACTIONS(1156), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1154), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1154), - [anon_sym_r] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_throw] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_QMARK_QMARK] = ACTIONS(1154), - [anon_sym_QMARK] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1154), - [anon_sym_AMP_AMP] = ACTIONS(1154), - [sym_equality_operator] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_GT_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1156), - [anon_sym_PERCENT] = ACTIONS(1154), - [anon_sym_TILDE_SLASH] = ACTIONS(1154), - [sym_increment_operator] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_is] = ACTIONS(1156), - [anon_sym_as] = ACTIONS(1156), - [anon_sym_DOT] = ACTIONS(1156), - [anon_sym_QMARK_DOT] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_assert] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_AT] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_abstract] = ACTIONS(1156), - [anon_sym_class] = ACTIONS(1156), - [anon_sym_super] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_var] = ACTIONS(1156), - [anon_sym_covariant] = ACTIONS(1156), - [anon_sym_Function] = ACTIONS(1156), - [anon_sym_get] = ACTIONS(1156), - [anon_sym_set] = ACTIONS(1156), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_final] = ACTIONS(1156), - [anon_sym_external] = ACTIONS(1156), - [anon_sym_this] = ACTIONS(1156), - [sym_comment] = ACTIONS(3), - }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [sym_decimal_integer_literal] = ACTIONS(1160), - [sym_hex_integer_literal] = ACTIONS(1160), - [sym_octal_integer_literal] = ACTIONS(1158), - [sym_binary_integer_literal] = ACTIONS(1158), - [sym_decimal_floating_point_literal] = ACTIONS(1158), - [sym_hex_floating_point_literal] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1158), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1158), - [anon_sym_r] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_throw] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_QMARK_QMARK] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(1158), - [anon_sym_AMP_AMP] = ACTIONS(1158), - [sym_equality_operator] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1158), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_GT_GT_GT] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_PERCENT] = ACTIONS(1158), - [anon_sym_TILDE_SLASH] = ACTIONS(1158), - [sym_increment_operator] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_await] = ACTIONS(1160), - [anon_sym_is] = ACTIONS(1160), - [anon_sym_as] = ACTIONS(1160), - [anon_sym_DOT] = ACTIONS(1160), - [anon_sym_QMARK_DOT] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_assert] = ACTIONS(1160), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_try] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(1160), - [anon_sym_super] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_var] = ACTIONS(1160), - [anon_sym_covariant] = ACTIONS(1160), - [anon_sym_Function] = ACTIONS(1160), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_new] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_final] = ACTIONS(1160), - [anon_sym_external] = ACTIONS(1160), - [anon_sym_this] = ACTIONS(1160), - [sym_comment] = ACTIONS(3), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_POUND] = ACTIONS(1248), - [sym_decimal_integer_literal] = ACTIONS(1250), - [sym_hex_integer_literal] = ACTIONS(1250), - [sym_octal_integer_literal] = ACTIONS(1248), - [sym_binary_integer_literal] = ACTIONS(1248), - [sym_decimal_floating_point_literal] = ACTIONS(1248), - [sym_hex_floating_point_literal] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1248), - [anon_sym_r] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [anon_sym_null] = ACTIONS(1250), - [anon_sym_throw] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_QMARK_QMARK] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [sym_equality_operator] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_GT_GT_GT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_TILDE_SLASH] = ACTIONS(1248), - [sym_increment_operator] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_await] = ACTIONS(1250), - [anon_sym_is] = ACTIONS(1250), - [anon_sym_as] = ACTIONS(1250), - [anon_sym_DOT] = ACTIONS(1250), - [anon_sym_QMARK_DOT] = ACTIONS(1248), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_assert] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_abstract] = ACTIONS(1250), - [anon_sym_class] = ACTIONS(1250), - [anon_sym_super] = ACTIONS(1250), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_var] = ACTIONS(1250), - [anon_sym_covariant] = ACTIONS(1250), - [anon_sym_Function] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_new] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_final] = ACTIONS(1250), - [anon_sym_external] = ACTIONS(1250), - [anon_sym_this] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [sym_decimal_integer_literal] = ACTIONS(1306), - [sym_hex_integer_literal] = ACTIONS(1306), - [sym_octal_integer_literal] = ACTIONS(1304), - [sym_binary_integer_literal] = ACTIONS(1304), - [sym_decimal_floating_point_literal] = ACTIONS(1304), - [sym_hex_floating_point_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1304), - [anon_sym_r] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_null] = ACTIONS(1306), - [anon_sym_throw] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_QMARK_QMARK] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [sym_equality_operator] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_GT_GT_GT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1306), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_TILDE_SLASH] = ACTIONS(1304), - [sym_increment_operator] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_await] = ACTIONS(1306), - [anon_sym_is] = ACTIONS(1306), - [anon_sym_as] = ACTIONS(1306), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_QMARK_DOT] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_assert] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_try] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_abstract] = ACTIONS(1306), - [anon_sym_class] = ACTIONS(1306), - [anon_sym_super] = ACTIONS(1306), - [anon_sym_void] = ACTIONS(1306), - [anon_sym_var] = ACTIONS(1306), - [anon_sym_covariant] = ACTIONS(1306), - [anon_sym_Function] = ACTIONS(1306), - [anon_sym_get] = ACTIONS(1306), - [anon_sym_set] = ACTIONS(1306), - [anon_sym_new] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_final] = ACTIONS(1306), - [anon_sym_external] = ACTIONS(1306), - [anon_sym_this] = ACTIONS(1306), + [746] = { + [sym_relational_operator] = STATE(713), + [sym_type_test] = STATE(2280), + [sym_is_operator] = STATE(2633), + [sym_type_cast] = STATE(2280), + [sym_as_operator] = STATE(2640), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(991), + [sym_decimal_integer_literal] = ACTIONS(993), + [sym_hex_integer_literal] = ACTIONS(993), + [sym_octal_integer_literal] = ACTIONS(991), + [sym_binary_integer_literal] = ACTIONS(991), + [sym_decimal_floating_point_literal] = ACTIONS(991), + [sym_hex_floating_point_literal] = ACTIONS(993), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(991), + [anon_sym_r] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_null] = ACTIONS(993), + [anon_sym_throw] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_QMARK_QMARK] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_AMP_AMP] = ACTIONS(991), + [sym_equality_operator] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_GT_GT_GT] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_TILDE_SLASH] = ACTIONS(991), + [sym_increment_operator] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_QMARK_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_assert] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_try] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_abstract] = ACTIONS(993), + [anon_sym_class] = ACTIONS(993), + [anon_sym_super] = ACTIONS(993), + [anon_sym_void] = ACTIONS(993), + [anon_sym_var] = ACTIONS(993), + [anon_sym_covariant] = ACTIONS(993), + [anon_sym_Function] = ACTIONS(993), + [anon_sym_get] = ACTIONS(993), + [anon_sym_set] = ACTIONS(993), + [anon_sym_new] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_final] = ACTIONS(993), + [anon_sym_external] = ACTIONS(993), + [anon_sym_this] = ACTIONS(993), [sym_comment] = ACTIONS(3), }, - [790] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1364), - [sym_decimal_integer_literal] = ACTIONS(1366), - [sym_hex_integer_literal] = ACTIONS(1366), - [sym_octal_integer_literal] = ACTIONS(1364), - [sym_binary_integer_literal] = ACTIONS(1364), - [sym_decimal_floating_point_literal] = ACTIONS(1364), - [sym_hex_floating_point_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1364), - [anon_sym_r] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_null] = ACTIONS(1366), - [anon_sym_throw] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_QMARK_QMARK] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [sym_equality_operator] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1366), - [anon_sym_GT_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1366), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_TILDE_SLASH] = ACTIONS(1364), - [sym_increment_operator] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_await] = ACTIONS(1366), - [anon_sym_is] = ACTIONS(1366), - [anon_sym_as] = ACTIONS(1366), - [anon_sym_DOT] = ACTIONS(1366), - [anon_sym_QMARK_DOT] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_assert] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_try] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_AT] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_abstract] = ACTIONS(1366), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_super] = ACTIONS(1366), - [anon_sym_void] = ACTIONS(1366), - [anon_sym_var] = ACTIONS(1366), - [anon_sym_covariant] = ACTIONS(1366), - [anon_sym_Function] = ACTIONS(1366), - [anon_sym_get] = ACTIONS(1366), - [anon_sym_set] = ACTIONS(1366), - [anon_sym_new] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_final] = ACTIONS(1366), - [anon_sym_external] = ACTIONS(1366), - [anon_sym_this] = ACTIONS(1366), + [747] = { + [aux_sym__if_null_expression] = STATE(958), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(959), + [aux_sym_logical_and_expression_repeat1] = STATE(960), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(580), + [sym_identifier] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(580), + [sym_decimal_integer_literal] = ACTIONS(582), + [sym_hex_integer_literal] = ACTIONS(582), + [sym_octal_integer_literal] = ACTIONS(580), + [sym_binary_integer_literal] = ACTIONS(580), + [sym_decimal_floating_point_literal] = ACTIONS(580), + [sym_hex_floating_point_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(582), + [anon_sym_false] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(580), + [anon_sym_r] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_null] = ACTIONS(582), + [anon_sym_throw] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(580), + [anon_sym_QMARK_QMARK] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [sym_equality_operator] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_await] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_assert] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(582), + [anon_sym_do] = ACTIONS(582), + [anon_sym_while] = ACTIONS(582), + [anon_sym_break] = ACTIONS(582), + [anon_sym_continue] = ACTIONS(582), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_return] = ACTIONS(582), + [anon_sym_try] = ACTIONS(582), + [anon_sym_if] = ACTIONS(582), + [anon_sym_for] = ACTIONS(582), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(582), + [anon_sym_abstract] = ACTIONS(582), + [anon_sym_class] = ACTIONS(582), + [anon_sym_super] = ACTIONS(582), + [anon_sym_void] = ACTIONS(582), + [anon_sym_var] = ACTIONS(582), + [anon_sym_covariant] = ACTIONS(582), + [anon_sym_Function] = ACTIONS(582), + [anon_sym_get] = ACTIONS(582), + [anon_sym_set] = ACTIONS(582), + [anon_sym_new] = ACTIONS(582), + [anon_sym_const] = ACTIONS(582), + [anon_sym_final] = ACTIONS(582), + [anon_sym_external] = ACTIONS(582), + [anon_sym_this] = ACTIONS(582), [sym_comment] = ACTIONS(3), }, - [791] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_POUND] = ACTIONS(1236), - [sym_decimal_integer_literal] = ACTIONS(1238), - [sym_hex_integer_literal] = ACTIONS(1238), - [sym_octal_integer_literal] = ACTIONS(1236), - [sym_binary_integer_literal] = ACTIONS(1236), - [sym_decimal_floating_point_literal] = ACTIONS(1236), - [sym_hex_floating_point_literal] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1236), - [anon_sym_r] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_null] = ACTIONS(1238), - [anon_sym_throw] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_QMARK_QMARK] = ACTIONS(1236), - [anon_sym_QMARK] = ACTIONS(1238), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [sym_equality_operator] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1236), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_GT_GT_GT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_TILDE_SLASH] = ACTIONS(1236), - [sym_increment_operator] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_is] = ACTIONS(1238), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_QMARK_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_assert] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_abstract] = ACTIONS(1238), - [anon_sym_class] = ACTIONS(1238), - [anon_sym_super] = ACTIONS(1238), - [anon_sym_void] = ACTIONS(1238), - [anon_sym_var] = ACTIONS(1238), - [anon_sym_covariant] = ACTIONS(1238), - [anon_sym_Function] = ACTIONS(1238), - [anon_sym_get] = ACTIONS(1238), - [anon_sym_set] = ACTIONS(1238), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_final] = ACTIONS(1238), - [anon_sym_external] = ACTIONS(1238), - [anon_sym_this] = ACTIONS(1238), + [748] = { + [aux_sym__if_null_expression] = STATE(958), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(959), + [aux_sym_logical_and_expression_repeat1] = STATE(960), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(572), + [anon_sym_r] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_null] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_QMARK_QMARK] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [sym_equality_operator] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_super] = ACTIONS(574), + [anon_sym_void] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [anon_sym_covariant] = ACTIONS(574), + [anon_sym_Function] = ACTIONS(574), + [anon_sym_get] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_external] = ACTIONS(574), + [anon_sym_this] = ACTIONS(574), [sym_comment] = ACTIONS(3), }, - [792] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1276), - [sym_decimal_integer_literal] = ACTIONS(1278), - [sym_hex_integer_literal] = ACTIONS(1278), - [sym_octal_integer_literal] = ACTIONS(1276), - [sym_binary_integer_literal] = ACTIONS(1276), - [sym_decimal_floating_point_literal] = ACTIONS(1276), - [sym_hex_floating_point_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1276), - [anon_sym_r] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1276), - [anon_sym_null] = ACTIONS(1278), - [anon_sym_throw] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_QMARK_QMARK] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [sym_equality_operator] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_GT] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1278), - [anon_sym_GT_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1278), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_TILDE_SLASH] = ACTIONS(1276), - [sym_increment_operator] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_await] = ACTIONS(1278), - [anon_sym_is] = ACTIONS(1278), - [anon_sym_as] = ACTIONS(1278), - [anon_sym_DOT] = ACTIONS(1278), - [anon_sym_QMARK_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_assert] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_abstract] = ACTIONS(1278), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_super] = ACTIONS(1278), - [anon_sym_void] = ACTIONS(1278), - [anon_sym_var] = ACTIONS(1278), - [anon_sym_covariant] = ACTIONS(1278), - [anon_sym_Function] = ACTIONS(1278), - [anon_sym_get] = ACTIONS(1278), - [anon_sym_set] = ACTIONS(1278), - [anon_sym_new] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_final] = ACTIONS(1278), - [anon_sym_external] = ACTIONS(1278), - [anon_sym_this] = ACTIONS(1278), + [749] = { + [aux_sym__if_null_expression] = STATE(958), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(959), + [aux_sym_logical_and_expression_repeat1] = STATE(960), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(576), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), + [anon_sym_r] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_null] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_QMARK_QMARK] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [sym_equality_operator] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_await] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_super] = ACTIONS(578), + [anon_sym_void] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [anon_sym_covariant] = ACTIONS(578), + [anon_sym_Function] = ACTIONS(578), + [anon_sym_get] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [anon_sym_const] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_external] = ACTIONS(578), + [anon_sym_this] = ACTIONS(578), [sym_comment] = ACTIONS(3), }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_POUND] = ACTIONS(1288), - [sym_decimal_integer_literal] = ACTIONS(1290), - [sym_hex_integer_literal] = ACTIONS(1290), - [sym_octal_integer_literal] = ACTIONS(1288), - [sym_binary_integer_literal] = ACTIONS(1288), - [sym_decimal_floating_point_literal] = ACTIONS(1288), - [sym_hex_floating_point_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1288), - [anon_sym_r] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_null] = ACTIONS(1290), - [anon_sym_throw] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_QMARK_QMARK] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [sym_equality_operator] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1288), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_GT_GT_GT] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_TILDE_SLASH] = ACTIONS(1288), - [sym_increment_operator] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_await] = ACTIONS(1290), - [anon_sym_is] = ACTIONS(1290), - [anon_sym_as] = ACTIONS(1290), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_QMARK_DOT] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_AT] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_abstract] = ACTIONS(1290), - [anon_sym_class] = ACTIONS(1290), - [anon_sym_super] = ACTIONS(1290), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_var] = ACTIONS(1290), - [anon_sym_covariant] = ACTIONS(1290), - [anon_sym_Function] = ACTIONS(1290), - [anon_sym_get] = ACTIONS(1290), - [anon_sym_set] = ACTIONS(1290), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_final] = ACTIONS(1290), - [anon_sym_external] = ACTIONS(1290), - [anon_sym_this] = ACTIONS(1290), + [750] = { + [aux_sym__if_null_expression] = STATE(958), + [sym_shift_operator] = STATE(674), + [sym_additive_operator] = STATE(672), + [sym_multiplicative_operator] = STATE(671), + [aux_sym_logical_or_expression_repeat1] = STATE(959), + [aux_sym_logical_and_expression_repeat1] = STATE(960), + [aux_sym_bitwise_or_expression_repeat1] = STATE(894), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(895), + [aux_sym_bitwise_and_expression_repeat1] = STATE(896), + [aux_sym_shift_expression_repeat1] = STATE(800), + [aux_sym_additive_expression_repeat1] = STATE(801), + [aux_sym_multiplicative_expression_repeat1] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(565), + [sym_identifier] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(565), + [sym_decimal_integer_literal] = ACTIONS(567), + [sym_hex_integer_literal] = ACTIONS(567), + [sym_octal_integer_literal] = ACTIONS(565), + [sym_binary_integer_literal] = ACTIONS(565), + [sym_decimal_floating_point_literal] = ACTIONS(565), + [sym_hex_floating_point_literal] = ACTIONS(567), + [anon_sym_true] = ACTIONS(567), + [anon_sym_false] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(565), + [anon_sym_r] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_null] = ACTIONS(567), + [anon_sym_throw] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_QMARK_QMARK] = ACTIONS(565), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_AMP_AMP] = ACTIONS(565), + [sym_equality_operator] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_GT_GT_GT] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_TILDE_SLASH] = ACTIONS(560), + [sym_increment_operator] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_await] = ACTIONS(567), + [anon_sym_DOT_DOT] = ACTIONS(565), + [anon_sym_assert] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(567), + [anon_sym_do] = ACTIONS(567), + [anon_sym_while] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_try] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(567), + [anon_sym_class] = ACTIONS(567), + [anon_sym_super] = ACTIONS(567), + [anon_sym_void] = ACTIONS(567), + [anon_sym_var] = ACTIONS(567), + [anon_sym_covariant] = ACTIONS(567), + [anon_sym_Function] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_new] = ACTIONS(567), + [anon_sym_const] = ACTIONS(567), + [anon_sym_final] = ACTIONS(567), + [anon_sym_external] = ACTIONS(567), + [anon_sym_this] = ACTIONS(567), [sym_comment] = ACTIONS(3), }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(1292), - [sym_decimal_integer_literal] = ACTIONS(1294), - [sym_hex_integer_literal] = ACTIONS(1294), - [sym_octal_integer_literal] = ACTIONS(1292), - [sym_binary_integer_literal] = ACTIONS(1292), - [sym_decimal_floating_point_literal] = ACTIONS(1292), - [sym_hex_floating_point_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1292), - [anon_sym_r] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_throw] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_QMARK_QMARK] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [sym_equality_operator] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_GT_GT_GT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1292), - [anon_sym_TILDE_SLASH] = ACTIONS(1292), - [sym_increment_operator] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_await] = ACTIONS(1294), - [anon_sym_is] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_QMARK_DOT] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1292), - [anon_sym_assert] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_AT] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_abstract] = ACTIONS(1294), - [anon_sym_class] = ACTIONS(1294), - [anon_sym_super] = ACTIONS(1294), - [anon_sym_void] = ACTIONS(1294), - [anon_sym_var] = ACTIONS(1294), - [anon_sym_covariant] = ACTIONS(1294), - [anon_sym_Function] = ACTIONS(1294), - [anon_sym_get] = ACTIONS(1294), - [anon_sym_set] = ACTIONS(1294), - [anon_sym_new] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_final] = ACTIONS(1294), - [anon_sym_external] = ACTIONS(1294), - [anon_sym_this] = ACTIONS(1294), + [751] = { + [sym__top_level_definition] = STATE(751), + [sym__annotation] = STATE(2384), + [sym_marker_annotation] = STATE(2384), + [sym_annotation] = STATE(2384), + [sym_enum_declaration] = STATE(751), + [sym_class_definition] = STATE(751), + [aux_sym__metadata] = STATE(2384), + [sym_getter_signature] = STATE(3482), + [sym_setter_signature] = STATE(3482), + [sym_variable_declaration] = STATE(3482), + [sym__declared_identifier] = STATE(3440), + [sym__final_const_var_or_type] = STATE(3699), + [sym__type] = STATE(3003), + [sym__type_not_function] = STATE(2588), + [sym__type_not_void_not_function] = STATE(2588), + [aux_sym__function_type_tails] = STATE(2581), + [sym__function_type_tail] = STATE(2581), + [sym__type_name] = STATE(2442), + [sym_void_type] = STATE(2588), + [sym_inferred_type] = STATE(3699), + [sym_function_signature] = STATE(2748), + [sym__covariant] = STATE(2469), + [sym__function_builtin_identifier] = STATE(2440), + [sym__get] = STATE(3647), + [sym__set] = STATE(3645), + [sym__const_builtin] = STATE(2699), + [sym__final_builtin] = STATE(2699), + [sym__external_builtin] = STATE(2472), + [aux_sym_program_repeat2] = STATE(751), + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2106), + [sym_decimal_integer_literal] = ACTIONS(2111), + [sym_hex_integer_literal] = ACTIONS(2111), + [sym_octal_integer_literal] = ACTIONS(2106), + [sym_binary_integer_literal] = ACTIONS(2106), + [sym_decimal_floating_point_literal] = ACTIONS(2106), + [sym_hex_floating_point_literal] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2106), + [anon_sym_r] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_null] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2111), + [sym_increment_operator] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_assert] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_abstract] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2122), + [anon_sym_super] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2128), + [anon_sym_covariant] = ACTIONS(2131), + [anon_sym_Function] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2140), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_final] = ACTIONS(2143), + [anon_sym_external] = ACTIONS(2146), + [anon_sym_this] = ACTIONS(2111), [sym_comment] = ACTIONS(3), }, - [795] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(1296), - [sym_decimal_integer_literal] = ACTIONS(1298), - [sym_hex_integer_literal] = ACTIONS(1298), - [sym_octal_integer_literal] = ACTIONS(1296), - [sym_binary_integer_literal] = ACTIONS(1296), - [sym_decimal_floating_point_literal] = ACTIONS(1296), - [sym_hex_floating_point_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1296), - [anon_sym_r] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1298), - [anon_sym_throw] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_QMARK_QMARK] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [sym_equality_operator] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1298), - [anon_sym_GT_GT_GT] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1296), - [anon_sym_TILDE_SLASH] = ACTIONS(1296), - [sym_increment_operator] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_await] = ACTIONS(1298), - [anon_sym_is] = ACTIONS(1298), - [anon_sym_as] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_QMARK_DOT] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_assert] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_abstract] = ACTIONS(1298), - [anon_sym_class] = ACTIONS(1298), - [anon_sym_super] = ACTIONS(1298), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_var] = ACTIONS(1298), - [anon_sym_covariant] = ACTIONS(1298), - [anon_sym_Function] = ACTIONS(1298), - [anon_sym_get] = ACTIONS(1298), - [anon_sym_set] = ACTIONS(1298), - [anon_sym_new] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_final] = ACTIONS(1298), - [anon_sym_external] = ACTIONS(1298), - [anon_sym_this] = ACTIONS(1298), + [752] = { + [sym_relational_operator] = STATE(713), + [sym_type_test] = STATE(2280), + [sym_is_operator] = STATE(2633), + [sym_type_cast] = STATE(2280), + [sym_as_operator] = STATE(2640), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(991), + [sym_decimal_integer_literal] = ACTIONS(993), + [sym_hex_integer_literal] = ACTIONS(993), + [sym_octal_integer_literal] = ACTIONS(991), + [sym_binary_integer_literal] = ACTIONS(991), + [sym_decimal_floating_point_literal] = ACTIONS(991), + [sym_hex_floating_point_literal] = ACTIONS(993), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(991), + [anon_sym_r] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_null] = ACTIONS(993), + [anon_sym_throw] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_QMARK_QMARK] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_AMP_AMP] = ACTIONS(991), + [sym_equality_operator] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_GT_GT_GT] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_TILDE_SLASH] = ACTIONS(991), + [sym_increment_operator] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_assert] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_try] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_abstract] = ACTIONS(993), + [anon_sym_class] = ACTIONS(993), + [anon_sym_super] = ACTIONS(993), + [anon_sym_void] = ACTIONS(993), + [anon_sym_var] = ACTIONS(993), + [anon_sym_covariant] = ACTIONS(993), + [anon_sym_Function] = ACTIONS(993), + [anon_sym_get] = ACTIONS(993), + [anon_sym_set] = ACTIONS(993), + [anon_sym_new] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_final] = ACTIONS(993), + [anon_sym_external] = ACTIONS(993), + [anon_sym_this] = ACTIONS(993), [sym_comment] = ACTIONS(3), }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [sym_decimal_integer_literal] = ACTIONS(1310), - [sym_hex_integer_literal] = ACTIONS(1310), - [sym_octal_integer_literal] = ACTIONS(1308), - [sym_binary_integer_literal] = ACTIONS(1308), - [sym_decimal_floating_point_literal] = ACTIONS(1308), - [sym_hex_floating_point_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1308), - [anon_sym_r] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_null] = ACTIONS(1310), - [anon_sym_throw] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_QMARK_QMARK] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [sym_equality_operator] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1310), - [anon_sym_GT_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_TILDE_SLASH] = ACTIONS(1308), - [sym_increment_operator] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_await] = ACTIONS(1310), - [anon_sym_is] = ACTIONS(1310), - [anon_sym_as] = ACTIONS(1310), - [anon_sym_DOT] = ACTIONS(1310), - [anon_sym_QMARK_DOT] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_assert] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_try] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_AT] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_abstract] = ACTIONS(1310), - [anon_sym_class] = ACTIONS(1310), - [anon_sym_super] = ACTIONS(1310), - [anon_sym_void] = ACTIONS(1310), - [anon_sym_var] = ACTIONS(1310), - [anon_sym_covariant] = ACTIONS(1310), - [anon_sym_Function] = ACTIONS(1310), - [anon_sym_get] = ACTIONS(1310), - [anon_sym_set] = ACTIONS(1310), - [anon_sym_new] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_final] = ACTIONS(1310), - [anon_sym_external] = ACTIONS(1310), - [anon_sym_this] = ACTIONS(1310), + [753] = { + [aux_sym__function_type_tails] = STATE(758), + [sym__function_type_tail] = STATE(758), + [sym__function_builtin_identifier] = STATE(3047), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1045), + [anon_sym_POUND] = ACTIONS(1043), + [sym_decimal_integer_literal] = ACTIONS(1045), + [sym_hex_integer_literal] = ACTIONS(1045), + [sym_octal_integer_literal] = ACTIONS(1043), + [sym_binary_integer_literal] = ACTIONS(1043), + [sym_decimal_floating_point_literal] = ACTIONS(1043), + [sym_hex_floating_point_literal] = ACTIONS(1045), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1043), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1043), + [anon_sym_r] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1045), + [anon_sym_throw] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_QMARK_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [sym_equality_operator] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_GT_GT_GT] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1043), + [anon_sym_TILDE_SLASH] = ACTIONS(1043), + [sym_increment_operator] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_is] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_QMARK_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(1043), + [anon_sym_assert] = ACTIONS(1045), + [anon_sym_switch] = ACTIONS(1045), + [anon_sym_do] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_abstract] = ACTIONS(1045), + [anon_sym_class] = ACTIONS(1045), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_void] = ACTIONS(1045), + [anon_sym_var] = ACTIONS(1045), + [anon_sym_covariant] = ACTIONS(1045), + [anon_sym_Function] = ACTIONS(2149), + [anon_sym_get] = ACTIONS(1045), + [anon_sym_set] = ACTIONS(1045), + [anon_sym_new] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_final] = ACTIONS(1045), + [anon_sym_external] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(1045), [sym_comment] = ACTIONS(3), }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1348), - [sym_decimal_integer_literal] = ACTIONS(1350), - [sym_hex_integer_literal] = ACTIONS(1350), - [sym_octal_integer_literal] = ACTIONS(1348), - [sym_binary_integer_literal] = ACTIONS(1348), - [sym_decimal_floating_point_literal] = ACTIONS(1348), - [sym_hex_floating_point_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1348), - [anon_sym_r] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_throw] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_QMARK_QMARK] = ACTIONS(1348), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [sym_equality_operator] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1348), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_GT_GT_GT] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1348), - [anon_sym_TILDE_SLASH] = ACTIONS(1348), - [sym_increment_operator] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_is] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_QMARK_DOT] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1350), - [anon_sym_class] = ACTIONS(1350), - [anon_sym_super] = ACTIONS(1350), - [anon_sym_void] = ACTIONS(1350), - [anon_sym_var] = ACTIONS(1350), - [anon_sym_covariant] = ACTIONS(1350), - [anon_sym_Function] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_final] = ACTIONS(1350), - [anon_sym_external] = ACTIONS(1350), - [anon_sym_this] = ACTIONS(1350), + [754] = { + [sym_arguments] = STATE(905), + [sym_argument_part] = STATE(754), + [sym_type_arguments] = STATE(3447), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(754), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [anon_sym_POUND] = ACTIONS(1007), + [sym_decimal_integer_literal] = ACTIONS(1009), + [sym_hex_integer_literal] = ACTIONS(1009), + [sym_octal_integer_literal] = ACTIONS(1007), + [sym_binary_integer_literal] = ACTIONS(1007), + [sym_decimal_floating_point_literal] = ACTIONS(1007), + [sym_hex_floating_point_literal] = ACTIONS(1009), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1009), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1007), + [anon_sym_r] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1007), + [anon_sym_null] = ACTIONS(1009), + [anon_sym_throw] = ACTIONS(1009), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_AMP_EQ] = ACTIONS(1007), + [anon_sym_PIPE_EQ] = ACTIONS(1007), + [anon_sym_CARET_EQ] = ACTIONS(1007), + [anon_sym_PERCENT_EQ] = ACTIONS(1007), + [anon_sym_LT_LT_EQ] = ACTIONS(1007), + [anon_sym_GT_GT_EQ] = ACTIONS(1007), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1007), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1009), + [sym_increment_operator] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_QMARK_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1007), + [anon_sym_assert] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(1009), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_super] = ACTIONS(1009), + [anon_sym_void] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_covariant] = ACTIONS(1009), + [anon_sym_Function] = ACTIONS(1009), + [anon_sym_get] = ACTIONS(1009), + [anon_sym_set] = ACTIONS(1009), + [anon_sym_new] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_final] = ACTIONS(1009), + [anon_sym_external] = ACTIONS(1009), + [anon_sym_this] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), [sym_comment] = ACTIONS(3), }, - [798] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1344), - [sym_decimal_integer_literal] = ACTIONS(1346), - [sym_hex_integer_literal] = ACTIONS(1346), - [sym_octal_integer_literal] = ACTIONS(1344), - [sym_binary_integer_literal] = ACTIONS(1344), - [sym_decimal_floating_point_literal] = ACTIONS(1344), - [sym_hex_floating_point_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1344), - [anon_sym_r] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_throw] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_QMARK_QMARK] = ACTIONS(1344), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [sym_equality_operator] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1344), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_GT_GT_GT] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1344), - [anon_sym_TILDE_SLASH] = ACTIONS(1344), - [sym_increment_operator] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_await] = ACTIONS(1346), - [anon_sym_is] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_QMARK_DOT] = ACTIONS(1344), - [anon_sym_DOT_DOT] = ACTIONS(1344), - [anon_sym_assert] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_abstract] = ACTIONS(1346), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_super] = ACTIONS(1346), - [anon_sym_void] = ACTIONS(1346), - [anon_sym_var] = ACTIONS(1346), - [anon_sym_covariant] = ACTIONS(1346), - [anon_sym_Function] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_final] = ACTIONS(1346), - [anon_sym_external] = ACTIONS(1346), - [anon_sym_this] = ACTIONS(1346), + [755] = { + [sym_relational_operator] = STATE(713), + [sym_type_test] = STATE(2280), + [sym_is_operator] = STATE(2633), + [sym_type_cast] = STATE(2280), + [sym_as_operator] = STATE(2640), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(991), + [sym_decimal_integer_literal] = ACTIONS(993), + [sym_hex_integer_literal] = ACTIONS(993), + [sym_octal_integer_literal] = ACTIONS(991), + [sym_binary_integer_literal] = ACTIONS(991), + [sym_decimal_floating_point_literal] = ACTIONS(991), + [sym_hex_floating_point_literal] = ACTIONS(993), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(991), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(991), + [anon_sym_r] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_null] = ACTIONS(993), + [anon_sym_throw] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_QMARK_QMARK] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_AMP_AMP] = ACTIONS(991), + [sym_equality_operator] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_GT_GT_GT] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_TILDE_SLASH] = ACTIONS(991), + [sym_increment_operator] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_is] = ACTIONS(2158), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_assert] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_yield] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_try] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_abstract] = ACTIONS(993), + [anon_sym_class] = ACTIONS(993), + [anon_sym_super] = ACTIONS(993), + [anon_sym_void] = ACTIONS(993), + [anon_sym_var] = ACTIONS(993), + [anon_sym_covariant] = ACTIONS(993), + [anon_sym_Function] = ACTIONS(993), + [anon_sym_get] = ACTIONS(993), + [anon_sym_set] = ACTIONS(993), + [anon_sym_new] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_final] = ACTIONS(993), + [anon_sym_external] = ACTIONS(993), + [anon_sym_this] = ACTIONS(993), [sym_comment] = ACTIONS(3), }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [sym_decimal_integer_literal] = ACTIONS(1326), - [sym_hex_integer_literal] = ACTIONS(1326), - [sym_octal_integer_literal] = ACTIONS(1324), - [sym_binary_integer_literal] = ACTIONS(1324), - [sym_decimal_floating_point_literal] = ACTIONS(1324), - [sym_hex_floating_point_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1324), - [anon_sym_r] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_null] = ACTIONS(1326), - [anon_sym_throw] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_QMARK_QMARK] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [sym_equality_operator] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1324), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_GT_GT_GT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_TILDE_SLASH] = ACTIONS(1324), - [sym_increment_operator] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(1326), - [anon_sym_as] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(1326), - [anon_sym_QMARK_DOT] = ACTIONS(1324), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_assert] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_try] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_abstract] = ACTIONS(1326), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_super] = ACTIONS(1326), - [anon_sym_void] = ACTIONS(1326), - [anon_sym_var] = ACTIONS(1326), - [anon_sym_covariant] = ACTIONS(1326), - [anon_sym_Function] = ACTIONS(1326), - [anon_sym_get] = ACTIONS(1326), - [anon_sym_set] = ACTIONS(1326), - [anon_sym_new] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_final] = ACTIONS(1326), - [anon_sym_external] = ACTIONS(1326), - [anon_sym_this] = ACTIONS(1326), + [756] = { + [sym__assignment_operator] = STATE(564), + [sym_arguments] = STATE(905), + [sym__cascade_subsection] = STATE(907), + [sym__cascade_assignment_section] = STATE(1108), + [sym_argument_part] = STATE(759), + [sym_unconditional_assignable_selector] = STATE(939), + [sym_assignable_selector] = STATE(948), + [sym_type_arguments] = STATE(3447), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(759), + [aux_sym_cascade_section_repeat1] = STATE(907), + [ts_builtin_sym_end] = ACTIONS(612), + [sym_identifier] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [sym_decimal_integer_literal] = ACTIONS(614), + [sym_hex_integer_literal] = ACTIONS(614), + [sym_octal_integer_literal] = ACTIONS(612), + [sym_binary_integer_literal] = ACTIONS(612), + [sym_decimal_floating_point_literal] = ACTIONS(612), + [sym_hex_floating_point_literal] = ACTIONS(614), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(612), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(612), + [anon_sym_r] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_null] = ACTIONS(614), + [anon_sym_throw] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), + [sym_increment_operator] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(612), + [anon_sym_await] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_assert] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(614), + [anon_sym_do] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_try] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_abstract] = ACTIONS(614), + [anon_sym_class] = ACTIONS(614), + [anon_sym_super] = ACTIONS(614), + [anon_sym_void] = ACTIONS(614), + [anon_sym_var] = ACTIONS(614), + [anon_sym_covariant] = ACTIONS(614), + [anon_sym_Function] = ACTIONS(614), + [anon_sym_get] = ACTIONS(614), + [anon_sym_set] = ACTIONS(614), + [anon_sym_new] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_final] = ACTIONS(614), + [anon_sym_external] = ACTIONS(614), + [anon_sym_this] = ACTIONS(614), [sym_comment] = ACTIONS(3), }, - [800] = { - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_identifier] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1131), - [sym_decimal_integer_literal] = ACTIONS(1128), - [sym_hex_integer_literal] = ACTIONS(1128), - [sym_octal_integer_literal] = ACTIONS(1131), - [sym_binary_integer_literal] = ACTIONS(1131), - [sym_decimal_floating_point_literal] = ACTIONS(1131), - [sym_hex_floating_point_literal] = ACTIONS(1128), - [anon_sym_true] = ACTIONS(1128), - [anon_sym_false] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1128), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1131), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1131), - [anon_sym_r] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1131), - [anon_sym_COMMA] = ACTIONS(1131), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_throw] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_QMARK_QMARK] = ACTIONS(1131), - [anon_sym_QMARK] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1131), - [anon_sym_AMP_AMP] = ACTIONS(1131), - [sym_equality_operator] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1131), - [anon_sym_LT_EQ] = ACTIONS(1131), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1131), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_GT_GT_GT] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_TILDE_SLASH] = ACTIONS(1131), - [sym_increment_operator] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_await] = ACTIONS(1128), - [anon_sym_is] = ACTIONS(1128), - [anon_sym_as] = ACTIONS(1128), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_QMARK_DOT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_yield] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_try] = ACTIONS(1128), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_AT] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_abstract] = ACTIONS(1128), - [anon_sym_class] = ACTIONS(1128), - [anon_sym_super] = ACTIONS(1128), - [anon_sym_void] = ACTIONS(1128), - [anon_sym_var] = ACTIONS(1128), - [anon_sym_covariant] = ACTIONS(1128), - [anon_sym_Function] = ACTIONS(1128), - [anon_sym_get] = ACTIONS(1128), - [anon_sym_set] = ACTIONS(1128), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_final] = ACTIONS(1128), - [anon_sym_external] = ACTIONS(1128), - [anon_sym_this] = ACTIONS(1128), + [757] = { + [aux_sym__function_type_tails] = STATE(758), + [sym__function_type_tail] = STATE(758), + [sym__function_builtin_identifier] = STATE(3047), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1037), + [sym_decimal_integer_literal] = ACTIONS(1039), + [sym_hex_integer_literal] = ACTIONS(1039), + [sym_octal_integer_literal] = ACTIONS(1037), + [sym_binary_integer_literal] = ACTIONS(1037), + [sym_decimal_floating_point_literal] = ACTIONS(1037), + [sym_hex_floating_point_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1039), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1037), + [anon_sym_r] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1039), + [anon_sym_throw] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_QMARK_QMARK] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [sym_equality_operator] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_GT_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1039), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_TILDE_SLASH] = ACTIONS(1037), + [sym_increment_operator] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1039), + [anon_sym_is] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1039), + [anon_sym_QMARK_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_assert] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_try] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_super] = ACTIONS(1039), + [anon_sym_void] = ACTIONS(1039), + [anon_sym_var] = ACTIONS(1039), + [anon_sym_covariant] = ACTIONS(1039), + [anon_sym_Function] = ACTIONS(2149), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_new] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_final] = ACTIONS(1039), + [anon_sym_external] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_POUND] = ACTIONS(1244), - [sym_decimal_integer_literal] = ACTIONS(1246), - [sym_hex_integer_literal] = ACTIONS(1246), - [sym_octal_integer_literal] = ACTIONS(1244), - [sym_binary_integer_literal] = ACTIONS(1244), - [sym_decimal_floating_point_literal] = ACTIONS(1244), - [sym_hex_floating_point_literal] = ACTIONS(1246), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1244), - [anon_sym_r] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [anon_sym_null] = ACTIONS(1246), - [anon_sym_throw] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_QMARK_QMARK] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [sym_equality_operator] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1244), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_GT_GT_GT] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1244), - [anon_sym_TILDE_SLASH] = ACTIONS(1244), - [sym_increment_operator] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_await] = ACTIONS(1246), - [anon_sym_is] = ACTIONS(1246), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_QMARK_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_assert] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_abstract] = ACTIONS(1246), - [anon_sym_class] = ACTIONS(1246), - [anon_sym_super] = ACTIONS(1246), - [anon_sym_void] = ACTIONS(1246), - [anon_sym_var] = ACTIONS(1246), - [anon_sym_covariant] = ACTIONS(1246), - [anon_sym_Function] = ACTIONS(1246), - [anon_sym_get] = ACTIONS(1246), - [anon_sym_set] = ACTIONS(1246), - [anon_sym_new] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_final] = ACTIONS(1246), - [anon_sym_external] = ACTIONS(1246), - [anon_sym_this] = ACTIONS(1246), + [758] = { + [aux_sym__function_type_tails] = STATE(758), + [sym__function_type_tail] = STATE(758), + [sym__function_builtin_identifier] = STATE(3047), + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(1030), + [sym_decimal_integer_literal] = ACTIONS(1032), + [sym_hex_integer_literal] = ACTIONS(1032), + [sym_octal_integer_literal] = ACTIONS(1030), + [sym_binary_integer_literal] = ACTIONS(1030), + [sym_decimal_floating_point_literal] = ACTIONS(1030), + [sym_hex_floating_point_literal] = ACTIONS(1032), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1030), + [anon_sym_r] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1032), + [anon_sym_throw] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_QMARK_QMARK] = ACTIONS(1030), + [anon_sym_QMARK] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [sym_equality_operator] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1030), + [anon_sym_LT_EQ] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1030), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_GT_GT_GT] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1030), + [anon_sym_TILDE_SLASH] = ACTIONS(1030), + [sym_increment_operator] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_await] = ACTIONS(1032), + [anon_sym_is] = ACTIONS(1032), + [anon_sym_as] = ACTIONS(1032), + [anon_sym_DOT] = ACTIONS(1032), + [anon_sym_QMARK_DOT] = ACTIONS(1030), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_assert] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1032), + [anon_sym_class] = ACTIONS(1032), + [anon_sym_super] = ACTIONS(1032), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_var] = ACTIONS(1032), + [anon_sym_covariant] = ACTIONS(1032), + [anon_sym_Function] = ACTIONS(2168), + [anon_sym_get] = ACTIONS(1032), + [anon_sym_set] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_final] = ACTIONS(1032), + [anon_sym_external] = ACTIONS(1032), + [anon_sym_this] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [sym_decimal_integer_literal] = ACTIONS(1164), - [sym_hex_integer_literal] = ACTIONS(1164), - [sym_octal_integer_literal] = ACTIONS(1162), - [sym_binary_integer_literal] = ACTIONS(1162), - [sym_decimal_floating_point_literal] = ACTIONS(1162), - [sym_hex_floating_point_literal] = ACTIONS(1164), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1162), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1162), - [anon_sym_r] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_COMMA] = ACTIONS(1162), - [anon_sym_null] = ACTIONS(1164), - [anon_sym_throw] = ACTIONS(1164), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_QMARK_QMARK] = ACTIONS(1162), - [anon_sym_QMARK] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [sym_equality_operator] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1164), - [anon_sym_GT_EQ] = ACTIONS(1162), - [anon_sym_LT_EQ] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_CARET] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1162), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_GT_GT_GT] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_SLASH] = ACTIONS(1164), - [anon_sym_PERCENT] = ACTIONS(1162), - [anon_sym_TILDE_SLASH] = ACTIONS(1162), - [sym_increment_operator] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_is] = ACTIONS(1164), - [anon_sym_as] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1164), - [anon_sym_QMARK_DOT] = ACTIONS(1162), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_assert] = ACTIONS(1164), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_AT] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_abstract] = ACTIONS(1164), - [anon_sym_class] = ACTIONS(1164), - [anon_sym_super] = ACTIONS(1164), - [anon_sym_void] = ACTIONS(1164), - [anon_sym_var] = ACTIONS(1164), - [anon_sym_covariant] = ACTIONS(1164), - [anon_sym_Function] = ACTIONS(1164), - [anon_sym_get] = ACTIONS(1164), - [anon_sym_set] = ACTIONS(1164), - [anon_sym_new] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_final] = ACTIONS(1164), - [anon_sym_external] = ACTIONS(1164), - [anon_sym_this] = ACTIONS(1164), + [759] = { + [sym__assignment_operator] = STATE(564), + [sym_arguments] = STATE(905), + [sym__cascade_subsection] = STATE(918), + [sym__cascade_assignment_section] = STATE(1123), + [sym_argument_part] = STATE(754), + [sym_unconditional_assignable_selector] = STATE(939), + [sym_assignable_selector] = STATE(948), + [sym_type_arguments] = STATE(3447), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(754), + [aux_sym_cascade_section_repeat1] = STATE(918), + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(684), + [anon_sym_r] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_null] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [sym_increment_operator] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_TILDE] = ACTIONS(684), + [anon_sym_await] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_super] = ACTIONS(686), + [anon_sym_void] = ACTIONS(686), + [anon_sym_var] = ACTIONS(686), + [anon_sym_covariant] = ACTIONS(686), + [anon_sym_Function] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [anon_sym_new] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_external] = ACTIONS(686), + [anon_sym_this] = ACTIONS(686), [sym_comment] = ACTIONS(3), }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_POUND] = ACTIONS(1316), - [sym_decimal_integer_literal] = ACTIONS(1318), - [sym_hex_integer_literal] = ACTIONS(1318), - [sym_octal_integer_literal] = ACTIONS(1316), - [sym_binary_integer_literal] = ACTIONS(1316), - [sym_decimal_floating_point_literal] = ACTIONS(1316), - [sym_hex_floating_point_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1316), - [anon_sym_r] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_null] = ACTIONS(1318), - [anon_sym_throw] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_QMARK_QMARK] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [sym_equality_operator] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1318), - [anon_sym_GT_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_TILDE_SLASH] = ACTIONS(1316), - [sym_increment_operator] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_await] = ACTIONS(1318), - [anon_sym_is] = ACTIONS(1318), - [anon_sym_as] = ACTIONS(1318), - [anon_sym_DOT] = ACTIONS(1318), - [anon_sym_QMARK_DOT] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_assert] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_abstract] = ACTIONS(1318), - [anon_sym_class] = ACTIONS(1318), - [anon_sym_super] = ACTIONS(1318), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_var] = ACTIONS(1318), - [anon_sym_covariant] = ACTIONS(1318), - [anon_sym_Function] = ACTIONS(1318), - [anon_sym_get] = ACTIONS(1318), - [anon_sym_set] = ACTIONS(1318), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_final] = ACTIONS(1318), - [anon_sym_external] = ACTIONS(1318), - [anon_sym_this] = ACTIONS(1318), + [760] = { + [sym_shift_operator] = STATE(644), + [aux_sym_shift_expression_repeat1] = STATE(768), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1091), + [sym_decimal_integer_literal] = ACTIONS(1093), + [sym_hex_integer_literal] = ACTIONS(1093), + [sym_octal_integer_literal] = ACTIONS(1091), + [sym_binary_integer_literal] = ACTIONS(1091), + [sym_decimal_floating_point_literal] = ACTIONS(1091), + [sym_hex_floating_point_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1091), + [anon_sym_r] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_throw] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_QMARK_QMARK] = ACTIONS(1091), + [anon_sym_QMARK] = ACTIONS(1093), + [anon_sym_PIPE_PIPE] = ACTIONS(1091), + [anon_sym_AMP_AMP] = ACTIONS(1091), + [sym_equality_operator] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1093), + [anon_sym_GT_GT_GT] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_TILDE_SLASH] = ACTIONS(1091), + [sym_increment_operator] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_is] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_QMARK_DOT] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1091), + [anon_sym_assert] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_AT] = ACTIONS(1091), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_abstract] = ACTIONS(1093), + [anon_sym_class] = ACTIONS(1093), + [anon_sym_super] = ACTIONS(1093), + [anon_sym_void] = ACTIONS(1093), + [anon_sym_var] = ACTIONS(1093), + [anon_sym_covariant] = ACTIONS(1093), + [anon_sym_Function] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_final] = ACTIONS(1093), + [anon_sym_external] = ACTIONS(1093), + [anon_sym_this] = ACTIONS(1093), [sym_comment] = ACTIONS(3), }, - [804] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_POUND] = ACTIONS(1320), - [sym_decimal_integer_literal] = ACTIONS(1322), - [sym_hex_integer_literal] = ACTIONS(1322), - [sym_octal_integer_literal] = ACTIONS(1320), - [sym_binary_integer_literal] = ACTIONS(1320), - [sym_decimal_floating_point_literal] = ACTIONS(1320), - [sym_hex_floating_point_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1320), - [anon_sym_r] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_COMMA] = ACTIONS(1320), - [anon_sym_null] = ACTIONS(1322), - [anon_sym_throw] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_QMARK_QMARK] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1320), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [sym_equality_operator] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1322), - [anon_sym_GT_GT_GT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1320), - [anon_sym_TILDE_SLASH] = ACTIONS(1320), - [sym_increment_operator] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_await] = ACTIONS(1322), - [anon_sym_is] = ACTIONS(1322), - [anon_sym_as] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_QMARK_DOT] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_assert] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_AT] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_abstract] = ACTIONS(1322), - [anon_sym_class] = ACTIONS(1322), - [anon_sym_super] = ACTIONS(1322), - [anon_sym_void] = ACTIONS(1322), - [anon_sym_var] = ACTIONS(1322), - [anon_sym_covariant] = ACTIONS(1322), - [anon_sym_Function] = ACTIONS(1322), - [anon_sym_get] = ACTIONS(1322), - [anon_sym_set] = ACTIONS(1322), - [anon_sym_new] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_final] = ACTIONS(1322), - [anon_sym_external] = ACTIONS(1322), - [anon_sym_this] = ACTIONS(1322), + [761] = { + [sym_multiplicative_operator] = STATE(642), + [aux_sym_multiplicative_expression_repeat1] = STATE(761), + [ts_builtin_sym_end] = ACTIONS(588), + [sym_identifier] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [sym_decimal_integer_literal] = ACTIONS(590), + [sym_hex_integer_literal] = ACTIONS(590), + [sym_octal_integer_literal] = ACTIONS(588), + [sym_binary_integer_literal] = ACTIONS(588), + [sym_decimal_floating_point_literal] = ACTIONS(588), + [sym_hex_floating_point_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_r] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_COMMA] = ACTIONS(588), + [anon_sym_null] = ACTIONS(590), + [anon_sym_throw] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_QMARK_QMARK] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(588), + [sym_equality_operator] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(588), + [anon_sym_PIPE] = ACTIONS(590), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_GT_GT_GT] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_TILDE_SLASH] = ACTIONS(1054), + [sym_increment_operator] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_await] = ACTIONS(590), + [anon_sym_is] = ACTIONS(590), + [anon_sym_as] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(590), + [anon_sym_QMARK_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_assert] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_try] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_abstract] = ACTIONS(590), + [anon_sym_class] = ACTIONS(590), + [anon_sym_super] = ACTIONS(590), + [anon_sym_void] = ACTIONS(590), + [anon_sym_var] = ACTIONS(590), + [anon_sym_covariant] = ACTIONS(590), + [anon_sym_Function] = ACTIONS(590), + [anon_sym_get] = ACTIONS(590), + [anon_sym_set] = ACTIONS(590), + [anon_sym_new] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_final] = ACTIONS(590), + [anon_sym_external] = ACTIONS(590), + [anon_sym_this] = ACTIONS(590), [sym_comment] = ACTIONS(3), }, - [805] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(1216), - [sym_decimal_integer_literal] = ACTIONS(1218), - [sym_hex_integer_literal] = ACTIONS(1218), - [sym_octal_integer_literal] = ACTIONS(1216), - [sym_binary_integer_literal] = ACTIONS(1216), - [sym_decimal_floating_point_literal] = ACTIONS(1216), - [sym_hex_floating_point_literal] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1218), - [anon_sym_false] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1216), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1216), - [anon_sym_r] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_COMMA] = ACTIONS(1216), - [anon_sym_null] = ACTIONS(1218), - [anon_sym_throw] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1216), - [anon_sym_QMARK_QMARK] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(1218), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [sym_equality_operator] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1218), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_GT_EQ] = ACTIONS(1216), - [anon_sym_LT_EQ] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_LT_LT] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_SLASH] = ACTIONS(1218), - [anon_sym_PERCENT] = ACTIONS(1216), - [anon_sym_TILDE_SLASH] = ACTIONS(1216), - [sym_increment_operator] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_await] = ACTIONS(1218), - [anon_sym_is] = ACTIONS(1218), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_QMARK_DOT] = ACTIONS(1216), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [anon_sym_assert] = ACTIONS(1218), - [anon_sym_switch] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_yield] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_try] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_AT] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_abstract] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(1218), - [anon_sym_super] = ACTIONS(1218), - [anon_sym_void] = ACTIONS(1218), - [anon_sym_var] = ACTIONS(1218), - [anon_sym_covariant] = ACTIONS(1218), - [anon_sym_Function] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_new] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_final] = ACTIONS(1218), - [anon_sym_external] = ACTIONS(1218), - [anon_sym_this] = ACTIONS(1218), + [762] = { + [sym_cascade_section] = STATE(766), + [aux_sym__expression_repeat1] = STATE(766), + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(1070), + [sym_decimal_integer_literal] = ACTIONS(1072), + [sym_hex_integer_literal] = ACTIONS(1072), + [sym_octal_integer_literal] = ACTIONS(1070), + [sym_binary_integer_literal] = ACTIONS(1070), + [sym_decimal_floating_point_literal] = ACTIONS(1070), + [sym_hex_floating_point_literal] = ACTIONS(1072), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_SQUOTE] = ACTIONS(1072), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1070), + [anon_sym_r] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1070), + [anon_sym_COMMA] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1072), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_QMARK_QMARK] = ACTIONS(1070), + [anon_sym_QMARK] = ACTIONS(1072), + [anon_sym_PIPE_PIPE] = ACTIONS(1070), + [anon_sym_AMP_AMP] = ACTIONS(1070), + [sym_equality_operator] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(1072), + [anon_sym_GT] = ACTIONS(1072), + [anon_sym_GT_EQ] = ACTIONS(1070), + [anon_sym_LT_EQ] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_CARET] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1072), + [anon_sym_LT_LT] = ACTIONS(1070), + [anon_sym_GT_GT] = ACTIONS(1072), + [anon_sym_GT_GT_GT] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_SLASH] = ACTIONS(1072), + [anon_sym_PERCENT] = ACTIONS(1070), + [anon_sym_TILDE_SLASH] = ACTIONS(1070), + [sym_increment_operator] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_await] = ACTIONS(1072), + [anon_sym_is] = ACTIONS(1072), + [anon_sym_as] = ACTIONS(1072), + [anon_sym_DOT] = ACTIONS(1072), + [anon_sym_QMARK_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(2171), + [anon_sym_assert] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_yield] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_AT] = ACTIONS(1070), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_abstract] = ACTIONS(1072), + [anon_sym_class] = ACTIONS(1072), + [anon_sym_super] = ACTIONS(1072), + [anon_sym_void] = ACTIONS(1072), + [anon_sym_var] = ACTIONS(1072), + [anon_sym_covariant] = ACTIONS(1072), + [anon_sym_Function] = ACTIONS(1072), + [anon_sym_get] = ACTIONS(1072), + [anon_sym_set] = ACTIONS(1072), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_final] = ACTIONS(1072), + [anon_sym_external] = ACTIONS(1072), + [anon_sym_this] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [806] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1336), - [sym_decimal_integer_literal] = ACTIONS(1338), - [sym_hex_integer_literal] = ACTIONS(1338), - [sym_octal_integer_literal] = ACTIONS(1336), - [sym_binary_integer_literal] = ACTIONS(1336), - [sym_decimal_floating_point_literal] = ACTIONS(1336), - [sym_hex_floating_point_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1336), - [anon_sym_r] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1338), - [anon_sym_throw] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_QMARK_QMARK] = ACTIONS(1336), - [anon_sym_QMARK] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1336), - [anon_sym_AMP_AMP] = ACTIONS(1336), - [sym_equality_operator] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_LT_LT] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1338), - [anon_sym_GT_GT_GT] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_PERCENT] = ACTIONS(1336), - [anon_sym_TILDE_SLASH] = ACTIONS(1336), - [sym_increment_operator] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_is] = ACTIONS(1338), - [anon_sym_as] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_QMARK_DOT] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_assert] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_AT] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_abstract] = ACTIONS(1338), - [anon_sym_class] = ACTIONS(1338), - [anon_sym_super] = ACTIONS(1338), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_var] = ACTIONS(1338), - [anon_sym_covariant] = ACTIONS(1338), - [anon_sym_Function] = ACTIONS(1338), - [anon_sym_get] = ACTIONS(1338), - [anon_sym_set] = ACTIONS(1338), - [anon_sym_new] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_final] = ACTIONS(1338), - [anon_sym_external] = ACTIONS(1338), - [anon_sym_this] = ACTIONS(1338), + [763] = { + [sym_additive_operator] = STATE(643), + [aux_sym_additive_expression_repeat1] = STATE(769), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1049), + [anon_sym_POUND] = ACTIONS(1047), + [sym_decimal_integer_literal] = ACTIONS(1049), + [sym_hex_integer_literal] = ACTIONS(1049), + [sym_octal_integer_literal] = ACTIONS(1047), + [sym_binary_integer_literal] = ACTIONS(1047), + [sym_decimal_floating_point_literal] = ACTIONS(1047), + [sym_hex_floating_point_literal] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1047), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1047), + [anon_sym_r] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1049), + [anon_sym_throw] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_QMARK_QMARK] = ACTIONS(1047), + [anon_sym_QMARK] = ACTIONS(1049), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [sym_equality_operator] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_LT_LT] = ACTIONS(1047), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_GT_GT_GT] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1047), + [anon_sym_TILDE_SLASH] = ACTIONS(1047), + [sym_increment_operator] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_is] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_QMARK_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_switch] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_abstract] = ACTIONS(1049), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_super] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1049), + [anon_sym_var] = ACTIONS(1049), + [anon_sym_covariant] = ACTIONS(1049), + [anon_sym_Function] = ACTIONS(1049), + [anon_sym_get] = ACTIONS(1049), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_new] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_final] = ACTIONS(1049), + [anon_sym_external] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(1049), [sym_comment] = ACTIONS(3), }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1340), - [sym_decimal_integer_literal] = ACTIONS(1342), - [sym_hex_integer_literal] = ACTIONS(1342), - [sym_octal_integer_literal] = ACTIONS(1340), - [sym_binary_integer_literal] = ACTIONS(1340), - [sym_decimal_floating_point_literal] = ACTIONS(1340), - [sym_hex_floating_point_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1340), - [anon_sym_r] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(1340), - [anon_sym_null] = ACTIONS(1342), - [anon_sym_throw] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_QMARK_QMARK] = ACTIONS(1340), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1340), - [sym_equality_operator] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1340), - [anon_sym_LT_EQ] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1340), - [anon_sym_GT_GT] = ACTIONS(1342), - [anon_sym_GT_GT_GT] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1340), - [anon_sym_TILDE_SLASH] = ACTIONS(1340), - [sym_increment_operator] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_is] = ACTIONS(1342), - [anon_sym_as] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_QMARK_DOT] = ACTIONS(1340), - [anon_sym_DOT_DOT] = ACTIONS(1340), - [anon_sym_assert] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_abstract] = ACTIONS(1342), - [anon_sym_class] = ACTIONS(1342), - [anon_sym_super] = ACTIONS(1342), - [anon_sym_void] = ACTIONS(1342), - [anon_sym_var] = ACTIONS(1342), - [anon_sym_covariant] = ACTIONS(1342), - [anon_sym_Function] = ACTIONS(1342), - [anon_sym_get] = ACTIONS(1342), - [anon_sym_set] = ACTIONS(1342), - [anon_sym_new] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_final] = ACTIONS(1342), - [anon_sym_external] = ACTIONS(1342), - [anon_sym_this] = ACTIONS(1342), + [764] = { + [sym_multiplicative_operator] = STATE(642), + [aux_sym_multiplicative_expression_repeat1] = STATE(761), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(1084), + [sym_decimal_integer_literal] = ACTIONS(1086), + [sym_hex_integer_literal] = ACTIONS(1086), + [sym_octal_integer_literal] = ACTIONS(1084), + [sym_binary_integer_literal] = ACTIONS(1084), + [sym_decimal_floating_point_literal] = ACTIONS(1084), + [sym_hex_floating_point_literal] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1084), + [anon_sym_r] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_throw] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_QMARK_QMARK] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1084), + [anon_sym_AMP_AMP] = ACTIONS(1084), + [sym_equality_operator] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_GT_GT_GT] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1084), + [anon_sym_TILDE_SLASH] = ACTIONS(1084), + [sym_increment_operator] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_await] = ACTIONS(1086), + [anon_sym_is] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_QMARK_DOT] = ACTIONS(1084), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_assert] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_abstract] = ACTIONS(1086), + [anon_sym_class] = ACTIONS(1086), + [anon_sym_super] = ACTIONS(1086), + [anon_sym_void] = ACTIONS(1086), + [anon_sym_var] = ACTIONS(1086), + [anon_sym_covariant] = ACTIONS(1086), + [anon_sym_Function] = ACTIONS(1086), + [anon_sym_get] = ACTIONS(1086), + [anon_sym_set] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_final] = ACTIONS(1086), + [anon_sym_external] = ACTIONS(1086), + [anon_sym_this] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1352), - [sym_decimal_integer_literal] = ACTIONS(1354), - [sym_hex_integer_literal] = ACTIONS(1354), - [sym_octal_integer_literal] = ACTIONS(1352), - [sym_binary_integer_literal] = ACTIONS(1352), - [sym_decimal_floating_point_literal] = ACTIONS(1352), - [sym_hex_floating_point_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1352), - [anon_sym_r] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_null] = ACTIONS(1354), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_QMARK_QMARK] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1352), - [anon_sym_AMP_AMP] = ACTIONS(1352), - [sym_equality_operator] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1354), - [anon_sym_GT_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_TILDE_SLASH] = ACTIONS(1352), - [sym_increment_operator] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_await] = ACTIONS(1354), - [anon_sym_is] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_QMARK_DOT] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_assert] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_abstract] = ACTIONS(1354), - [anon_sym_class] = ACTIONS(1354), - [anon_sym_super] = ACTIONS(1354), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_var] = ACTIONS(1354), - [anon_sym_covariant] = ACTIONS(1354), - [anon_sym_Function] = ACTIONS(1354), - [anon_sym_get] = ACTIONS(1354), - [anon_sym_set] = ACTIONS(1354), - [anon_sym_new] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_final] = ACTIONS(1354), - [anon_sym_external] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1354), + [765] = { + [sym_type_arguments] = STATE(843), + [sym__type_args] = STATE(862), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1057), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1057), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1057), + [anon_sym_r] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_QMARK_QMARK] = ACTIONS(1057), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [sym_equality_operator] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_GT_GT_GT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_TILDE_SLASH] = ACTIONS(1057), + [sym_increment_operator] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1059), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_QMARK_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_super] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_var] = ACTIONS(1059), + [anon_sym_covariant] = ACTIONS(1059), + [anon_sym_Function] = ACTIONS(1059), + [anon_sym_get] = ACTIONS(1059), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_const] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_external] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(1059), [sym_comment] = ACTIONS(3), }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1356), - [sym_decimal_integer_literal] = ACTIONS(1358), - [sym_hex_integer_literal] = ACTIONS(1358), - [sym_octal_integer_literal] = ACTIONS(1356), - [sym_binary_integer_literal] = ACTIONS(1356), - [sym_decimal_floating_point_literal] = ACTIONS(1356), - [sym_hex_floating_point_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1356), - [anon_sym_r] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_null] = ACTIONS(1358), - [anon_sym_throw] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_QMARK_QMARK] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [sym_equality_operator] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1358), - [anon_sym_GT_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_TILDE_SLASH] = ACTIONS(1356), - [sym_increment_operator] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_await] = ACTIONS(1358), - [anon_sym_is] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_QMARK_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_assert] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_abstract] = ACTIONS(1358), - [anon_sym_class] = ACTIONS(1358), - [anon_sym_super] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_var] = ACTIONS(1358), - [anon_sym_covariant] = ACTIONS(1358), - [anon_sym_Function] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_new] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_final] = ACTIONS(1358), - [anon_sym_external] = ACTIONS(1358), - [anon_sym_this] = ACTIONS(1358), + [766] = { + [sym_cascade_section] = STATE(766), + [aux_sym__expression_repeat1] = STATE(766), + [ts_builtin_sym_end] = ACTIONS(1077), + [sym_identifier] = ACTIONS(1079), + [anon_sym_POUND] = ACTIONS(1077), + [sym_decimal_integer_literal] = ACTIONS(1079), + [sym_hex_integer_literal] = ACTIONS(1079), + [sym_octal_integer_literal] = ACTIONS(1077), + [sym_binary_integer_literal] = ACTIONS(1077), + [sym_decimal_floating_point_literal] = ACTIONS(1077), + [sym_hex_floating_point_literal] = ACTIONS(1079), + [anon_sym_true] = ACTIONS(1079), + [anon_sym_false] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1077), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1077), + [anon_sym_r] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1077), + [anon_sym_COMMA] = ACTIONS(1077), + [anon_sym_null] = ACTIONS(1079), + [anon_sym_throw] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1077), + [anon_sym_QMARK_QMARK] = ACTIONS(1077), + [anon_sym_QMARK] = ACTIONS(1079), + [anon_sym_PIPE_PIPE] = ACTIONS(1077), + [anon_sym_AMP_AMP] = ACTIONS(1077), + [sym_equality_operator] = ACTIONS(1077), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_PIPE] = ACTIONS(1079), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1077), + [anon_sym_GT_GT] = ACTIONS(1079), + [anon_sym_GT_GT_GT] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_SLASH] = ACTIONS(1079), + [anon_sym_PERCENT] = ACTIONS(1077), + [anon_sym_TILDE_SLASH] = ACTIONS(1077), + [sym_increment_operator] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1079), + [anon_sym_is] = ACTIONS(1079), + [anon_sym_as] = ACTIONS(1079), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_QMARK_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(2176), + [anon_sym_assert] = ACTIONS(1079), + [anon_sym_switch] = ACTIONS(1079), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_try] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(1077), + [anon_sym_enum] = ACTIONS(1079), + [anon_sym_abstract] = ACTIONS(1079), + [anon_sym_class] = ACTIONS(1079), + [anon_sym_super] = ACTIONS(1079), + [anon_sym_void] = ACTIONS(1079), + [anon_sym_var] = ACTIONS(1079), + [anon_sym_covariant] = ACTIONS(1079), + [anon_sym_Function] = ACTIONS(1079), + [anon_sym_get] = ACTIONS(1079), + [anon_sym_set] = ACTIONS(1079), + [anon_sym_new] = ACTIONS(1079), + [anon_sym_const] = ACTIONS(1079), + [anon_sym_final] = ACTIONS(1079), + [anon_sym_external] = ACTIONS(1079), + [anon_sym_this] = ACTIONS(1079), [sym_comment] = ACTIONS(3), }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_identifier] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1471), - [sym_decimal_integer_literal] = ACTIONS(1473), - [sym_hex_integer_literal] = ACTIONS(1473), - [sym_octal_integer_literal] = ACTIONS(1471), - [sym_binary_integer_literal] = ACTIONS(1471), - [sym_decimal_floating_point_literal] = ACTIONS(1471), - [sym_hex_floating_point_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1471), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1471), - [anon_sym_r] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1473), - [anon_sym_throw] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_QMARK_QMARK] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [sym_equality_operator] = ACTIONS(1471), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1471), - [anon_sym_LT_EQ] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_GT_GT_GT] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1471), - [anon_sym_TILDE_SLASH] = ACTIONS(1471), - [sym_increment_operator] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_is] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_QMARK_DOT] = ACTIONS(1471), - [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1473), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_yield] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_abstract] = ACTIONS(1473), - [anon_sym_class] = ACTIONS(1473), - [anon_sym_super] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1473), - [anon_sym_covariant] = ACTIONS(1473), - [anon_sym_Function] = ACTIONS(1473), - [anon_sym_get] = ACTIONS(1473), - [anon_sym_set] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_final] = ACTIONS(1473), - [anon_sym_external] = ACTIONS(1473), - [anon_sym_this] = ACTIONS(1473), + [767] = { + [sym_type_parameters] = STATE(3418), + [sym_parameter_type_list] = STATE(856), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1057), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1057), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1057), + [anon_sym_r] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_QMARK_QMARK] = ACTIONS(1057), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [sym_equality_operator] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_GT_GT_GT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_TILDE_SLASH] = ACTIONS(1057), + [sym_increment_operator] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1059), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_QMARK_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_super] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_var] = ACTIONS(1059), + [anon_sym_covariant] = ACTIONS(1059), + [anon_sym_Function] = ACTIONS(1059), + [anon_sym_get] = ACTIONS(1059), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_const] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_external] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(1059), [sym_comment] = ACTIONS(3), }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_identifier] = ACTIONS(1118), - [anon_sym_POUND] = ACTIONS(1116), - [sym_decimal_integer_literal] = ACTIONS(1118), - [sym_hex_integer_literal] = ACTIONS(1118), - [sym_octal_integer_literal] = ACTIONS(1116), - [sym_binary_integer_literal] = ACTIONS(1116), - [sym_decimal_floating_point_literal] = ACTIONS(1116), - [sym_hex_floating_point_literal] = ACTIONS(1118), - [anon_sym_true] = ACTIONS(1118), - [anon_sym_false] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1116), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1116), - [anon_sym_r] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_COMMA] = ACTIONS(1116), - [anon_sym_null] = ACTIONS(1118), - [anon_sym_throw] = ACTIONS(1118), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_QMARK_QMARK] = ACTIONS(1116), - [anon_sym_QMARK] = ACTIONS(1118), - [anon_sym_PIPE_PIPE] = ACTIONS(1116), - [anon_sym_AMP_AMP] = ACTIONS(1116), - [sym_equality_operator] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(1118), - [anon_sym_GT] = ACTIONS(1118), - [anon_sym_GT_EQ] = ACTIONS(1116), - [anon_sym_LT_EQ] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_CARET] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1116), - [anon_sym_GT_GT] = ACTIONS(1118), - [anon_sym_GT_GT_GT] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1116), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1116), - [anon_sym_TILDE_SLASH] = ACTIONS(1116), - [sym_increment_operator] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_await] = ACTIONS(1118), - [anon_sym_is] = ACTIONS(1118), - [anon_sym_as] = ACTIONS(1118), - [anon_sym_DOT] = ACTIONS(1118), - [anon_sym_QMARK_DOT] = ACTIONS(1116), - [anon_sym_DOT_DOT] = ACTIONS(1116), - [anon_sym_assert] = ACTIONS(1118), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_yield] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1118), - [anon_sym_try] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1118), - [anon_sym_abstract] = ACTIONS(1118), - [anon_sym_class] = ACTIONS(1118), - [anon_sym_super] = ACTIONS(1118), - [anon_sym_void] = ACTIONS(1118), - [anon_sym_var] = ACTIONS(1118), - [anon_sym_covariant] = ACTIONS(1118), - [anon_sym_Function] = ACTIONS(1118), - [anon_sym_get] = ACTIONS(1118), - [anon_sym_set] = ACTIONS(1118), - [anon_sym_new] = ACTIONS(1118), - [anon_sym_const] = ACTIONS(1118), - [anon_sym_final] = ACTIONS(1118), - [anon_sym_external] = ACTIONS(1118), - [anon_sym_this] = ACTIONS(1118), + [768] = { + [sym_shift_operator] = STATE(644), + [aux_sym_shift_expression_repeat1] = STATE(768), + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(598), + [sym_hex_integer_literal] = ACTIONS(598), + [sym_octal_integer_literal] = ACTIONS(596), + [sym_binary_integer_literal] = ACTIONS(596), + [sym_decimal_floating_point_literal] = ACTIONS(596), + [sym_hex_floating_point_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), + [anon_sym_r] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_null] = ACTIONS(598), + [anon_sym_throw] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_QMARK_QMARK] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [sym_equality_operator] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_GT_GT_GT] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_TILDE_SLASH] = ACTIONS(596), + [sym_increment_operator] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_await] = ACTIONS(598), + [anon_sym_is] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(598), + [anon_sym_QMARK_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_do] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_try] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_abstract] = ACTIONS(598), + [anon_sym_class] = ACTIONS(598), + [anon_sym_super] = ACTIONS(598), + [anon_sym_void] = ACTIONS(598), + [anon_sym_var] = ACTIONS(598), + [anon_sym_covariant] = ACTIONS(598), + [anon_sym_Function] = ACTIONS(598), + [anon_sym_get] = ACTIONS(598), + [anon_sym_set] = ACTIONS(598), + [anon_sym_new] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_final] = ACTIONS(598), + [anon_sym_external] = ACTIONS(598), + [anon_sym_this] = ACTIONS(598), [sym_comment] = ACTIONS(3), }, - [812] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1376), - [sym_decimal_integer_literal] = ACTIONS(1378), - [sym_hex_integer_literal] = ACTIONS(1378), - [sym_octal_integer_literal] = ACTIONS(1376), - [sym_binary_integer_literal] = ACTIONS(1376), - [sym_decimal_floating_point_literal] = ACTIONS(1376), - [sym_hex_floating_point_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1376), - [anon_sym_r] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1378), - [anon_sym_throw] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_QMARK_QMARK] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1376), - [sym_equality_operator] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1378), - [anon_sym_GT_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1378), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_TILDE_SLASH] = ACTIONS(1376), - [sym_increment_operator] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_is] = ACTIONS(1378), - [anon_sym_as] = ACTIONS(1378), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_QMARK_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_assert] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_try] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_AT] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_abstract] = ACTIONS(1378), - [anon_sym_class] = ACTIONS(1378), - [anon_sym_super] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1378), - [anon_sym_var] = ACTIONS(1378), - [anon_sym_covariant] = ACTIONS(1378), - [anon_sym_Function] = ACTIONS(1378), - [anon_sym_get] = ACTIONS(1378), - [anon_sym_set] = ACTIONS(1378), - [anon_sym_new] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_final] = ACTIONS(1378), - [anon_sym_external] = ACTIONS(1378), - [anon_sym_this] = ACTIONS(1378), + [769] = { + [sym_additive_operator] = STATE(643), + [aux_sym_additive_expression_repeat1] = STATE(769), + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [sym_decimal_integer_literal] = ACTIONS(594), + [sym_hex_integer_literal] = ACTIONS(594), + [sym_octal_integer_literal] = ACTIONS(592), + [sym_binary_integer_literal] = ACTIONS(592), + [sym_decimal_floating_point_literal] = ACTIONS(592), + [sym_hex_floating_point_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(592), + [anon_sym_r] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_null] = ACTIONS(594), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_QMARK_QMARK] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(592), + [sym_equality_operator] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_GT_GT_GT] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_TILDE_SLASH] = ACTIONS(592), + [sym_increment_operator] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_await] = ACTIONS(594), + [anon_sym_is] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_assert] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_do] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_try] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(594), + [anon_sym_abstract] = ACTIONS(594), + [anon_sym_class] = ACTIONS(594), + [anon_sym_super] = ACTIONS(594), + [anon_sym_void] = ACTIONS(594), + [anon_sym_var] = ACTIONS(594), + [anon_sym_covariant] = ACTIONS(594), + [anon_sym_Function] = ACTIONS(594), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_new] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_final] = ACTIONS(594), + [anon_sym_external] = ACTIONS(594), + [anon_sym_this] = ACTIONS(594), [sym_comment] = ACTIONS(3), }, - [813] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), - [anon_sym_POUND] = ACTIONS(1256), - [sym_decimal_integer_literal] = ACTIONS(1258), - [sym_hex_integer_literal] = ACTIONS(1258), - [sym_octal_integer_literal] = ACTIONS(1256), - [sym_binary_integer_literal] = ACTIONS(1256), - [sym_decimal_floating_point_literal] = ACTIONS(1256), - [sym_hex_floating_point_literal] = ACTIONS(1258), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1256), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1256), - [anon_sym_r] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1256), - [anon_sym_null] = ACTIONS(1258), - [anon_sym_throw] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_QMARK_QMARK] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [sym_equality_operator] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1258), - [anon_sym_GT_GT_GT] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_TILDE_SLASH] = ACTIONS(1256), - [sym_increment_operator] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_await] = ACTIONS(1258), - [anon_sym_is] = ACTIONS(1258), - [anon_sym_as] = ACTIONS(1258), - [anon_sym_DOT] = ACTIONS(1258), - [anon_sym_QMARK_DOT] = ACTIONS(1256), - [anon_sym_DOT_DOT] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1258), - [anon_sym_do] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_try] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_AT] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_abstract] = ACTIONS(1258), - [anon_sym_class] = ACTIONS(1258), - [anon_sym_super] = ACTIONS(1258), - [anon_sym_void] = ACTIONS(1258), - [anon_sym_var] = ACTIONS(1258), - [anon_sym_covariant] = ACTIONS(1258), - [anon_sym_Function] = ACTIONS(1258), - [anon_sym_get] = ACTIONS(1258), - [anon_sym_set] = ACTIONS(1258), - [anon_sym_new] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_final] = ACTIONS(1258), - [anon_sym_external] = ACTIONS(1258), - [anon_sym_this] = ACTIONS(1258), + [770] = { + [aux_sym_bitwise_and_expression_repeat1] = STATE(770), + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [sym_decimal_integer_literal] = ACTIONS(602), + [sym_hex_integer_literal] = ACTIONS(602), + [sym_octal_integer_literal] = ACTIONS(600), + [sym_binary_integer_literal] = ACTIONS(600), + [sym_decimal_floating_point_literal] = ACTIONS(600), + [sym_hex_floating_point_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(600), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(600), + [anon_sym_r] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_null] = ACTIONS(602), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_QMARK_QMARK] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [sym_equality_operator] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_GT_GT_GT] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_TILDE_SLASH] = ACTIONS(600), + [sym_increment_operator] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_await] = ACTIONS(602), + [anon_sym_is] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [anon_sym_QMARK_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_assert] = ACTIONS(602), + [anon_sym_switch] = ACTIONS(602), + [anon_sym_do] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_try] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_class] = ACTIONS(602), + [anon_sym_super] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_var] = ACTIONS(602), + [anon_sym_covariant] = ACTIONS(602), + [anon_sym_Function] = ACTIONS(602), + [anon_sym_get] = ACTIONS(602), + [anon_sym_set] = ACTIONS(602), + [anon_sym_new] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_final] = ACTIONS(602), + [anon_sym_external] = ACTIONS(602), + [anon_sym_this] = ACTIONS(602), [sym_comment] = ACTIONS(3), }, - [814] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_POUND] = ACTIONS(1328), - [sym_decimal_integer_literal] = ACTIONS(1330), - [sym_hex_integer_literal] = ACTIONS(1330), - [sym_octal_integer_literal] = ACTIONS(1328), - [sym_binary_integer_literal] = ACTIONS(1328), - [sym_decimal_floating_point_literal] = ACTIONS(1328), - [sym_hex_floating_point_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1328), - [anon_sym_r] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_COMMA] = ACTIONS(1328), - [anon_sym_null] = ACTIONS(1330), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_QMARK_QMARK] = ACTIONS(1328), - [anon_sym_QMARK] = ACTIONS(1330), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [sym_equality_operator] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_GT] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_LT_LT] = ACTIONS(1328), - [anon_sym_GT_GT] = ACTIONS(1330), - [anon_sym_GT_GT_GT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_SLASH] = ACTIONS(1330), - [anon_sym_PERCENT] = ACTIONS(1328), - [anon_sym_TILDE_SLASH] = ACTIONS(1328), - [sym_increment_operator] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_await] = ACTIONS(1330), - [anon_sym_is] = ACTIONS(1330), - [anon_sym_as] = ACTIONS(1330), - [anon_sym_DOT] = ACTIONS(1330), - [anon_sym_QMARK_DOT] = ACTIONS(1328), - [anon_sym_DOT_DOT] = ACTIONS(1328), - [anon_sym_assert] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_try] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_AT] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_abstract] = ACTIONS(1330), - [anon_sym_class] = ACTIONS(1330), - [anon_sym_super] = ACTIONS(1330), - [anon_sym_void] = ACTIONS(1330), - [anon_sym_var] = ACTIONS(1330), - [anon_sym_covariant] = ACTIONS(1330), - [anon_sym_Function] = ACTIONS(1330), - [anon_sym_get] = ACTIONS(1330), - [anon_sym_set] = ACTIONS(1330), - [anon_sym_new] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_final] = ACTIONS(1330), - [anon_sym_external] = ACTIONS(1330), - [anon_sym_this] = ACTIONS(1330), + [771] = { + [aux_sym_logical_and_expression_repeat1] = STATE(771), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(576), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), + [anon_sym_r] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_null] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_QMARK_QMARK] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [sym_equality_operator] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_GT_GT_GT] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(578), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_TILDE_SLASH] = ACTIONS(576), + [sym_increment_operator] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_await] = ACTIONS(578), + [anon_sym_is] = ACTIONS(578), + [anon_sym_as] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_QMARK_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_super] = ACTIONS(578), + [anon_sym_void] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [anon_sym_covariant] = ACTIONS(578), + [anon_sym_Function] = ACTIONS(578), + [anon_sym_get] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [anon_sym_const] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_external] = ACTIONS(578), + [anon_sym_this] = ACTIONS(578), [sym_comment] = ACTIONS(3), }, - [815] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [sym_decimal_integer_literal] = ACTIONS(1148), - [sym_hex_integer_literal] = ACTIONS(1148), - [sym_octal_integer_literal] = ACTIONS(1146), - [sym_binary_integer_literal] = ACTIONS(1146), - [sym_decimal_floating_point_literal] = ACTIONS(1146), - [sym_hex_floating_point_literal] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1146), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1146), - [anon_sym_r] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_throw] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_QMARK_QMARK] = ACTIONS(1146), - [anon_sym_QMARK] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [sym_equality_operator] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1146), - [anon_sym_LT_EQ] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_GT_GT_GT] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_PERCENT] = ACTIONS(1146), - [anon_sym_TILDE_SLASH] = ACTIONS(1146), - [sym_increment_operator] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_await] = ACTIONS(1148), - [anon_sym_is] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1148), - [anon_sym_QMARK_DOT] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1148), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_super] = ACTIONS(1148), - [anon_sym_void] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [anon_sym_covariant] = ACTIONS(1148), - [anon_sym_Function] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_external] = ACTIONS(1148), - [anon_sym_this] = ACTIONS(1148), + [772] = { + [aux_sym__if_null_expression] = STATE(772), + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [sym_decimal_integer_literal] = ACTIONS(1160), + [sym_hex_integer_literal] = ACTIONS(1160), + [sym_octal_integer_literal] = ACTIONS(1158), + [sym_binary_integer_literal] = ACTIONS(1158), + [sym_decimal_floating_point_literal] = ACTIONS(1158), + [sym_hex_floating_point_literal] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1158), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1158), + [anon_sym_r] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_COMMA] = ACTIONS(1158), + [anon_sym_null] = ACTIONS(1160), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_QMARK_QMARK] = ACTIONS(2190), + [anon_sym_QMARK] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_AMP_AMP] = ACTIONS(1158), + [sym_equality_operator] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_GT_EQ] = ACTIONS(1158), + [anon_sym_LT_EQ] = ACTIONS(1158), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1158), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_GT_GT_GT] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_SLASH] = ACTIONS(1160), + [anon_sym_PERCENT] = ACTIONS(1158), + [anon_sym_TILDE_SLASH] = ACTIONS(1158), + [sym_increment_operator] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_await] = ACTIONS(1160), + [anon_sym_is] = ACTIONS(1160), + [anon_sym_as] = ACTIONS(1160), + [anon_sym_DOT] = ACTIONS(1160), + [anon_sym_QMARK_DOT] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_assert] = ACTIONS(1160), + [anon_sym_switch] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_try] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_class] = ACTIONS(1160), + [anon_sym_super] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1160), + [anon_sym_var] = ACTIONS(1160), + [anon_sym_covariant] = ACTIONS(1160), + [anon_sym_Function] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_new] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_final] = ACTIONS(1160), + [anon_sym_external] = ACTIONS(1160), + [anon_sym_this] = ACTIONS(1160), [sym_comment] = ACTIONS(3), }, - [816] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1360), - [sym_decimal_integer_literal] = ACTIONS(1362), - [sym_hex_integer_literal] = ACTIONS(1362), - [sym_octal_integer_literal] = ACTIONS(1360), - [sym_binary_integer_literal] = ACTIONS(1360), - [sym_decimal_floating_point_literal] = ACTIONS(1360), - [sym_hex_floating_point_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1360), - [anon_sym_r] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_throw] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_QMARK_QMARK] = ACTIONS(1360), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1360), - [anon_sym_AMP_AMP] = ACTIONS(1360), - [sym_equality_operator] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1360), - [anon_sym_GT_GT] = ACTIONS(1362), - [anon_sym_GT_GT_GT] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1360), - [anon_sym_TILDE_SLASH] = ACTIONS(1360), - [sym_increment_operator] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_await] = ACTIONS(1362), - [anon_sym_is] = ACTIONS(1362), - [anon_sym_as] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_QMARK_DOT] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1360), - [anon_sym_assert] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(1362), - [anon_sym_class] = ACTIONS(1362), - [anon_sym_super] = ACTIONS(1362), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_var] = ACTIONS(1362), - [anon_sym_covariant] = ACTIONS(1362), - [anon_sym_Function] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_new] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_final] = ACTIONS(1362), - [anon_sym_external] = ACTIONS(1362), - [anon_sym_this] = ACTIONS(1362), + [773] = { + [sym__type_dot_identifier] = STATE(2490), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(1133), + [sym_decimal_integer_literal] = ACTIONS(1135), + [sym_hex_integer_literal] = ACTIONS(1135), + [sym_octal_integer_literal] = ACTIONS(1133), + [sym_binary_integer_literal] = ACTIONS(1133), + [sym_decimal_floating_point_literal] = ACTIONS(1133), + [sym_hex_floating_point_literal] = ACTIONS(1135), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_r] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_null] = ACTIONS(1135), + [anon_sym_throw] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_QMARK_QMARK] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [sym_equality_operator] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1133), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_GT_GT_GT] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_TILDE_SLASH] = ACTIONS(1133), + [sym_increment_operator] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1135), + [anon_sym_is] = ACTIONS(1135), + [anon_sym_as] = ACTIONS(1135), + [anon_sym_DOT] = ACTIONS(1140), + [anon_sym_QMARK_DOT] = ACTIONS(1133), + [anon_sym_DOT_DOT] = ACTIONS(1133), + [anon_sym_assert] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_abstract] = ACTIONS(1135), + [anon_sym_class] = ACTIONS(1135), + [anon_sym_super] = ACTIONS(1135), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_var] = ACTIONS(1135), + [anon_sym_covariant] = ACTIONS(1135), + [anon_sym_Function] = ACTIONS(1135), + [anon_sym_get] = ACTIONS(1135), + [anon_sym_set] = ACTIONS(1135), + [anon_sym_new] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_final] = ACTIONS(1135), + [anon_sym_external] = ACTIONS(1135), + [anon_sym_this] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, - [817] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1372), - [sym_decimal_integer_literal] = ACTIONS(1374), - [sym_hex_integer_literal] = ACTIONS(1374), - [sym_octal_integer_literal] = ACTIONS(1372), - [sym_binary_integer_literal] = ACTIONS(1372), - [sym_decimal_floating_point_literal] = ACTIONS(1372), - [sym_hex_floating_point_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1372), - [anon_sym_r] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_COMMA] = ACTIONS(1372), - [anon_sym_null] = ACTIONS(1374), - [anon_sym_throw] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_QMARK_QMARK] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [sym_equality_operator] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1374), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1374), - [anon_sym_GT_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1374), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_TILDE_SLASH] = ACTIONS(1372), - [sym_increment_operator] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_is] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(1374), - [anon_sym_QMARK_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_assert] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_try] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_AT] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_abstract] = ACTIONS(1374), - [anon_sym_class] = ACTIONS(1374), - [anon_sym_super] = ACTIONS(1374), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_var] = ACTIONS(1374), - [anon_sym_covariant] = ACTIONS(1374), - [anon_sym_Function] = ACTIONS(1374), - [anon_sym_get] = ACTIONS(1374), - [anon_sym_set] = ACTIONS(1374), - [anon_sym_new] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_final] = ACTIONS(1374), - [anon_sym_external] = ACTIONS(1374), - [anon_sym_this] = ACTIONS(1374), + [774] = { + [aux_sym__function_type_tails] = STATE(786), + [sym__function_type_tail] = STATE(786), + [sym__function_builtin_identifier] = STATE(3093), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1045), + [anon_sym_POUND] = ACTIONS(1043), + [sym_decimal_integer_literal] = ACTIONS(1045), + [sym_hex_integer_literal] = ACTIONS(1045), + [sym_octal_integer_literal] = ACTIONS(1043), + [sym_binary_integer_literal] = ACTIONS(1043), + [sym_decimal_floating_point_literal] = ACTIONS(1043), + [sym_hex_floating_point_literal] = ACTIONS(1045), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1043), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1043), + [anon_sym_r] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1045), + [anon_sym_throw] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_QMARK_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [sym_equality_operator] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_GT_GT_GT] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1043), + [anon_sym_TILDE_SLASH] = ACTIONS(1043), + [sym_increment_operator] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_is] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1043), + [anon_sym_assert] = ACTIONS(1045), + [anon_sym_switch] = ACTIONS(1045), + [anon_sym_do] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_abstract] = ACTIONS(1045), + [anon_sym_class] = ACTIONS(1045), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_void] = ACTIONS(1045), + [anon_sym_var] = ACTIONS(1045), + [anon_sym_covariant] = ACTIONS(1045), + [anon_sym_Function] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(1045), + [anon_sym_set] = ACTIONS(1045), + [anon_sym_new] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_final] = ACTIONS(1045), + [anon_sym_external] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(1045), [sym_comment] = ACTIONS(3), }, - [818] = { - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_identifier] = ACTIONS(1122), - [anon_sym_POUND] = ACTIONS(1120), - [sym_decimal_integer_literal] = ACTIONS(1122), - [sym_hex_integer_literal] = ACTIONS(1122), - [sym_octal_integer_literal] = ACTIONS(1120), - [sym_binary_integer_literal] = ACTIONS(1120), - [sym_decimal_floating_point_literal] = ACTIONS(1120), - [sym_hex_floating_point_literal] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1122), - [anon_sym_false] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1120), - [anon_sym_r] = ACTIONS(1122), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_COMMA] = ACTIONS(1120), - [anon_sym_null] = ACTIONS(1122), - [anon_sym_throw] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(1120), - [anon_sym_QMARK_QMARK] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [sym_equality_operator] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_CARET] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_GT_GT_GT] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_SLASH] = ACTIONS(1122), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_TILDE_SLASH] = ACTIONS(1120), - [sym_increment_operator] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_await] = ACTIONS(1122), - [anon_sym_is] = ACTIONS(1122), - [anon_sym_as] = ACTIONS(1122), - [anon_sym_DOT] = ACTIONS(1122), - [anon_sym_QMARK_DOT] = ACTIONS(1120), - [anon_sym_DOT_DOT] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_yield] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_try] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_abstract] = ACTIONS(1122), - [anon_sym_class] = ACTIONS(1122), - [anon_sym_super] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_var] = ACTIONS(1122), - [anon_sym_covariant] = ACTIONS(1122), - [anon_sym_Function] = ACTIONS(1122), - [anon_sym_get] = ACTIONS(1122), - [anon_sym_set] = ACTIONS(1122), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_final] = ACTIONS(1122), - [anon_sym_external] = ACTIONS(1122), - [anon_sym_this] = ACTIONS(1122), + [775] = { + [aux_sym_bitwise_xor_expression_repeat1] = STATE(775), + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(606), + [sym_hex_integer_literal] = ACTIONS(606), + [sym_octal_integer_literal] = ACTIONS(604), + [sym_binary_integer_literal] = ACTIONS(604), + [sym_decimal_floating_point_literal] = ACTIONS(604), + [sym_hex_floating_point_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), + [anon_sym_r] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_throw] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_QMARK_QMARK] = ACTIONS(604), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(604), + [sym_equality_operator] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_GT_GT_GT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_TILDE_SLASH] = ACTIONS(604), + [sym_increment_operator] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_await] = ACTIONS(606), + [anon_sym_is] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(606), + [anon_sym_QMARK_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_assert] = ACTIONS(606), + [anon_sym_switch] = ACTIONS(606), + [anon_sym_do] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_try] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_abstract] = ACTIONS(606), + [anon_sym_class] = ACTIONS(606), + [anon_sym_super] = ACTIONS(606), + [anon_sym_void] = ACTIONS(606), + [anon_sym_var] = ACTIONS(606), + [anon_sym_covariant] = ACTIONS(606), + [anon_sym_Function] = ACTIONS(606), + [anon_sym_get] = ACTIONS(606), + [anon_sym_set] = ACTIONS(606), + [anon_sym_new] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_final] = ACTIONS(606), + [anon_sym_external] = ACTIONS(606), + [anon_sym_this] = ACTIONS(606), [sym_comment] = ACTIONS(3), }, - [819] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_identifier] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1455), - [sym_decimal_integer_literal] = ACTIONS(1457), - [sym_hex_integer_literal] = ACTIONS(1457), - [sym_octal_integer_literal] = ACTIONS(1455), - [sym_binary_integer_literal] = ACTIONS(1455), - [sym_decimal_floating_point_literal] = ACTIONS(1455), - [sym_hex_floating_point_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1455), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1455), - [anon_sym_r] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_COMMA] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1457), - [anon_sym_throw] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_QMARK_QMARK] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [sym_equality_operator] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_GT_EQ] = ACTIONS(1455), - [anon_sym_LT_EQ] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1457), - [anon_sym_GT_GT_GT] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_SLASH] = ACTIONS(1457), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_TILDE_SLASH] = ACTIONS(1455), - [sym_increment_operator] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_is] = ACTIONS(1457), - [anon_sym_as] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_QMARK_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_assert] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_try] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_abstract] = ACTIONS(1457), - [anon_sym_class] = ACTIONS(1457), - [anon_sym_super] = ACTIONS(1457), - [anon_sym_void] = ACTIONS(1457), - [anon_sym_var] = ACTIONS(1457), - [anon_sym_covariant] = ACTIONS(1457), - [anon_sym_Function] = ACTIONS(1457), - [anon_sym_get] = ACTIONS(1457), - [anon_sym_set] = ACTIONS(1457), - [anon_sym_new] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_final] = ACTIONS(1457), - [anon_sym_external] = ACTIONS(1457), - [anon_sym_this] = ACTIONS(1457), + [776] = { + [aux_sym__function_type_tails] = STATE(786), + [sym__function_type_tail] = STATE(786), + [sym__function_builtin_identifier] = STATE(3093), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1037), + [sym_decimal_integer_literal] = ACTIONS(1039), + [sym_hex_integer_literal] = ACTIONS(1039), + [sym_octal_integer_literal] = ACTIONS(1037), + [sym_binary_integer_literal] = ACTIONS(1037), + [sym_decimal_floating_point_literal] = ACTIONS(1037), + [sym_hex_floating_point_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1039), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1037), + [anon_sym_r] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1039), + [anon_sym_throw] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_QMARK_QMARK] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [sym_equality_operator] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_GT_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1039), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_TILDE_SLASH] = ACTIONS(1037), + [sym_increment_operator] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1039), + [anon_sym_is] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_assert] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_try] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_super] = ACTIONS(1039), + [anon_sym_void] = ACTIONS(1039), + [anon_sym_var] = ACTIONS(1039), + [anon_sym_covariant] = ACTIONS(1039), + [anon_sym_Function] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_new] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_final] = ACTIONS(1039), + [anon_sym_external] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, - [820] = { - [sym_multiplicative_operator] = STATE(637), - [aux_sym_multiplicative_expression_repeat1] = STATE(820), - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [anon_sym_POUND] = ACTIONS(573), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [anon_sym_true] = ACTIONS(575), - [anon_sym_false] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [anon_sym_SQUOTE] = ACTIONS(575), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(573), - [anon_sym_r] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_null] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_QMARK_QMARK] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_PIPE_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(573), - [sym_equality_operator] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(575), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(573), - [anon_sym_LT_EQ] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(575), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_GT_GT_GT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_TILDE_SLASH] = ACTIONS(1013), - [sym_increment_operator] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(575), - [anon_sym_await] = ACTIONS(575), - [anon_sym_is] = ACTIONS(575), - [anon_sym_as] = ACTIONS(575), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_super] = ACTIONS(575), - [anon_sym_void] = ACTIONS(575), - [anon_sym_var] = ACTIONS(575), - [anon_sym_covariant] = ACTIONS(575), - [anon_sym_Function] = ACTIONS(575), - [anon_sym_get] = ACTIONS(575), - [anon_sym_set] = ACTIONS(575), - [anon_sym_new] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_external] = ACTIONS(575), - [anon_sym_this] = ACTIONS(575), + [777] = { + [aux_sym_logical_or_expression_repeat1] = STATE(777), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(572), + [anon_sym_r] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_null] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_QMARK_QMARK] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(572), + [sym_equality_operator] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(574), + [anon_sym_GT_GT_GT] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(574), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_TILDE_SLASH] = ACTIONS(572), + [sym_increment_operator] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_is] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(574), + [anon_sym_QMARK_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_super] = ACTIONS(574), + [anon_sym_void] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [anon_sym_covariant] = ACTIONS(574), + [anon_sym_Function] = ACTIONS(574), + [anon_sym_get] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_external] = ACTIONS(574), + [anon_sym_this] = ACTIONS(574), [sym_comment] = ACTIONS(3), }, - [821] = { - [sym_additive_operator] = STATE(625), - [aux_sym_additive_expression_repeat1] = STATE(821), + [778] = { + [aux_sym_bitwise_or_expression_repeat1] = STATE(778), [ts_builtin_sym_end] = ACTIONS(608), [sym_identifier] = ACTIONS(610), [anon_sym_POUND] = ACTIONS(608), @@ -89151,14 +87324,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(610), [anon_sym_GT_EQ] = ACTIONS(608), [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(2201), [anon_sym_CARET] = ACTIONS(608), [anon_sym_AMP] = ACTIONS(610), [anon_sym_LT_LT] = ACTIONS(608), [anon_sym_GT_GT] = ACTIONS(610), [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), [anon_sym_STAR] = ACTIONS(608), [anon_sym_SLASH] = ACTIONS(610), [anon_sym_PERCENT] = ACTIONS(608), @@ -89169,6 +87342,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(610), [anon_sym_is] = ACTIONS(610), [anon_sym_as] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(610), + [anon_sym_QMARK_DOT] = ACTIONS(608), [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_assert] = ACTIONS(610), [anon_sym_switch] = ACTIONS(610), @@ -89199,1565 +87374,2803 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(610), [sym_comment] = ACTIONS(3), }, - [822] = { - [sym_shift_operator] = STATE(635), - [aux_sym_shift_expression_repeat1] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [sym_decimal_integer_literal] = ACTIONS(598), - [sym_hex_integer_literal] = ACTIONS(598), - [sym_octal_integer_literal] = ACTIONS(596), - [sym_binary_integer_literal] = ACTIONS(596), - [sym_decimal_floating_point_literal] = ACTIONS(596), - [sym_hex_floating_point_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), - [anon_sym_r] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_throw] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(596), - [sym_equality_operator] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_GT_GT_GT] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_TILDE_SLASH] = ACTIONS(596), - [sym_increment_operator] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_await] = ACTIONS(598), - [anon_sym_is] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_switch] = ACTIONS(598), - [anon_sym_do] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_try] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_abstract] = ACTIONS(598), - [anon_sym_class] = ACTIONS(598), - [anon_sym_super] = ACTIONS(598), - [anon_sym_void] = ACTIONS(598), - [anon_sym_var] = ACTIONS(598), - [anon_sym_covariant] = ACTIONS(598), - [anon_sym_Function] = ACTIONS(598), - [anon_sym_get] = ACTIONS(598), - [anon_sym_set] = ACTIONS(598), - [anon_sym_new] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_final] = ACTIONS(598), - [anon_sym_external] = ACTIONS(598), - [anon_sym_this] = ACTIONS(598), + [779] = { + [aux_sym_bitwise_and_expression_repeat1] = STATE(770), + [ts_builtin_sym_end] = ACTIONS(1095), + [sym_identifier] = ACTIONS(1097), + [anon_sym_POUND] = ACTIONS(1095), + [sym_decimal_integer_literal] = ACTIONS(1097), + [sym_hex_integer_literal] = ACTIONS(1097), + [sym_octal_integer_literal] = ACTIONS(1095), + [sym_binary_integer_literal] = ACTIONS(1095), + [sym_decimal_floating_point_literal] = ACTIONS(1095), + [sym_hex_floating_point_literal] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1097), + [anon_sym_SQUOTE] = ACTIONS(1097), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1095), + [anon_sym_r] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_null] = ACTIONS(1097), + [anon_sym_throw] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_QMARK_QMARK] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_PIPE_PIPE] = ACTIONS(1095), + [anon_sym_AMP_AMP] = ACTIONS(1095), + [sym_equality_operator] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1097), + [anon_sym_GT_EQ] = ACTIONS(1095), + [anon_sym_LT_EQ] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1097), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1097), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_GT_GT] = ACTIONS(1097), + [anon_sym_GT_GT_GT] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_PERCENT] = ACTIONS(1095), + [anon_sym_TILDE_SLASH] = ACTIONS(1095), + [sym_increment_operator] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1097), + [anon_sym_await] = ACTIONS(1097), + [anon_sym_is] = ACTIONS(1097), + [anon_sym_as] = ACTIONS(1097), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_QMARK_DOT] = ACTIONS(1095), + [anon_sym_DOT_DOT] = ACTIONS(1095), + [anon_sym_assert] = ACTIONS(1097), + [anon_sym_switch] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_yield] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_AT] = ACTIONS(1095), + [anon_sym_enum] = ACTIONS(1097), + [anon_sym_abstract] = ACTIONS(1097), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_super] = ACTIONS(1097), + [anon_sym_void] = ACTIONS(1097), + [anon_sym_var] = ACTIONS(1097), + [anon_sym_covariant] = ACTIONS(1097), + [anon_sym_Function] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_final] = ACTIONS(1097), + [anon_sym_external] = ACTIONS(1097), + [anon_sym_this] = ACTIONS(1097), [sym_comment] = ACTIONS(3), }, - [823] = { - [ts_builtin_sym_end] = ACTIONS(807), - [sym_identifier] = ACTIONS(809), - [anon_sym_POUND] = ACTIONS(807), - [sym_decimal_integer_literal] = ACTIONS(809), - [sym_hex_integer_literal] = ACTIONS(809), - [sym_octal_integer_literal] = ACTIONS(807), - [sym_binary_integer_literal] = ACTIONS(807), - [sym_decimal_floating_point_literal] = ACTIONS(807), - [sym_hex_floating_point_literal] = ACTIONS(809), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(807), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(807), - [anon_sym_r] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_null] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(807), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [sym_equality_operator] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_LT_LT] = ACTIONS(807), - [anon_sym_GT_GT] = ACTIONS(809), - [anon_sym_GT_GT_GT] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_PERCENT] = ACTIONS(807), - [anon_sym_TILDE_SLASH] = ACTIONS(807), - [sym_increment_operator] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(809), - [anon_sym_await] = ACTIONS(809), - [anon_sym_is] = ACTIONS(809), - [anon_sym_as] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_QMARK_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_assert] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_try] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(807), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_class] = ACTIONS(809), - [anon_sym_super] = ACTIONS(809), - [anon_sym_void] = ACTIONS(809), - [anon_sym_var] = ACTIONS(809), - [anon_sym_covariant] = ACTIONS(809), - [anon_sym_Function] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_new] = ACTIONS(809), - [anon_sym_const] = ACTIONS(809), - [anon_sym_final] = ACTIONS(809), - [anon_sym_external] = ACTIONS(809), - [anon_sym_this] = ACTIONS(809), + [780] = { + [aux_sym_bitwise_xor_expression_repeat1] = STATE(775), + [ts_builtin_sym_end] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1143), + [sym_decimal_integer_literal] = ACTIONS(1145), + [sym_hex_integer_literal] = ACTIONS(1145), + [sym_octal_integer_literal] = ACTIONS(1143), + [sym_binary_integer_literal] = ACTIONS(1143), + [sym_decimal_floating_point_literal] = ACTIONS(1143), + [sym_hex_floating_point_literal] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1143), + [anon_sym_r] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1145), + [anon_sym_throw] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_QMARK_QMARK] = ACTIONS(1143), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_PIPE_PIPE] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [sym_equality_operator] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_LT_LT] = ACTIONS(1143), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_GT_GT_GT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1143), + [anon_sym_TILDE_SLASH] = ACTIONS(1143), + [sym_increment_operator] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_is] = ACTIONS(1145), + [anon_sym_as] = ACTIONS(1145), + [anon_sym_DOT] = ACTIONS(1145), + [anon_sym_QMARK_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_assert] = ACTIONS(1145), + [anon_sym_switch] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_yield] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_abstract] = ACTIONS(1145), + [anon_sym_class] = ACTIONS(1145), + [anon_sym_super] = ACTIONS(1145), + [anon_sym_void] = ACTIONS(1145), + [anon_sym_var] = ACTIONS(1145), + [anon_sym_covariant] = ACTIONS(1145), + [anon_sym_Function] = ACTIONS(1145), + [anon_sym_get] = ACTIONS(1145), + [anon_sym_set] = ACTIONS(1145), + [anon_sym_new] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_final] = ACTIONS(1145), + [anon_sym_external] = ACTIONS(1145), + [anon_sym_this] = ACTIONS(1145), [sym_comment] = ACTIONS(3), }, - [824] = { - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_identifier] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1451), - [sym_decimal_integer_literal] = ACTIONS(1453), - [sym_hex_integer_literal] = ACTIONS(1453), - [sym_octal_integer_literal] = ACTIONS(1451), - [sym_binary_integer_literal] = ACTIONS(1451), - [sym_decimal_floating_point_literal] = ACTIONS(1451), - [sym_hex_floating_point_literal] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1451), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1451), - [anon_sym_r] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_throw] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_QMARK_QMARK] = ACTIONS(1451), - [anon_sym_QMARK] = ACTIONS(1453), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [sym_equality_operator] = ACTIONS(1451), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1451), - [anon_sym_GT_GT] = ACTIONS(1453), - [anon_sym_GT_GT_GT] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_SLASH] = ACTIONS(1453), - [anon_sym_PERCENT] = ACTIONS(1451), - [anon_sym_TILDE_SLASH] = ACTIONS(1451), - [sym_increment_operator] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_await] = ACTIONS(1453), - [anon_sym_is] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1453), - [anon_sym_DOT] = ACTIONS(1453), - [anon_sym_QMARK_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_yield] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_AT] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_abstract] = ACTIONS(1453), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_super] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_var] = ACTIONS(1453), - [anon_sym_covariant] = ACTIONS(1453), - [anon_sym_Function] = ACTIONS(1453), - [anon_sym_get] = ACTIONS(1453), - [anon_sym_set] = ACTIONS(1453), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_final] = ACTIONS(1453), - [anon_sym_external] = ACTIONS(1453), - [anon_sym_this] = ACTIONS(1453), + [781] = { + [aux_sym_bitwise_or_expression_repeat1] = STATE(778), + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_identifier] = ACTIONS(1105), + [anon_sym_POUND] = ACTIONS(1103), + [sym_decimal_integer_literal] = ACTIONS(1105), + [sym_hex_integer_literal] = ACTIONS(1105), + [sym_octal_integer_literal] = ACTIONS(1103), + [sym_binary_integer_literal] = ACTIONS(1103), + [sym_decimal_floating_point_literal] = ACTIONS(1103), + [sym_hex_floating_point_literal] = ACTIONS(1105), + [anon_sym_true] = ACTIONS(1105), + [anon_sym_false] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1103), + [anon_sym_r] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_throw] = ACTIONS(1105), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_QMARK_QMARK] = ACTIONS(1103), + [anon_sym_QMARK] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1103), + [sym_equality_operator] = ACTIONS(1103), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_EQ] = ACTIONS(1103), + [anon_sym_LT_EQ] = ACTIONS(1103), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1103), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_GT_GT_GT] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1103), + [anon_sym_TILDE_SLASH] = ACTIONS(1103), + [sym_increment_operator] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1105), + [anon_sym_await] = ACTIONS(1105), + [anon_sym_is] = ACTIONS(1105), + [anon_sym_as] = ACTIONS(1105), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_QMARK_DOT] = ACTIONS(1103), + [anon_sym_DOT_DOT] = ACTIONS(1103), + [anon_sym_assert] = ACTIONS(1105), + [anon_sym_switch] = ACTIONS(1105), + [anon_sym_do] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_yield] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_try] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_abstract] = ACTIONS(1105), + [anon_sym_class] = ACTIONS(1105), + [anon_sym_super] = ACTIONS(1105), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_covariant] = ACTIONS(1105), + [anon_sym_Function] = ACTIONS(1105), + [anon_sym_get] = ACTIONS(1105), + [anon_sym_set] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1105), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_final] = ACTIONS(1105), + [anon_sym_external] = ACTIONS(1105), + [anon_sym_this] = ACTIONS(1105), [sym_comment] = ACTIONS(3), }, - [825] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_identifier] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1447), - [sym_decimal_integer_literal] = ACTIONS(1449), - [sym_hex_integer_literal] = ACTIONS(1449), - [sym_octal_integer_literal] = ACTIONS(1447), - [sym_binary_integer_literal] = ACTIONS(1447), - [sym_decimal_floating_point_literal] = ACTIONS(1447), - [sym_hex_floating_point_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1447), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1447), - [anon_sym_r] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1449), - [anon_sym_throw] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_QMARK_QMARK] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [sym_equality_operator] = ACTIONS(1447), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_TILDE_SLASH] = ACTIONS(1447), - [sym_increment_operator] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_is] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_QMARK_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_assert] = ACTIONS(1449), - [anon_sym_switch] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_yield] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_try] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1449), - [anon_sym_abstract] = ACTIONS(1449), - [anon_sym_class] = ACTIONS(1449), - [anon_sym_super] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_var] = ACTIONS(1449), - [anon_sym_covariant] = ACTIONS(1449), - [anon_sym_Function] = ACTIONS(1449), - [anon_sym_get] = ACTIONS(1449), - [anon_sym_set] = ACTIONS(1449), - [anon_sym_new] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_final] = ACTIONS(1449), - [anon_sym_external] = ACTIONS(1449), - [anon_sym_this] = ACTIONS(1449), + [782] = { + [aux_sym_logical_and_expression_repeat1] = STATE(771), + [ts_builtin_sym_end] = ACTIONS(1117), + [sym_identifier] = ACTIONS(1119), + [anon_sym_POUND] = ACTIONS(1117), + [sym_decimal_integer_literal] = ACTIONS(1119), + [sym_hex_integer_literal] = ACTIONS(1119), + [sym_octal_integer_literal] = ACTIONS(1117), + [sym_binary_integer_literal] = ACTIONS(1117), + [sym_decimal_floating_point_literal] = ACTIONS(1117), + [sym_hex_floating_point_literal] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1117), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1117), + [anon_sym_r] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1117), + [anon_sym_null] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_QMARK_QMARK] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1119), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_AMP_AMP] = ACTIONS(1117), + [sym_equality_operator] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_EQ] = ACTIONS(1117), + [anon_sym_LT_EQ] = ACTIONS(1117), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_CARET] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1119), + [anon_sym_GT_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_SLASH] = ACTIONS(1119), + [anon_sym_PERCENT] = ACTIONS(1117), + [anon_sym_TILDE_SLASH] = ACTIONS(1117), + [sym_increment_operator] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_is] = ACTIONS(1119), + [anon_sym_as] = ACTIONS(1119), + [anon_sym_DOT] = ACTIONS(1119), + [anon_sym_QMARK_DOT] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_assert] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1119), + [anon_sym_continue] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1119), + [anon_sym_return] = ACTIONS(1119), + [anon_sym_try] = ACTIONS(1119), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1119), + [anon_sym_abstract] = ACTIONS(1119), + [anon_sym_class] = ACTIONS(1119), + [anon_sym_super] = ACTIONS(1119), + [anon_sym_void] = ACTIONS(1119), + [anon_sym_var] = ACTIONS(1119), + [anon_sym_covariant] = ACTIONS(1119), + [anon_sym_Function] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_const] = ACTIONS(1119), + [anon_sym_final] = ACTIONS(1119), + [anon_sym_external] = ACTIONS(1119), + [anon_sym_this] = ACTIONS(1119), [sym_comment] = ACTIONS(3), }, - [826] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_identifier] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1479), - [sym_decimal_integer_literal] = ACTIONS(1481), - [sym_hex_integer_literal] = ACTIONS(1481), - [sym_octal_integer_literal] = ACTIONS(1479), - [sym_binary_integer_literal] = ACTIONS(1479), - [sym_decimal_floating_point_literal] = ACTIONS(1479), - [sym_hex_floating_point_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1479), - [anon_sym_r] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1481), - [anon_sym_throw] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_QMARK_QMARK] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [sym_equality_operator] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1481), - [anon_sym_GT_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1481), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_TILDE_SLASH] = ACTIONS(1479), - [sym_increment_operator] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_await] = ACTIONS(1481), - [anon_sym_is] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1481), - [anon_sym_QMARK_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_yield] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_abstract] = ACTIONS(1481), - [anon_sym_class] = ACTIONS(1481), - [anon_sym_super] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1481), - [anon_sym_var] = ACTIONS(1481), - [anon_sym_covariant] = ACTIONS(1481), - [anon_sym_Function] = ACTIONS(1481), - [anon_sym_get] = ACTIONS(1481), - [anon_sym_set] = ACTIONS(1481), - [anon_sym_new] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_final] = ACTIONS(1481), - [anon_sym_external] = ACTIONS(1481), - [anon_sym_this] = ACTIONS(1481), + [783] = { + [aux_sym_logical_or_expression_repeat1] = STATE(777), + [ts_builtin_sym_end] = ACTIONS(1121), + [sym_identifier] = ACTIONS(1123), + [anon_sym_POUND] = ACTIONS(1121), + [sym_decimal_integer_literal] = ACTIONS(1123), + [sym_hex_integer_literal] = ACTIONS(1123), + [sym_octal_integer_literal] = ACTIONS(1121), + [sym_binary_integer_literal] = ACTIONS(1121), + [sym_decimal_floating_point_literal] = ACTIONS(1121), + [sym_hex_floating_point_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1123), + [anon_sym_false] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1121), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1121), + [anon_sym_r] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_QMARK_QMARK] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1121), + [anon_sym_AMP_AMP] = ACTIONS(1121), + [sym_equality_operator] = ACTIONS(1121), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_EQ] = ACTIONS(1121), + [anon_sym_LT_EQ] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_CARET] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_LT] = ACTIONS(1121), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_GT_GT_GT] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_SLASH] = ACTIONS(1123), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_TILDE_SLASH] = ACTIONS(1121), + [sym_increment_operator] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_await] = ACTIONS(1123), + [anon_sym_is] = ACTIONS(1123), + [anon_sym_as] = ACTIONS(1123), + [anon_sym_DOT] = ACTIONS(1123), + [anon_sym_QMARK_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_assert] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_yield] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_try] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_abstract] = ACTIONS(1123), + [anon_sym_class] = ACTIONS(1123), + [anon_sym_super] = ACTIONS(1123), + [anon_sym_void] = ACTIONS(1123), + [anon_sym_var] = ACTIONS(1123), + [anon_sym_covariant] = ACTIONS(1123), + [anon_sym_Function] = ACTIONS(1123), + [anon_sym_get] = ACTIONS(1123), + [anon_sym_set] = ACTIONS(1123), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_final] = ACTIONS(1123), + [anon_sym_external] = ACTIONS(1123), + [anon_sym_this] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, - [827] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1491), - [sym_decimal_integer_literal] = ACTIONS(1493), - [sym_hex_integer_literal] = ACTIONS(1493), - [sym_octal_integer_literal] = ACTIONS(1491), - [sym_binary_integer_literal] = ACTIONS(1491), - [sym_decimal_floating_point_literal] = ACTIONS(1491), - [sym_hex_floating_point_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1491), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1491), - [anon_sym_r] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1493), - [anon_sym_throw] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_QMARK_QMARK] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [sym_equality_operator] = ACTIONS(1491), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1491), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_GT_GT_GT] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_TILDE_SLASH] = ACTIONS(1491), - [sym_increment_operator] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_is] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_QMARK_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_yield] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_abstract] = ACTIONS(1493), - [anon_sym_class] = ACTIONS(1493), - [anon_sym_super] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1493), - [anon_sym_var] = ACTIONS(1493), - [anon_sym_covariant] = ACTIONS(1493), - [anon_sym_Function] = ACTIONS(1493), - [anon_sym_get] = ACTIONS(1493), - [anon_sym_set] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_final] = ACTIONS(1493), - [anon_sym_external] = ACTIONS(1493), - [anon_sym_this] = ACTIONS(1493), + [784] = { + [aux_sym__if_null_expression] = STATE(772), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1125), + [sym_decimal_integer_literal] = ACTIONS(1127), + [sym_hex_integer_literal] = ACTIONS(1127), + [sym_octal_integer_literal] = ACTIONS(1125), + [sym_binary_integer_literal] = ACTIONS(1125), + [sym_decimal_floating_point_literal] = ACTIONS(1125), + [sym_hex_floating_point_literal] = ACTIONS(1127), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1125), + [anon_sym_r] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1125), + [anon_sym_null] = ACTIONS(1127), + [anon_sym_throw] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_QMARK_QMARK] = ACTIONS(1125), + [anon_sym_QMARK] = ACTIONS(1127), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [sym_equality_operator] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [anon_sym_GT_EQ] = ACTIONS(1125), + [anon_sym_LT_EQ] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1127), + [anon_sym_GT_GT_GT] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1125), + [anon_sym_TILDE_SLASH] = ACTIONS(1125), + [sym_increment_operator] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1127), + [anon_sym_is] = ACTIONS(1127), + [anon_sym_as] = ACTIONS(1127), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_QMARK_DOT] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_assert] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_yield] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_try] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_abstract] = ACTIONS(1127), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_super] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1127), + [anon_sym_var] = ACTIONS(1127), + [anon_sym_covariant] = ACTIONS(1127), + [anon_sym_Function] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_final] = ACTIONS(1127), + [anon_sym_external] = ACTIONS(1127), + [anon_sym_this] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, - [828] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1254), - [anon_sym_POUND] = ACTIONS(1252), - [sym_decimal_integer_literal] = ACTIONS(1254), - [sym_hex_integer_literal] = ACTIONS(1254), - [sym_octal_integer_literal] = ACTIONS(1252), - [sym_binary_integer_literal] = ACTIONS(1252), - [sym_decimal_floating_point_literal] = ACTIONS(1252), - [sym_hex_floating_point_literal] = ACTIONS(1254), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1252), - [anon_sym_r] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1254), - [anon_sym_throw] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_QMARK_QMARK] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [sym_equality_operator] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1254), - [anon_sym_GT_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_TILDE_SLASH] = ACTIONS(1252), - [sym_increment_operator] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_await] = ACTIONS(1254), - [anon_sym_is] = ACTIONS(1254), - [anon_sym_as] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(1252), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_yield] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_abstract] = ACTIONS(1254), - [anon_sym_class] = ACTIONS(1254), - [anon_sym_super] = ACTIONS(1254), - [anon_sym_void] = ACTIONS(1254), - [anon_sym_var] = ACTIONS(1254), - [anon_sym_covariant] = ACTIONS(1254), - [anon_sym_Function] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_final] = ACTIONS(1254), - [anon_sym_external] = ACTIONS(1254), - [anon_sym_this] = ACTIONS(1254), + [785] = { + [sym__type_dot_identifier] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1111), + [sym_decimal_integer_literal] = ACTIONS(1113), + [sym_hex_integer_literal] = ACTIONS(1113), + [sym_octal_integer_literal] = ACTIONS(1111), + [sym_binary_integer_literal] = ACTIONS(1111), + [sym_decimal_floating_point_literal] = ACTIONS(1111), + [sym_hex_floating_point_literal] = ACTIONS(1113), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1111), + [anon_sym_r] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_null] = ACTIONS(1113), + [anon_sym_throw] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_QMARK_QMARK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [sym_equality_operator] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1113), + [anon_sym_GT_GT_GT] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1111), + [anon_sym_TILDE_SLASH] = ACTIONS(1111), + [sym_increment_operator] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_is] = ACTIONS(1113), + [anon_sym_as] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_QMARK_DOT] = ACTIONS(1111), + [anon_sym_DOT_DOT] = ACTIONS(1111), + [anon_sym_assert] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1111), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_abstract] = ACTIONS(1113), + [anon_sym_class] = ACTIONS(1113), + [anon_sym_super] = ACTIONS(1113), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_var] = ACTIONS(1113), + [anon_sym_covariant] = ACTIONS(1113), + [anon_sym_Function] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_final] = ACTIONS(1113), + [anon_sym_external] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(1113), + [sym_comment] = ACTIONS(3), + }, + [786] = { + [aux_sym__function_type_tails] = STATE(786), + [sym__function_type_tail] = STATE(786), + [sym__function_builtin_identifier] = STATE(3093), + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(1030), + [sym_decimal_integer_literal] = ACTIONS(1032), + [sym_hex_integer_literal] = ACTIONS(1032), + [sym_octal_integer_literal] = ACTIONS(1030), + [sym_binary_integer_literal] = ACTIONS(1030), + [sym_decimal_floating_point_literal] = ACTIONS(1030), + [sym_hex_floating_point_literal] = ACTIONS(1032), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1030), + [anon_sym_r] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1032), + [anon_sym_throw] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_QMARK_QMARK] = ACTIONS(1030), + [anon_sym_QMARK] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [sym_equality_operator] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1030), + [anon_sym_LT_EQ] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1030), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_GT_GT_GT] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1030), + [anon_sym_TILDE_SLASH] = ACTIONS(1030), + [sym_increment_operator] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_await] = ACTIONS(1032), + [anon_sym_is] = ACTIONS(1032), + [anon_sym_as] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_assert] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1032), + [anon_sym_class] = ACTIONS(1032), + [anon_sym_super] = ACTIONS(1032), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_var] = ACTIONS(1032), + [anon_sym_covariant] = ACTIONS(1032), + [anon_sym_Function] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(1032), + [anon_sym_set] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_final] = ACTIONS(1032), + [anon_sym_external] = ACTIONS(1032), + [anon_sym_this] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [787] = { + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(1269), + [sym_decimal_integer_literal] = ACTIONS(1271), + [sym_hex_integer_literal] = ACTIONS(1271), + [sym_octal_integer_literal] = ACTIONS(1269), + [sym_binary_integer_literal] = ACTIONS(1269), + [sym_decimal_floating_point_literal] = ACTIONS(1269), + [sym_hex_floating_point_literal] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1269), + [anon_sym_r] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_throw] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_QMARK_QMARK] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [sym_equality_operator] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_GT_GT_GT] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1269), + [anon_sym_TILDE_SLASH] = ACTIONS(1269), + [sym_increment_operator] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_is] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_QMARK_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1269), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_abstract] = ACTIONS(1271), + [anon_sym_class] = ACTIONS(1271), + [anon_sym_super] = ACTIONS(1271), + [anon_sym_void] = ACTIONS(1271), + [anon_sym_var] = ACTIONS(1271), + [anon_sym_covariant] = ACTIONS(1271), + [anon_sym_Function] = ACTIONS(1271), + [anon_sym_get] = ACTIONS(1271), + [anon_sym_set] = ACTIONS(1271), + [anon_sym_new] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_final] = ACTIONS(1271), + [anon_sym_external] = ACTIONS(1271), + [anon_sym_this] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + }, + [788] = { + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_QMARK_QMARK] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + }, + [789] = { + [ts_builtin_sym_end] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1473), + [sym_decimal_integer_literal] = ACTIONS(1475), + [sym_hex_integer_literal] = ACTIONS(1475), + [sym_octal_integer_literal] = ACTIONS(1473), + [sym_binary_integer_literal] = ACTIONS(1473), + [sym_decimal_floating_point_literal] = ACTIONS(1473), + [sym_hex_floating_point_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1473), + [anon_sym_r] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1475), + [anon_sym_throw] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_QMARK_QMARK] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [sym_equality_operator] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1475), + [anon_sym_GT_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_TILDE_SLASH] = ACTIONS(1473), + [sym_increment_operator] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_await] = ACTIONS(1475), + [anon_sym_is] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_QMARK_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1475), + [anon_sym_switch] = ACTIONS(1475), + [anon_sym_do] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_yield] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_abstract] = ACTIONS(1475), + [anon_sym_class] = ACTIONS(1475), + [anon_sym_super] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1475), + [anon_sym_var] = ACTIONS(1475), + [anon_sym_covariant] = ACTIONS(1475), + [anon_sym_Function] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_new] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_final] = ACTIONS(1475), + [anon_sym_external] = ACTIONS(1475), + [anon_sym_this] = ACTIONS(1475), + [sym_comment] = ACTIONS(3), + }, + [790] = { + [sym_type_arguments] = STATE(933), + [sym__type_args] = STATE(916), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1057), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1057), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1057), + [anon_sym_r] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_QMARK_QMARK] = ACTIONS(1057), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [sym_equality_operator] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_GT_GT_GT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_TILDE_SLASH] = ACTIONS(1057), + [sym_increment_operator] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1059), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_super] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_var] = ACTIONS(1059), + [anon_sym_covariant] = ACTIONS(1059), + [anon_sym_Function] = ACTIONS(1059), + [anon_sym_get] = ACTIONS(1059), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_const] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_external] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(1059), + [sym_comment] = ACTIONS(3), + }, + [791] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1212), + [sym_decimal_integer_literal] = ACTIONS(1214), + [sym_hex_integer_literal] = ACTIONS(1214), + [sym_octal_integer_literal] = ACTIONS(1212), + [sym_binary_integer_literal] = ACTIONS(1212), + [sym_decimal_floating_point_literal] = ACTIONS(1212), + [sym_hex_floating_point_literal] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1214), + [anon_sym_false] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1212), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1212), + [anon_sym_r] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1214), + [anon_sym_throw] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_QMARK_QMARK] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1214), + [anon_sym_PIPE_PIPE] = ACTIONS(1212), + [anon_sym_AMP_AMP] = ACTIONS(1212), + [sym_equality_operator] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_GT_EQ] = ACTIONS(1212), + [anon_sym_LT_EQ] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_CARET] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_LT_LT] = ACTIONS(1212), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_GT_GT_GT] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_SLASH] = ACTIONS(1214), + [anon_sym_PERCENT] = ACTIONS(1212), + [anon_sym_TILDE_SLASH] = ACTIONS(1212), + [sym_increment_operator] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_await] = ACTIONS(1214), + [anon_sym_is] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_QMARK_DOT] = ACTIONS(1212), + [anon_sym_DOT_DOT] = ACTIONS(1212), + [anon_sym_assert] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_try] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_AT] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_abstract] = ACTIONS(1214), + [anon_sym_class] = ACTIONS(1214), + [anon_sym_super] = ACTIONS(1214), + [anon_sym_void] = ACTIONS(1214), + [anon_sym_var] = ACTIONS(1214), + [anon_sym_covariant] = ACTIONS(1214), + [anon_sym_Function] = ACTIONS(1214), + [anon_sym_get] = ACTIONS(1214), + [anon_sym_set] = ACTIONS(1214), + [anon_sym_new] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_final] = ACTIONS(1214), + [anon_sym_external] = ACTIONS(1214), + [anon_sym_this] = ACTIONS(1214), + [sym_comment] = ACTIONS(3), + }, + [792] = { + [sym_type_parameters] = STATE(3503), + [sym_parameter_type_list] = STATE(944), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1057), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1057), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1057), + [anon_sym_r] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_QMARK_QMARK] = ACTIONS(1057), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [sym_equality_operator] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_GT_GT_GT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_TILDE_SLASH] = ACTIONS(1057), + [sym_increment_operator] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1059), + [anon_sym_is] = ACTIONS(1059), + [anon_sym_as] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_super] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_var] = ACTIONS(1059), + [anon_sym_covariant] = ACTIONS(1059), + [anon_sym_Function] = ACTIONS(1059), + [anon_sym_get] = ACTIONS(1059), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_const] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_external] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(1059), + [sym_comment] = ACTIONS(3), + }, + [793] = { + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1341), + [sym_decimal_integer_literal] = ACTIONS(1343), + [sym_hex_integer_literal] = ACTIONS(1343), + [sym_octal_integer_literal] = ACTIONS(1341), + [sym_binary_integer_literal] = ACTIONS(1341), + [sym_decimal_floating_point_literal] = ACTIONS(1341), + [sym_hex_floating_point_literal] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1341), + [anon_sym_r] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_throw] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_QMARK_QMARK] = ACTIONS(1341), + [anon_sym_QMARK] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [sym_equality_operator] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(1341), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_GT_GT_GT] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1341), + [anon_sym_TILDE_SLASH] = ACTIONS(1341), + [sym_increment_operator] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(1343), + [anon_sym_is] = ACTIONS(1343), + [anon_sym_as] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_QMARK_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_yield] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_AT] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_abstract] = ACTIONS(1343), + [anon_sym_class] = ACTIONS(1343), + [anon_sym_super] = ACTIONS(1343), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_covariant] = ACTIONS(1343), + [anon_sym_Function] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_new] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_final] = ACTIONS(1343), + [anon_sym_external] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + }, + [794] = { + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(1273), + [sym_decimal_integer_literal] = ACTIONS(1275), + [sym_hex_integer_literal] = ACTIONS(1275), + [sym_octal_integer_literal] = ACTIONS(1273), + [sym_binary_integer_literal] = ACTIONS(1273), + [sym_decimal_floating_point_literal] = ACTIONS(1273), + [sym_hex_floating_point_literal] = ACTIONS(1275), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1273), + [anon_sym_r] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [anon_sym_null] = ACTIONS(1275), + [anon_sym_throw] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_QMARK_QMARK] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1275), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [sym_equality_operator] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_LT_LT] = ACTIONS(1273), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_GT_GT_GT] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_TILDE_SLASH] = ACTIONS(1273), + [sym_increment_operator] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_await] = ACTIONS(1275), + [anon_sym_is] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_QMARK_DOT] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_assert] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_yield] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_abstract] = ACTIONS(1275), + [anon_sym_class] = ACTIONS(1275), + [anon_sym_super] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1275), + [anon_sym_var] = ACTIONS(1275), + [anon_sym_covariant] = ACTIONS(1275), + [anon_sym_Function] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(1275), + [anon_sym_set] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_final] = ACTIONS(1275), + [anon_sym_external] = ACTIONS(1275), + [anon_sym_this] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + }, + [795] = { + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1421), + [sym_decimal_integer_literal] = ACTIONS(1423), + [sym_hex_integer_literal] = ACTIONS(1423), + [sym_octal_integer_literal] = ACTIONS(1421), + [sym_binary_integer_literal] = ACTIONS(1421), + [sym_decimal_floating_point_literal] = ACTIONS(1421), + [sym_hex_floating_point_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1421), + [anon_sym_r] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_QMARK_QMARK] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [sym_equality_operator] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_LT_LT] = ACTIONS(1421), + [anon_sym_GT_GT] = ACTIONS(1423), + [anon_sym_GT_GT_GT] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1421), + [anon_sym_TILDE_SLASH] = ACTIONS(1421), + [sym_increment_operator] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_await] = ACTIONS(1423), + [anon_sym_is] = ACTIONS(1423), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_QMARK_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_AT] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1423), + [anon_sym_abstract] = ACTIONS(1423), + [anon_sym_class] = ACTIONS(1423), + [anon_sym_super] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_covariant] = ACTIONS(1423), + [anon_sym_Function] = ACTIONS(1423), + [anon_sym_get] = ACTIONS(1423), + [anon_sym_set] = ACTIONS(1423), + [anon_sym_new] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_final] = ACTIONS(1423), + [anon_sym_external] = ACTIONS(1423), + [anon_sym_this] = ACTIONS(1423), + [sym_comment] = ACTIONS(3), + }, + [796] = { + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1457), + [sym_decimal_integer_literal] = ACTIONS(1459), + [sym_hex_integer_literal] = ACTIONS(1459), + [sym_octal_integer_literal] = ACTIONS(1457), + [sym_binary_integer_literal] = ACTIONS(1457), + [sym_decimal_floating_point_literal] = ACTIONS(1457), + [sym_hex_floating_point_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1457), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1457), + [anon_sym_r] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1459), + [anon_sym_throw] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_QMARK_QMARK] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [sym_equality_operator] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_GT_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_TILDE_SLASH] = ACTIONS(1457), + [sym_increment_operator] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1459), + [anon_sym_is] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_QMARK_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1459), + [anon_sym_switch] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_abstract] = ACTIONS(1459), + [anon_sym_class] = ACTIONS(1459), + [anon_sym_super] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1459), + [anon_sym_var] = ACTIONS(1459), + [anon_sym_covariant] = ACTIONS(1459), + [anon_sym_Function] = ACTIONS(1459), + [anon_sym_get] = ACTIONS(1459), + [anon_sym_set] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_final] = ACTIONS(1459), + [anon_sym_external] = ACTIONS(1459), + [anon_sym_this] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + }, + [797] = { + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1511), + [sym_decimal_integer_literal] = ACTIONS(1513), + [sym_hex_integer_literal] = ACTIONS(1513), + [sym_octal_integer_literal] = ACTIONS(1511), + [sym_binary_integer_literal] = ACTIONS(1511), + [sym_decimal_floating_point_literal] = ACTIONS(1511), + [sym_hex_floating_point_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1511), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1511), + [anon_sym_r] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_throw] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_QMARK_QMARK] = ACTIONS(1511), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [sym_equality_operator] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_GT_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_TILDE_SLASH] = ACTIONS(1511), + [sym_increment_operator] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_TILDE] = ACTIONS(1513), + [anon_sym_await] = ACTIONS(1513), + [anon_sym_is] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_QMARK_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_AT] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_abstract] = ACTIONS(1513), + [anon_sym_class] = ACTIONS(1513), + [anon_sym_super] = ACTIONS(1513), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_covariant] = ACTIONS(1513), + [anon_sym_Function] = ACTIONS(1513), + [anon_sym_get] = ACTIONS(1513), + [anon_sym_set] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_final] = ACTIONS(1513), + [anon_sym_external] = ACTIONS(1513), + [anon_sym_this] = ACTIONS(1513), + [sym_comment] = ACTIONS(3), + }, + [798] = { + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1461), + [sym_decimal_integer_literal] = ACTIONS(1463), + [sym_hex_integer_literal] = ACTIONS(1463), + [sym_octal_integer_literal] = ACTIONS(1461), + [sym_binary_integer_literal] = ACTIONS(1461), + [sym_decimal_floating_point_literal] = ACTIONS(1461), + [sym_hex_floating_point_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1461), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1461), + [anon_sym_r] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_throw] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_QMARK_QMARK] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [sym_equality_operator] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_GT_GT_GT] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_TILDE_SLASH] = ACTIONS(1461), + [sym_increment_operator] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_await] = ACTIONS(1463), + [anon_sym_is] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_QMARK_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_abstract] = ACTIONS(1463), + [anon_sym_class] = ACTIONS(1463), + [anon_sym_super] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1463), + [anon_sym_var] = ACTIONS(1463), + [anon_sym_covariant] = ACTIONS(1463), + [anon_sym_Function] = ACTIONS(1463), + [anon_sym_get] = ACTIONS(1463), + [anon_sym_set] = ACTIONS(1463), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_final] = ACTIONS(1463), + [anon_sym_external] = ACTIONS(1463), + [anon_sym_this] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(1563), + [sym_identifier] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(1563), + [sym_decimal_integer_literal] = ACTIONS(1565), + [sym_hex_integer_literal] = ACTIONS(1565), + [sym_octal_integer_literal] = ACTIONS(1563), + [sym_binary_integer_literal] = ACTIONS(1563), + [sym_decimal_floating_point_literal] = ACTIONS(1563), + [sym_hex_floating_point_literal] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_SQUOTE] = ACTIONS(1565), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1563), + [anon_sym_r] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_throw] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_QMARK_QMARK] = ACTIONS(1563), + [anon_sym_QMARK] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [sym_equality_operator] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1563), + [anon_sym_LT_EQ] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1563), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_GT_GT_GT] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1565), + [anon_sym_PERCENT] = ACTIONS(1563), + [anon_sym_TILDE_SLASH] = ACTIONS(1563), + [sym_increment_operator] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_is] = ACTIONS(1565), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_QMARK_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_AT] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_class] = ACTIONS(1565), + [anon_sym_super] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_covariant] = ACTIONS(1565), + [anon_sym_Function] = ACTIONS(1565), + [anon_sym_get] = ACTIONS(1565), + [anon_sym_set] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_final] = ACTIONS(1565), + [anon_sym_external] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(1565), + [sym_comment] = ACTIONS(3), + }, + [800] = { + [sym_shift_operator] = STATE(674), + [aux_sym_shift_expression_repeat1] = STATE(860), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1093), + [anon_sym_POUND] = ACTIONS(1091), + [sym_decimal_integer_literal] = ACTIONS(1093), + [sym_hex_integer_literal] = ACTIONS(1093), + [sym_octal_integer_literal] = ACTIONS(1091), + [sym_binary_integer_literal] = ACTIONS(1091), + [sym_decimal_floating_point_literal] = ACTIONS(1091), + [sym_hex_floating_point_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1093), + [anon_sym_false] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1091), + [anon_sym_r] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_null] = ACTIONS(1093), + [anon_sym_throw] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_QMARK_QMARK] = ACTIONS(1091), + [anon_sym_QMARK] = ACTIONS(1093), + [anon_sym_PIPE_PIPE] = ACTIONS(1091), + [anon_sym_AMP_AMP] = ACTIONS(1091), + [sym_equality_operator] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1093), + [anon_sym_GT_EQ] = ACTIONS(1091), + [anon_sym_LT_EQ] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1093), + [anon_sym_GT_GT_GT] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_TILDE_SLASH] = ACTIONS(1091), + [sym_increment_operator] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_is] = ACTIONS(1093), + [anon_sym_as] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1091), + [anon_sym_assert] = ACTIONS(1093), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1093), + [anon_sym_continue] = ACTIONS(1093), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1093), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1093), + [anon_sym_AT] = ACTIONS(1091), + [anon_sym_enum] = ACTIONS(1093), + [anon_sym_abstract] = ACTIONS(1093), + [anon_sym_class] = ACTIONS(1093), + [anon_sym_super] = ACTIONS(1093), + [anon_sym_void] = ACTIONS(1093), + [anon_sym_var] = ACTIONS(1093), + [anon_sym_covariant] = ACTIONS(1093), + [anon_sym_Function] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1093), + [anon_sym_const] = ACTIONS(1093), + [anon_sym_final] = ACTIONS(1093), + [anon_sym_external] = ACTIONS(1093), + [anon_sym_this] = ACTIONS(1093), [sym_comment] = ACTIONS(3), }, - [829] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_identifier] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1487), - [sym_decimal_integer_literal] = ACTIONS(1489), - [sym_hex_integer_literal] = ACTIONS(1489), - [sym_octal_integer_literal] = ACTIONS(1487), - [sym_binary_integer_literal] = ACTIONS(1487), - [sym_decimal_floating_point_literal] = ACTIONS(1487), - [sym_hex_floating_point_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1487), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1487), - [anon_sym_r] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_COMMA] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1489), - [anon_sym_throw] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_QMARK_QMARK] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1487), - [sym_equality_operator] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_GT_EQ] = ACTIONS(1487), - [anon_sym_LT_EQ] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_GT_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_TILDE_SLASH] = ACTIONS(1487), - [sym_increment_operator] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_is] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1489), - [anon_sym_QMARK_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_try] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_abstract] = ACTIONS(1489), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_super] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1489), - [anon_sym_var] = ACTIONS(1489), - [anon_sym_covariant] = ACTIONS(1489), - [anon_sym_Function] = ACTIONS(1489), - [anon_sym_get] = ACTIONS(1489), - [anon_sym_set] = ACTIONS(1489), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_final] = ACTIONS(1489), - [anon_sym_external] = ACTIONS(1489), - [anon_sym_this] = ACTIONS(1489), + [801] = { + [sym_additive_operator] = STATE(672), + [aux_sym_additive_expression_repeat1] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1049), + [anon_sym_POUND] = ACTIONS(1047), + [sym_decimal_integer_literal] = ACTIONS(1049), + [sym_hex_integer_literal] = ACTIONS(1049), + [sym_octal_integer_literal] = ACTIONS(1047), + [sym_binary_integer_literal] = ACTIONS(1047), + [sym_decimal_floating_point_literal] = ACTIONS(1047), + [sym_hex_floating_point_literal] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1047), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1047), + [anon_sym_r] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_null] = ACTIONS(1049), + [anon_sym_throw] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_QMARK_QMARK] = ACTIONS(1047), + [anon_sym_QMARK] = ACTIONS(1049), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [sym_equality_operator] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_LT_LT] = ACTIONS(1047), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_GT_GT_GT] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1047), + [anon_sym_TILDE_SLASH] = ACTIONS(1047), + [sym_increment_operator] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_is] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_assert] = ACTIONS(1049), + [anon_sym_switch] = ACTIONS(1049), + [anon_sym_do] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_abstract] = ACTIONS(1049), + [anon_sym_class] = ACTIONS(1049), + [anon_sym_super] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1049), + [anon_sym_var] = ACTIONS(1049), + [anon_sym_covariant] = ACTIONS(1049), + [anon_sym_Function] = ACTIONS(1049), + [anon_sym_get] = ACTIONS(1049), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_new] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_final] = ACTIONS(1049), + [anon_sym_external] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(1049), [sym_comment] = ACTIONS(3), }, - [830] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1475), - [sym_decimal_integer_literal] = ACTIONS(1477), - [sym_hex_integer_literal] = ACTIONS(1477), - [sym_octal_integer_literal] = ACTIONS(1475), - [sym_binary_integer_literal] = ACTIONS(1475), - [sym_decimal_floating_point_literal] = ACTIONS(1475), - [sym_hex_floating_point_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1475), - [anon_sym_r] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1477), - [anon_sym_throw] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_QMARK_QMARK] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [sym_equality_operator] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_GT_GT_GT] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_TILDE_SLASH] = ACTIONS(1475), - [sym_increment_operator] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(1477), - [anon_sym_is] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_QMARK_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_abstract] = ACTIONS(1477), - [anon_sym_class] = ACTIONS(1477), - [anon_sym_super] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1477), - [anon_sym_var] = ACTIONS(1477), - [anon_sym_covariant] = ACTIONS(1477), - [anon_sym_Function] = ACTIONS(1477), - [anon_sym_get] = ACTIONS(1477), - [anon_sym_set] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_final] = ACTIONS(1477), - [anon_sym_external] = ACTIONS(1477), - [anon_sym_this] = ACTIONS(1477), + [802] = { + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(1547), + [sym_decimal_integer_literal] = ACTIONS(1549), + [sym_hex_integer_literal] = ACTIONS(1549), + [sym_octal_integer_literal] = ACTIONS(1547), + [sym_binary_integer_literal] = ACTIONS(1547), + [sym_decimal_floating_point_literal] = ACTIONS(1547), + [sym_hex_floating_point_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1547), + [anon_sym_r] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_QMARK_QMARK] = ACTIONS(1547), + [anon_sym_QMARK] = ACTIONS(1549), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [sym_equality_operator] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_GT_GT_GT] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1547), + [anon_sym_TILDE_SLASH] = ACTIONS(1547), + [sym_increment_operator] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_is] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_QMARK_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_super] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_covariant] = ACTIONS(1549), + [anon_sym_Function] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_final] = ACTIONS(1549), + [anon_sym_external] = ACTIONS(1549), + [anon_sym_this] = ACTIONS(1549), [sym_comment] = ACTIONS(3), }, - [831] = { - [ts_builtin_sym_end] = ACTIONS(1112), - [sym_identifier] = ACTIONS(1114), - [anon_sym_POUND] = ACTIONS(1112), - [sym_decimal_integer_literal] = ACTIONS(1114), - [sym_hex_integer_literal] = ACTIONS(1114), - [sym_octal_integer_literal] = ACTIONS(1112), - [sym_binary_integer_literal] = ACTIONS(1112), - [sym_decimal_floating_point_literal] = ACTIONS(1112), - [sym_hex_floating_point_literal] = ACTIONS(1114), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1112), - [anon_sym_r] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_null] = ACTIONS(1114), - [anon_sym_throw] = ACTIONS(1114), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_QMARK_QMARK] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1114), - [anon_sym_PIPE_PIPE] = ACTIONS(1112), - [anon_sym_AMP_AMP] = ACTIONS(1112), - [sym_equality_operator] = ACTIONS(1112), - [anon_sym_LT] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1114), - [anon_sym_GT_EQ] = ACTIONS(1112), - [anon_sym_LT_EQ] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_LT_LT] = ACTIONS(1112), - [anon_sym_GT_GT] = ACTIONS(1114), - [anon_sym_GT_GT_GT] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_SLASH] = ACTIONS(1114), - [anon_sym_PERCENT] = ACTIONS(1112), - [anon_sym_TILDE_SLASH] = ACTIONS(1112), - [sym_increment_operator] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_await] = ACTIONS(1114), - [anon_sym_is] = ACTIONS(1114), - [anon_sym_as] = ACTIONS(1114), - [anon_sym_DOT] = ACTIONS(1114), - [anon_sym_QMARK_DOT] = ACTIONS(1112), - [anon_sym_DOT_DOT] = ACTIONS(1112), - [anon_sym_assert] = ACTIONS(1114), - [anon_sym_switch] = ACTIONS(1114), - [anon_sym_do] = ACTIONS(1114), - [anon_sym_while] = ACTIONS(1114), - [anon_sym_break] = ACTIONS(1114), - [anon_sym_continue] = ACTIONS(1114), - [anon_sym_yield] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(1114), - [anon_sym_try] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1114), - [anon_sym_abstract] = ACTIONS(1114), - [anon_sym_class] = ACTIONS(1114), - [anon_sym_super] = ACTIONS(1114), - [anon_sym_void] = ACTIONS(1114), - [anon_sym_var] = ACTIONS(1114), - [anon_sym_covariant] = ACTIONS(1114), - [anon_sym_Function] = ACTIONS(1114), - [anon_sym_get] = ACTIONS(1114), - [anon_sym_set] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1114), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_final] = ACTIONS(1114), - [anon_sym_external] = ACTIONS(1114), - [anon_sym_this] = ACTIONS(1114), + [803] = { + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(1543), + [sym_decimal_integer_literal] = ACTIONS(1545), + [sym_hex_integer_literal] = ACTIONS(1545), + [sym_octal_integer_literal] = ACTIONS(1543), + [sym_binary_integer_literal] = ACTIONS(1543), + [sym_decimal_floating_point_literal] = ACTIONS(1543), + [sym_hex_floating_point_literal] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1545), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1543), + [anon_sym_r] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_throw] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_QMARK_QMARK] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(1545), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [sym_equality_operator] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_GT_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_TILDE_SLASH] = ACTIONS(1543), + [sym_increment_operator] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_TILDE] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_is] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_super] = ACTIONS(1545), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_covariant] = ACTIONS(1545), + [anon_sym_Function] = ACTIONS(1545), + [anon_sym_get] = ACTIONS(1545), + [anon_sym_set] = ACTIONS(1545), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_final] = ACTIONS(1545), + [anon_sym_external] = ACTIONS(1545), + [anon_sym_this] = ACTIONS(1545), [sym_comment] = ACTIONS(3), }, - [832] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [sym_decimal_integer_literal] = ACTIONS(1314), - [sym_hex_integer_literal] = ACTIONS(1314), - [sym_octal_integer_literal] = ACTIONS(1312), - [sym_binary_integer_literal] = ACTIONS(1312), - [sym_decimal_floating_point_literal] = ACTIONS(1312), - [sym_hex_floating_point_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1312), - [anon_sym_r] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1314), - [anon_sym_throw] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_QMARK_QMARK] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [sym_equality_operator] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_GT_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_TILDE_SLASH] = ACTIONS(1312), - [sym_increment_operator] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_is] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_DOT] = ACTIONS(1314), - [anon_sym_QMARK_DOT] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_abstract] = ACTIONS(1314), - [anon_sym_class] = ACTIONS(1314), - [anon_sym_super] = ACTIONS(1314), - [anon_sym_void] = ACTIONS(1314), - [anon_sym_var] = ACTIONS(1314), - [anon_sym_covariant] = ACTIONS(1314), - [anon_sym_Function] = ACTIONS(1314), - [anon_sym_get] = ACTIONS(1314), - [anon_sym_set] = ACTIONS(1314), - [anon_sym_new] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_final] = ACTIONS(1314), - [anon_sym_external] = ACTIONS(1314), - [anon_sym_this] = ACTIONS(1314), + [804] = { + [sym_multiplicative_operator] = STATE(671), + [aux_sym_multiplicative_expression_repeat1] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(1084), + [sym_identifier] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(1084), + [sym_decimal_integer_literal] = ACTIONS(1086), + [sym_hex_integer_literal] = ACTIONS(1086), + [sym_octal_integer_literal] = ACTIONS(1084), + [sym_binary_integer_literal] = ACTIONS(1084), + [sym_decimal_floating_point_literal] = ACTIONS(1084), + [sym_hex_floating_point_literal] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1084), + [anon_sym_r] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_null] = ACTIONS(1086), + [anon_sym_throw] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_QMARK_QMARK] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1084), + [anon_sym_AMP_AMP] = ACTIONS(1084), + [sym_equality_operator] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1084), + [anon_sym_LT_EQ] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_GT_GT_GT] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_PERCENT] = ACTIONS(1084), + [anon_sym_TILDE_SLASH] = ACTIONS(1084), + [sym_increment_operator] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_await] = ACTIONS(1086), + [anon_sym_is] = ACTIONS(1086), + [anon_sym_as] = ACTIONS(1086), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_assert] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_try] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_abstract] = ACTIONS(1086), + [anon_sym_class] = ACTIONS(1086), + [anon_sym_super] = ACTIONS(1086), + [anon_sym_void] = ACTIONS(1086), + [anon_sym_var] = ACTIONS(1086), + [anon_sym_covariant] = ACTIONS(1086), + [anon_sym_Function] = ACTIONS(1086), + [anon_sym_get] = ACTIONS(1086), + [anon_sym_set] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_final] = ACTIONS(1086), + [anon_sym_external] = ACTIONS(1086), + [anon_sym_this] = ACTIONS(1086), [sym_comment] = ACTIONS(3), }, - [833] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(1228), - [sym_decimal_integer_literal] = ACTIONS(1230), - [sym_hex_integer_literal] = ACTIONS(1230), - [sym_octal_integer_literal] = ACTIONS(1228), - [sym_binary_integer_literal] = ACTIONS(1228), - [sym_decimal_floating_point_literal] = ACTIONS(1228), - [sym_hex_floating_point_literal] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1228), - [anon_sym_r] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1230), - [anon_sym_throw] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_QMARK_QMARK] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [sym_equality_operator] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1230), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1230), - [anon_sym_GT_GT_GT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1230), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_TILDE_SLASH] = ACTIONS(1228), - [sym_increment_operator] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_is] = ACTIONS(1230), - [anon_sym_as] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1230), - [anon_sym_QMARK_DOT] = ACTIONS(1228), - [anon_sym_DOT_DOT] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_abstract] = ACTIONS(1230), - [anon_sym_class] = ACTIONS(1230), - [anon_sym_super] = ACTIONS(1230), - [anon_sym_void] = ACTIONS(1230), - [anon_sym_var] = ACTIONS(1230), - [anon_sym_covariant] = ACTIONS(1230), - [anon_sym_Function] = ACTIONS(1230), - [anon_sym_get] = ACTIONS(1230), - [anon_sym_set] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_final] = ACTIONS(1230), - [anon_sym_external] = ACTIONS(1230), - [anon_sym_this] = ACTIONS(1230), + [805] = { + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1465), + [sym_decimal_integer_literal] = ACTIONS(1467), + [sym_hex_integer_literal] = ACTIONS(1467), + [sym_octal_integer_literal] = ACTIONS(1465), + [sym_binary_integer_literal] = ACTIONS(1465), + [sym_decimal_floating_point_literal] = ACTIONS(1465), + [sym_hex_floating_point_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1465), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1465), + [anon_sym_r] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_throw] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_QMARK_QMARK] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [sym_equality_operator] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_GT_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_TILDE_SLASH] = ACTIONS(1465), + [sym_increment_operator] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_is] = ACTIONS(1467), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_QMARK_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1467), + [anon_sym_switch] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_abstract] = ACTIONS(1467), + [anon_sym_class] = ACTIONS(1467), + [anon_sym_super] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1467), + [anon_sym_var] = ACTIONS(1467), + [anon_sym_covariant] = ACTIONS(1467), + [anon_sym_Function] = ACTIONS(1467), + [anon_sym_get] = ACTIONS(1467), + [anon_sym_set] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_final] = ACTIONS(1467), + [anon_sym_external] = ACTIONS(1467), + [anon_sym_this] = ACTIONS(1467), [sym_comment] = ACTIONS(3), }, - [834] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [sym_decimal_integer_literal] = ACTIONS(1442), - [sym_hex_integer_literal] = ACTIONS(1442), - [sym_octal_integer_literal] = ACTIONS(1440), - [sym_binary_integer_literal] = ACTIONS(1440), - [sym_decimal_floating_point_literal] = ACTIONS(1440), - [sym_hex_floating_point_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1440), - [anon_sym_r] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_QMARK_QMARK] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [sym_equality_operator] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1442), - [anon_sym_GT_GT_GT] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_TILDE_SLASH] = ACTIONS(1440), - [sym_increment_operator] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_await] = ACTIONS(1442), - [anon_sym_is] = ACTIONS(1442), - [anon_sym_as] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_QMARK_DOT] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_abstract] = ACTIONS(1442), - [anon_sym_class] = ACTIONS(1442), - [anon_sym_super] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [anon_sym_covariant] = ACTIONS(1442), - [anon_sym_Function] = ACTIONS(1444), - [anon_sym_get] = ACTIONS(1442), - [anon_sym_set] = ACTIONS(1442), - [anon_sym_new] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_final] = ACTIONS(1442), - [anon_sym_external] = ACTIONS(1442), - [anon_sym_this] = ACTIONS(1442), + [806] = { + [ts_builtin_sym_end] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(1481), + [sym_decimal_integer_literal] = ACTIONS(1483), + [sym_hex_integer_literal] = ACTIONS(1483), + [sym_octal_integer_literal] = ACTIONS(1481), + [sym_binary_integer_literal] = ACTIONS(1481), + [sym_decimal_floating_point_literal] = ACTIONS(1481), + [sym_hex_floating_point_literal] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1481), + [anon_sym_r] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1483), + [anon_sym_throw] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_QMARK_QMARK] = ACTIONS(1481), + [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [sym_equality_operator] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1483), + [anon_sym_GT_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_TILDE_SLASH] = ACTIONS(1481), + [sym_increment_operator] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_is] = ACTIONS(1483), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_QMARK_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1483), + [anon_sym_switch] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_try] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_enum] = ACTIONS(1483), + [anon_sym_abstract] = ACTIONS(1483), + [anon_sym_class] = ACTIONS(1483), + [anon_sym_super] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1483), + [anon_sym_var] = ACTIONS(1483), + [anon_sym_covariant] = ACTIONS(1483), + [anon_sym_Function] = ACTIONS(1483), + [anon_sym_get] = ACTIONS(1483), + [anon_sym_set] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_final] = ACTIONS(1483), + [anon_sym_external] = ACTIONS(1483), + [anon_sym_this] = ACTIONS(1483), [sym_comment] = ACTIONS(3), }, - [835] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [sym_decimal_integer_literal] = ACTIONS(1438), - [sym_hex_integer_literal] = ACTIONS(1438), - [sym_octal_integer_literal] = ACTIONS(1436), - [sym_binary_integer_literal] = ACTIONS(1436), - [sym_decimal_floating_point_literal] = ACTIONS(1436), - [sym_hex_floating_point_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1436), - [anon_sym_r] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [sym_equality_operator] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_TILDE_SLASH] = ACTIONS(1436), - [sym_increment_operator] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_is] = ACTIONS(1438), - [anon_sym_as] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_assert] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_abstract] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_super] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [anon_sym_covariant] = ACTIONS(1438), - [anon_sym_Function] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_final] = ACTIONS(1438), - [anon_sym_external] = ACTIONS(1438), - [anon_sym_this] = ACTIONS(1438), + [807] = { + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(1591), + [sym_decimal_integer_literal] = ACTIONS(1593), + [sym_hex_integer_literal] = ACTIONS(1593), + [sym_octal_integer_literal] = ACTIONS(1591), + [sym_binary_integer_literal] = ACTIONS(1591), + [sym_decimal_floating_point_literal] = ACTIONS(1591), + [sym_hex_floating_point_literal] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1591), + [anon_sym_r] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_COMMA] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_throw] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_QMARK_QMARK] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_PIPE_PIPE] = ACTIONS(1591), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [sym_equality_operator] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1593), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1593), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT_LT] = ACTIONS(1591), + [anon_sym_GT_GT] = ACTIONS(1593), + [anon_sym_GT_GT_GT] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PERCENT] = ACTIONS(1591), + [anon_sym_TILDE_SLASH] = ACTIONS(1591), + [sym_increment_operator] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1593), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_is] = ACTIONS(1593), + [anon_sym_as] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(1593), + [anon_sym_QMARK_DOT] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1591), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1591), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_abstract] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_super] = ACTIONS(1593), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_covariant] = ACTIONS(1593), + [anon_sym_Function] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_final] = ACTIONS(1593), + [anon_sym_external] = ACTIONS(1593), + [anon_sym_this] = ACTIONS(1593), [sym_comment] = ACTIONS(3), }, - [836] = { - [sym_type_parameters] = STATE(3360), - [sym_parameter_type_list] = STATE(897), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(983), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(983), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(983), - [anon_sym_r] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_null] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_QMARK_QMARK] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [sym_equality_operator] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_GT_GT_GT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_TILDE_SLASH] = ACTIONS(983), - [sym_increment_operator] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_is] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_super] = ACTIONS(985), - [anon_sym_void] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_covariant] = ACTIONS(985), - [anon_sym_Function] = ACTIONS(985), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(985), - [anon_sym_new] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_external] = ACTIONS(985), - [anon_sym_this] = ACTIONS(985), + [808] = { + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1477), + [sym_decimal_integer_literal] = ACTIONS(1479), + [sym_hex_integer_literal] = ACTIONS(1479), + [sym_octal_integer_literal] = ACTIONS(1477), + [sym_binary_integer_literal] = ACTIONS(1477), + [sym_decimal_floating_point_literal] = ACTIONS(1477), + [sym_hex_floating_point_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1477), + [anon_sym_r] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_QMARK_QMARK] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [sym_equality_operator] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_GT_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_TILDE_SLASH] = ACTIONS(1477), + [sym_increment_operator] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1479), + [anon_sym_is] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_QMARK_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_abstract] = ACTIONS(1479), + [anon_sym_class] = ACTIONS(1479), + [anon_sym_super] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1479), + [anon_sym_var] = ACTIONS(1479), + [anon_sym_covariant] = ACTIONS(1479), + [anon_sym_Function] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_final] = ACTIONS(1479), + [anon_sym_external] = ACTIONS(1479), + [anon_sym_this] = ACTIONS(1479), [sym_comment] = ACTIONS(3), }, - [837] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [sym_decimal_integer_literal] = ACTIONS(1434), - [sym_hex_integer_literal] = ACTIONS(1434), - [sym_octal_integer_literal] = ACTIONS(1432), - [sym_binary_integer_literal] = ACTIONS(1432), - [sym_decimal_floating_point_literal] = ACTIONS(1432), - [sym_hex_floating_point_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1432), - [anon_sym_r] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_COMMA] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1434), - [anon_sym_throw] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_QMARK_QMARK] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(1434), - [anon_sym_PIPE_PIPE] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1432), - [sym_equality_operator] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_EQ] = ACTIONS(1432), - [anon_sym_LT_EQ] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_LT] = ACTIONS(1432), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1434), - [anon_sym_PERCENT] = ACTIONS(1432), - [anon_sym_TILDE_SLASH] = ACTIONS(1432), - [sym_increment_operator] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_is] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_QMARK_DOT] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_abstract] = ACTIONS(1434), - [anon_sym_class] = ACTIONS(1434), - [anon_sym_super] = ACTIONS(1434), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_var] = ACTIONS(1434), - [anon_sym_covariant] = ACTIONS(1434), - [anon_sym_Function] = ACTIONS(1434), - [anon_sym_get] = ACTIONS(1434), - [anon_sym_set] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_final] = ACTIONS(1434), - [anon_sym_external] = ACTIONS(1434), - [anon_sym_this] = ACTIONS(1434), + [809] = { + [ts_builtin_sym_end] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1579), + [sym_decimal_integer_literal] = ACTIONS(1581), + [sym_hex_integer_literal] = ACTIONS(1581), + [sym_octal_integer_literal] = ACTIONS(1579), + [sym_binary_integer_literal] = ACTIONS(1579), + [sym_decimal_floating_point_literal] = ACTIONS(1579), + [sym_hex_floating_point_literal] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1581), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1579), + [anon_sym_r] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_throw] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_QMARK_QMARK] = ACTIONS(1579), + [anon_sym_QMARK] = ACTIONS(1581), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [sym_equality_operator] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_GT_GT_GT] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1581), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_TILDE_SLASH] = ACTIONS(1579), + [sym_increment_operator] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1581), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_is] = ACTIONS(1581), + [anon_sym_as] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_QMARK_DOT] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_yield] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_AT] = ACTIONS(1579), + [anon_sym_enum] = ACTIONS(1581), + [anon_sym_abstract] = ACTIONS(1581), + [anon_sym_class] = ACTIONS(1581), + [anon_sym_super] = ACTIONS(1581), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_covariant] = ACTIONS(1581), + [anon_sym_Function] = ACTIONS(1581), + [anon_sym_get] = ACTIONS(1581), + [anon_sym_set] = ACTIONS(1581), + [anon_sym_new] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_final] = ACTIONS(1581), + [anon_sym_external] = ACTIONS(1581), + [anon_sym_this] = ACTIONS(1581), [sym_comment] = ACTIONS(3), }, - [838] = { - [sym__type_dot_identifier] = STATE(879), - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(1058), - [sym_decimal_integer_literal] = ACTIONS(1060), - [sym_hex_integer_literal] = ACTIONS(1060), - [sym_octal_integer_literal] = ACTIONS(1058), - [sym_binary_integer_literal] = ACTIONS(1058), - [sym_decimal_floating_point_literal] = ACTIONS(1058), - [sym_hex_floating_point_literal] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1058), - [anon_sym_r] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1060), - [anon_sym_throw] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_QMARK_QMARK] = ACTIONS(1058), - [anon_sym_QMARK] = ACTIONS(1060), - [anon_sym_PIPE_PIPE] = ACTIONS(1058), - [anon_sym_AMP_AMP] = ACTIONS(1058), - [sym_equality_operator] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_EQ] = ACTIONS(1058), - [anon_sym_LT_EQ] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_CARET] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_LT_LT] = ACTIONS(1058), - [anon_sym_GT_GT] = ACTIONS(1060), - [anon_sym_GT_GT_GT] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1058), - [anon_sym_TILDE_SLASH] = ACTIONS(1058), - [sym_increment_operator] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_await] = ACTIONS(1060), - [anon_sym_is] = ACTIONS(1060), - [anon_sym_as] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_DOT_DOT] = ACTIONS(1058), - [anon_sym_assert] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_yield] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_abstract] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1060), - [anon_sym_super] = ACTIONS(1060), - [anon_sym_void] = ACTIONS(1060), - [anon_sym_var] = ACTIONS(1060), - [anon_sym_covariant] = ACTIONS(1060), - [anon_sym_Function] = ACTIONS(1060), - [anon_sym_get] = ACTIONS(1060), - [anon_sym_set] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_final] = ACTIONS(1060), - [anon_sym_external] = ACTIONS(1060), - [anon_sym_this] = ACTIONS(1060), + [810] = { + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1216), + [sym_decimal_integer_literal] = ACTIONS(1218), + [sym_hex_integer_literal] = ACTIONS(1218), + [sym_octal_integer_literal] = ACTIONS(1216), + [sym_binary_integer_literal] = ACTIONS(1216), + [sym_decimal_floating_point_literal] = ACTIONS(1216), + [sym_hex_floating_point_literal] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1218), + [anon_sym_false] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1216), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1216), + [anon_sym_r] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_COMMA] = ACTIONS(1216), + [anon_sym_null] = ACTIONS(1218), + [anon_sym_throw] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_QMARK_QMARK] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(1218), + [anon_sym_PIPE_PIPE] = ACTIONS(1216), + [anon_sym_AMP_AMP] = ACTIONS(1216), + [sym_equality_operator] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_GT] = ACTIONS(1218), + [anon_sym_GT_EQ] = ACTIONS(1216), + [anon_sym_LT_EQ] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_CARET] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_LT_LT] = ACTIONS(1216), + [anon_sym_GT_GT] = ACTIONS(1218), + [anon_sym_GT_GT_GT] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_SLASH] = ACTIONS(1218), + [anon_sym_PERCENT] = ACTIONS(1216), + [anon_sym_TILDE_SLASH] = ACTIONS(1216), + [sym_increment_operator] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_await] = ACTIONS(1218), + [anon_sym_is] = ACTIONS(1218), + [anon_sym_as] = ACTIONS(1218), + [anon_sym_DOT] = ACTIONS(1218), + [anon_sym_QMARK_DOT] = ACTIONS(1216), + [anon_sym_DOT_DOT] = ACTIONS(1216), + [anon_sym_assert] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_yield] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_try] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_abstract] = ACTIONS(1218), + [anon_sym_class] = ACTIONS(1218), + [anon_sym_super] = ACTIONS(1218), + [anon_sym_void] = ACTIONS(1218), + [anon_sym_var] = ACTIONS(1218), + [anon_sym_covariant] = ACTIONS(1218), + [anon_sym_Function] = ACTIONS(1218), + [anon_sym_get] = ACTIONS(1218), + [anon_sym_set] = ACTIONS(1218), + [anon_sym_new] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_final] = ACTIONS(1218), + [anon_sym_external] = ACTIONS(1218), + [anon_sym_this] = ACTIONS(1218), [sym_comment] = ACTIONS(3), }, - [839] = { - [sym_shift_operator] = STATE(635), - [aux_sym_shift_expression_repeat1] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(989), - [sym_decimal_integer_literal] = ACTIONS(991), - [sym_hex_integer_literal] = ACTIONS(991), - [sym_octal_integer_literal] = ACTIONS(989), - [sym_binary_integer_literal] = ACTIONS(989), - [sym_decimal_floating_point_literal] = ACTIONS(989), - [sym_hex_floating_point_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(991), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(989), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(989), - [anon_sym_r] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_null] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_QMARK_QMARK] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [sym_equality_operator] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_GT_GT_GT] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_TILDE_SLASH] = ACTIONS(989), - [sym_increment_operator] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_is] = ACTIONS(991), - [anon_sym_as] = ACTIONS(991), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_assert] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(991), - [anon_sym_abstract] = ACTIONS(991), - [anon_sym_class] = ACTIONS(991), - [anon_sym_super] = ACTIONS(991), - [anon_sym_void] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_covariant] = ACTIONS(991), - [anon_sym_Function] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_new] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_final] = ACTIONS(991), - [anon_sym_external] = ACTIONS(991), - [anon_sym_this] = ACTIONS(991), + [811] = { + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(1235), + [sym_decimal_integer_literal] = ACTIONS(1237), + [sym_hex_integer_literal] = ACTIONS(1237), + [sym_octal_integer_literal] = ACTIONS(1235), + [sym_binary_integer_literal] = ACTIONS(1235), + [sym_decimal_floating_point_literal] = ACTIONS(1235), + [sym_hex_floating_point_literal] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1235), + [anon_sym_r] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_COMMA] = ACTIONS(1235), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_throw] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_QMARK_QMARK] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [sym_equality_operator] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1237), + [anon_sym_GT_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_TILDE_SLASH] = ACTIONS(1235), + [sym_increment_operator] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1237), + [anon_sym_is] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_DOT] = ACTIONS(1237), + [anon_sym_QMARK_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_assert] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_AT] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_abstract] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1237), + [anon_sym_super] = ACTIONS(1237), + [anon_sym_void] = ACTIONS(1237), + [anon_sym_var] = ACTIONS(1237), + [anon_sym_covariant] = ACTIONS(1237), + [anon_sym_Function] = ACTIONS(1237), + [anon_sym_get] = ACTIONS(1237), + [anon_sym_set] = ACTIONS(1237), + [anon_sym_new] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_final] = ACTIONS(1237), + [anon_sym_external] = ACTIONS(1237), + [anon_sym_this] = ACTIONS(1237), [sym_comment] = ACTIONS(3), }, - [840] = { - [sym_type_arguments] = STATE(894), - [sym__type_args] = STATE(892), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(983), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(983), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(983), - [anon_sym_r] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_null] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_QMARK_QMARK] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [sym_equality_operator] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_GT_GT_GT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_TILDE_SLASH] = ACTIONS(983), - [sym_increment_operator] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_is] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_super] = ACTIONS(985), - [anon_sym_void] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_covariant] = ACTIONS(985), - [anon_sym_Function] = ACTIONS(985), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(985), - [anon_sym_new] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_external] = ACTIONS(985), - [anon_sym_this] = ACTIONS(985), + [812] = { + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1222), + [anon_sym_POUND] = ACTIONS(1220), + [sym_decimal_integer_literal] = ACTIONS(1222), + [sym_hex_integer_literal] = ACTIONS(1222), + [sym_octal_integer_literal] = ACTIONS(1220), + [sym_binary_integer_literal] = ACTIONS(1220), + [sym_decimal_floating_point_literal] = ACTIONS(1220), + [sym_hex_floating_point_literal] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1222), + [anon_sym_false] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1220), + [anon_sym_r] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1220), + [anon_sym_null] = ACTIONS(1222), + [anon_sym_throw] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_QMARK_QMARK] = ACTIONS(1220), + [anon_sym_QMARK] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1220), + [anon_sym_AMP_AMP] = ACTIONS(1220), + [sym_equality_operator] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1220), + [anon_sym_LT_EQ] = ACTIONS(1220), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1220), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1220), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1220), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1220), + [anon_sym_TILDE_SLASH] = ACTIONS(1220), + [sym_increment_operator] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_await] = ACTIONS(1222), + [anon_sym_is] = ACTIONS(1222), + [anon_sym_as] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_QMARK_DOT] = ACTIONS(1220), + [anon_sym_DOT_DOT] = ACTIONS(1220), + [anon_sym_assert] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_try] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_AT] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_abstract] = ACTIONS(1222), + [anon_sym_class] = ACTIONS(1222), + [anon_sym_super] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1222), + [anon_sym_var] = ACTIONS(1222), + [anon_sym_covariant] = ACTIONS(1222), + [anon_sym_Function] = ACTIONS(1222), + [anon_sym_get] = ACTIONS(1222), + [anon_sym_set] = ACTIONS(1222), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_final] = ACTIONS(1222), + [anon_sym_external] = ACTIONS(1222), + [anon_sym_this] = ACTIONS(1222), [sym_comment] = ACTIONS(3), }, - [841] = { + [813] = { [ts_builtin_sym_end] = ACTIONS(1224), [sym_identifier] = ACTIONS(1226), [anon_sym_POUND] = ACTIONS(1224), @@ -90829,7 +90242,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_void] = ACTIONS(1226), [anon_sym_var] = ACTIONS(1226), [anon_sym_covariant] = ACTIONS(1226), - [anon_sym_Function] = ACTIONS(1226), + [anon_sym_Function] = ACTIONS(1228), [anon_sym_get] = ACTIONS(1226), [anon_sym_set] = ACTIONS(1226), [anon_sym_new] = ACTIONS(1226), @@ -90839,1805 +90252,4027 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, + [814] = { + [ts_builtin_sym_end] = ACTIONS(1231), + [sym_identifier] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(1231), + [sym_decimal_integer_literal] = ACTIONS(1233), + [sym_hex_integer_literal] = ACTIONS(1233), + [sym_octal_integer_literal] = ACTIONS(1231), + [sym_binary_integer_literal] = ACTIONS(1231), + [sym_decimal_floating_point_literal] = ACTIONS(1231), + [sym_hex_floating_point_literal] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1233), + [anon_sym_false] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1231), + [anon_sym_r] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_COMMA] = ACTIONS(1231), + [anon_sym_null] = ACTIONS(1233), + [anon_sym_throw] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_QMARK_QMARK] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [sym_equality_operator] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_GT_GT_GT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_TILDE_SLASH] = ACTIONS(1231), + [sym_increment_operator] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_await] = ACTIONS(1233), + [anon_sym_is] = ACTIONS(1233), + [anon_sym_as] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_assert] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_abstract] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1233), + [anon_sym_super] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1233), + [anon_sym_var] = ACTIONS(1233), + [anon_sym_covariant] = ACTIONS(1233), + [anon_sym_Function] = ACTIONS(1233), + [anon_sym_get] = ACTIONS(1233), + [anon_sym_set] = ACTIONS(1233), + [anon_sym_new] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_final] = ACTIONS(1233), + [anon_sym_external] = ACTIONS(1233), + [anon_sym_this] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + }, + [815] = { + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(1277), + [sym_decimal_integer_literal] = ACTIONS(1279), + [sym_hex_integer_literal] = ACTIONS(1279), + [sym_octal_integer_literal] = ACTIONS(1277), + [sym_binary_integer_literal] = ACTIONS(1277), + [sym_decimal_floating_point_literal] = ACTIONS(1277), + [sym_hex_floating_point_literal] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(1279), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1277), + [anon_sym_r] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_throw] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_QMARK_QMARK] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [sym_equality_operator] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_LT_LT] = ACTIONS(1277), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_GT_GT_GT] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_PERCENT] = ACTIONS(1277), + [anon_sym_TILDE_SLASH] = ACTIONS(1277), + [sym_increment_operator] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1279), + [anon_sym_is] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_DOT] = ACTIONS(1279), + [anon_sym_QMARK_DOT] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1277), + [anon_sym_assert] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_AT] = ACTIONS(1277), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_abstract] = ACTIONS(1279), + [anon_sym_class] = ACTIONS(1279), + [anon_sym_super] = ACTIONS(1279), + [anon_sym_void] = ACTIONS(1279), + [anon_sym_var] = ACTIONS(1279), + [anon_sym_covariant] = ACTIONS(1279), + [anon_sym_Function] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(1279), + [anon_sym_set] = ACTIONS(1279), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_final] = ACTIONS(1279), + [anon_sym_external] = ACTIONS(1279), + [anon_sym_this] = ACTIONS(1279), + [sym_comment] = ACTIONS(3), + }, + [816] = { + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [anon_sym_POUND] = ACTIONS(1281), + [sym_decimal_integer_literal] = ACTIONS(1283), + [sym_hex_integer_literal] = ACTIONS(1283), + [sym_octal_integer_literal] = ACTIONS(1281), + [sym_binary_integer_literal] = ACTIONS(1281), + [sym_decimal_floating_point_literal] = ACTIONS(1281), + [sym_hex_floating_point_literal] = ACTIONS(1283), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1281), + [anon_sym_r] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_null] = ACTIONS(1283), + [anon_sym_throw] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_QMARK_QMARK] = ACTIONS(1281), + [anon_sym_QMARK] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [sym_equality_operator] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(1281), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_GT_GT_GT] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_TILDE_SLASH] = ACTIONS(1281), + [sym_increment_operator] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1283), + [anon_sym_is] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_QMARK_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_assert] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_AT] = ACTIONS(1281), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_abstract] = ACTIONS(1283), + [anon_sym_class] = ACTIONS(1283), + [anon_sym_super] = ACTIONS(1283), + [anon_sym_void] = ACTIONS(1283), + [anon_sym_var] = ACTIONS(1283), + [anon_sym_covariant] = ACTIONS(1283), + [anon_sym_Function] = ACTIONS(1283), + [anon_sym_get] = ACTIONS(1283), + [anon_sym_set] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_final] = ACTIONS(1283), + [anon_sym_external] = ACTIONS(1283), + [anon_sym_this] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + }, + [817] = { + [ts_builtin_sym_end] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1577), + [anon_sym_POUND] = ACTIONS(1575), + [sym_decimal_integer_literal] = ACTIONS(1577), + [sym_hex_integer_literal] = ACTIONS(1577), + [sym_octal_integer_literal] = ACTIONS(1575), + [sym_binary_integer_literal] = ACTIONS(1575), + [sym_decimal_floating_point_literal] = ACTIONS(1575), + [sym_hex_floating_point_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1575), + [anon_sym_r] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_throw] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_QMARK_QMARK] = ACTIONS(1575), + [anon_sym_QMARK] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1575), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [sym_equality_operator] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_EQ] = ACTIONS(1575), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(1577), + [anon_sym_GT_GT_GT] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1577), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_TILDE_SLASH] = ACTIONS(1575), + [sym_increment_operator] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1577), + [anon_sym_is] = ACTIONS(1577), + [anon_sym_as] = ACTIONS(1577), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_QMARK_DOT] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_yield] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_try] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_abstract] = ACTIONS(1577), + [anon_sym_class] = ACTIONS(1577), + [anon_sym_super] = ACTIONS(1577), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_covariant] = ACTIONS(1577), + [anon_sym_Function] = ACTIONS(1577), + [anon_sym_get] = ACTIONS(1577), + [anon_sym_set] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_final] = ACTIONS(1577), + [anon_sym_external] = ACTIONS(1577), + [anon_sym_this] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [818] = { + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(1583), + [sym_decimal_integer_literal] = ACTIONS(1585), + [sym_hex_integer_literal] = ACTIONS(1585), + [sym_octal_integer_literal] = ACTIONS(1583), + [sym_binary_integer_literal] = ACTIONS(1583), + [sym_decimal_floating_point_literal] = ACTIONS(1583), + [sym_hex_floating_point_literal] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1583), + [anon_sym_r] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_throw] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_QMARK_QMARK] = ACTIONS(1583), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_PIPE_PIPE] = ACTIONS(1583), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [sym_equality_operator] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_LT_LT] = ACTIONS(1583), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_GT_GT_GT] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1583), + [anon_sym_TILDE_SLASH] = ACTIONS(1583), + [sym_increment_operator] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1585), + [anon_sym_await] = ACTIONS(1585), + [anon_sym_is] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_QMARK_DOT] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_AT] = ACTIONS(1583), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_abstract] = ACTIONS(1585), + [anon_sym_class] = ACTIONS(1585), + [anon_sym_super] = ACTIONS(1585), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_covariant] = ACTIONS(1585), + [anon_sym_Function] = ACTIONS(1585), + [anon_sym_get] = ACTIONS(1585), + [anon_sym_set] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_final] = ACTIONS(1585), + [anon_sym_external] = ACTIONS(1585), + [anon_sym_this] = ACTIONS(1585), + [sym_comment] = ACTIONS(3), + }, + [819] = { + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1285), + [sym_decimal_integer_literal] = ACTIONS(1287), + [sym_hex_integer_literal] = ACTIONS(1287), + [sym_octal_integer_literal] = ACTIONS(1285), + [sym_binary_integer_literal] = ACTIONS(1285), + [sym_decimal_floating_point_literal] = ACTIONS(1285), + [sym_hex_floating_point_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1285), + [anon_sym_r] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_throw] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_QMARK_QMARK] = ACTIONS(1285), + [anon_sym_QMARK] = ACTIONS(1287), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [sym_equality_operator] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_LT_LT] = ACTIONS(1285), + [anon_sym_GT_GT] = ACTIONS(1287), + [anon_sym_GT_GT_GT] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1285), + [anon_sym_TILDE_SLASH] = ACTIONS(1285), + [sym_increment_operator] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_TILDE] = ACTIONS(1287), + [anon_sym_await] = ACTIONS(1287), + [anon_sym_is] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_DOT] = ACTIONS(1287), + [anon_sym_QMARK_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_assert] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_yield] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_abstract] = ACTIONS(1287), + [anon_sym_class] = ACTIONS(1287), + [anon_sym_super] = ACTIONS(1287), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_var] = ACTIONS(1287), + [anon_sym_covariant] = ACTIONS(1287), + [anon_sym_Function] = ACTIONS(1287), + [anon_sym_get] = ACTIONS(1287), + [anon_sym_set] = ACTIONS(1287), + [anon_sym_new] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_final] = ACTIONS(1287), + [anon_sym_external] = ACTIONS(1287), + [anon_sym_this] = ACTIONS(1287), + [sym_comment] = ACTIONS(3), + }, + [820] = { + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(913), + [sym_decimal_integer_literal] = ACTIONS(915), + [sym_hex_integer_literal] = ACTIONS(915), + [sym_octal_integer_literal] = ACTIONS(913), + [sym_binary_integer_literal] = ACTIONS(913), + [sym_decimal_floating_point_literal] = ACTIONS(913), + [sym_hex_floating_point_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(913), + [anon_sym_r] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_null] = ACTIONS(915), + [anon_sym_throw] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_QMARK_QMARK] = ACTIONS(913), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_AMP_AMP] = ACTIONS(913), + [sym_equality_operator] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_LT_LT] = ACTIONS(913), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_GT_GT_GT] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_TILDE_SLASH] = ACTIONS(913), + [sym_increment_operator] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_is] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_assert] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_try] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_abstract] = ACTIONS(915), + [anon_sym_class] = ACTIONS(915), + [anon_sym_super] = ACTIONS(915), + [anon_sym_void] = ACTIONS(915), + [anon_sym_var] = ACTIONS(915), + [anon_sym_covariant] = ACTIONS(915), + [anon_sym_Function] = ACTIONS(915), + [anon_sym_get] = ACTIONS(915), + [anon_sym_set] = ACTIONS(915), + [anon_sym_new] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_final] = ACTIONS(915), + [anon_sym_external] = ACTIONS(915), + [anon_sym_this] = ACTIONS(915), + [sym_comment] = ACTIONS(3), + }, + [821] = { + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(1289), + [sym_decimal_integer_literal] = ACTIONS(1291), + [sym_hex_integer_literal] = ACTIONS(1291), + [sym_octal_integer_literal] = ACTIONS(1289), + [sym_binary_integer_literal] = ACTIONS(1289), + [sym_decimal_floating_point_literal] = ACTIONS(1289), + [sym_hex_floating_point_literal] = ACTIONS(1291), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1289), + [anon_sym_r] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_null] = ACTIONS(1291), + [anon_sym_throw] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_QMARK_QMARK] = ACTIONS(1289), + [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [sym_equality_operator] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_LT_LT] = ACTIONS(1289), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_GT_GT_GT] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_TILDE_SLASH] = ACTIONS(1289), + [sym_increment_operator] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), + [anon_sym_await] = ACTIONS(1291), + [anon_sym_is] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_QMARK_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1289), + [anon_sym_assert] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_yield] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_try] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_AT] = ACTIONS(1289), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_abstract] = ACTIONS(1291), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_super] = ACTIONS(1291), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_var] = ACTIONS(1291), + [anon_sym_covariant] = ACTIONS(1291), + [anon_sym_Function] = ACTIONS(1291), + [anon_sym_get] = ACTIONS(1291), + [anon_sym_set] = ACTIONS(1291), + [anon_sym_new] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_final] = ACTIONS(1291), + [anon_sym_external] = ACTIONS(1291), + [anon_sym_this] = ACTIONS(1291), + [sym_comment] = ACTIONS(3), + }, + [822] = { + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(684), + [anon_sym_r] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_null] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_QMARK_QMARK] = ACTIONS(684), + [anon_sym_QMARK] = ACTIONS(686), + [anon_sym_PIPE_PIPE] = ACTIONS(684), + [anon_sym_AMP_AMP] = ACTIONS(684), + [sym_equality_operator] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(684), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_GT_GT_GT] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(684), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_TILDE_SLASH] = ACTIONS(684), + [sym_increment_operator] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_await] = ACTIONS(686), + [anon_sym_is] = ACTIONS(686), + [anon_sym_as] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_QMARK_DOT] = ACTIONS(684), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_super] = ACTIONS(686), + [anon_sym_void] = ACTIONS(686), + [anon_sym_var] = ACTIONS(686), + [anon_sym_covariant] = ACTIONS(686), + [anon_sym_Function] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [anon_sym_new] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_external] = ACTIONS(686), + [anon_sym_this] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + }, + [823] = { + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_identifier] = ACTIONS(1295), + [anon_sym_POUND] = ACTIONS(1293), + [sym_decimal_integer_literal] = ACTIONS(1295), + [sym_hex_integer_literal] = ACTIONS(1295), + [sym_octal_integer_literal] = ACTIONS(1293), + [sym_binary_integer_literal] = ACTIONS(1293), + [sym_decimal_floating_point_literal] = ACTIONS(1293), + [sym_hex_floating_point_literal] = ACTIONS(1295), + [anon_sym_true] = ACTIONS(1295), + [anon_sym_false] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1293), + [anon_sym_r] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1293), + [anon_sym_null] = ACTIONS(1295), + [anon_sym_throw] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_QMARK_QMARK] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_PIPE_PIPE] = ACTIONS(1293), + [anon_sym_AMP_AMP] = ACTIONS(1293), + [sym_equality_operator] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1293), + [anon_sym_LT_EQ] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_LT_LT] = ACTIONS(1293), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_GT_GT_GT] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1293), + [anon_sym_TILDE_SLASH] = ACTIONS(1293), + [sym_increment_operator] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_await] = ACTIONS(1295), + [anon_sym_is] = ACTIONS(1295), + [anon_sym_as] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_QMARK_DOT] = ACTIONS(1293), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_assert] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_yield] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_try] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_AT] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_abstract] = ACTIONS(1295), + [anon_sym_class] = ACTIONS(1295), + [anon_sym_super] = ACTIONS(1295), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_var] = ACTIONS(1295), + [anon_sym_covariant] = ACTIONS(1295), + [anon_sym_Function] = ACTIONS(1295), + [anon_sym_get] = ACTIONS(1295), + [anon_sym_set] = ACTIONS(1295), + [anon_sym_new] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_final] = ACTIONS(1295), + [anon_sym_external] = ACTIONS(1295), + [anon_sym_this] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + }, + [824] = { + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(1297), + [sym_decimal_integer_literal] = ACTIONS(1299), + [sym_hex_integer_literal] = ACTIONS(1299), + [sym_octal_integer_literal] = ACTIONS(1297), + [sym_binary_integer_literal] = ACTIONS(1297), + [sym_decimal_floating_point_literal] = ACTIONS(1297), + [sym_hex_floating_point_literal] = ACTIONS(1299), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1297), + [anon_sym_r] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_null] = ACTIONS(1299), + [anon_sym_throw] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_QMARK_QMARK] = ACTIONS(1297), + [anon_sym_QMARK] = ACTIONS(1299), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [sym_equality_operator] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_LT_LT] = ACTIONS(1297), + [anon_sym_GT_GT] = ACTIONS(1299), + [anon_sym_GT_GT_GT] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_TILDE_SLASH] = ACTIONS(1297), + [sym_increment_operator] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_await] = ACTIONS(1299), + [anon_sym_is] = ACTIONS(1299), + [anon_sym_as] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_QMARK_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(1297), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_yield] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_try] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_AT] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_abstract] = ACTIONS(1299), + [anon_sym_class] = ACTIONS(1299), + [anon_sym_super] = ACTIONS(1299), + [anon_sym_void] = ACTIONS(1299), + [anon_sym_var] = ACTIONS(1299), + [anon_sym_covariant] = ACTIONS(1299), + [anon_sym_Function] = ACTIONS(1299), + [anon_sym_get] = ACTIONS(1299), + [anon_sym_set] = ACTIONS(1299), + [anon_sym_new] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_final] = ACTIONS(1299), + [anon_sym_external] = ACTIONS(1299), + [anon_sym_this] = ACTIONS(1299), + [sym_comment] = ACTIONS(3), + }, + [825] = { + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1327), + [anon_sym_POUND] = ACTIONS(1325), + [sym_decimal_integer_literal] = ACTIONS(1327), + [sym_hex_integer_literal] = ACTIONS(1327), + [sym_octal_integer_literal] = ACTIONS(1325), + [sym_binary_integer_literal] = ACTIONS(1325), + [sym_decimal_floating_point_literal] = ACTIONS(1325), + [sym_hex_floating_point_literal] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1327), + [anon_sym_false] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1325), + [anon_sym_r] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1325), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_null] = ACTIONS(1327), + [anon_sym_throw] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1325), + [anon_sym_QMARK_QMARK] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1325), + [sym_equality_operator] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1325), + [anon_sym_LT_EQ] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1327), + [anon_sym_GT_GT_GT] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1325), + [anon_sym_TILDE_SLASH] = ACTIONS(1325), + [sym_increment_operator] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1327), + [anon_sym_is] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1327), + [anon_sym_QMARK_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1325), + [anon_sym_assert] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_abstract] = ACTIONS(1327), + [anon_sym_class] = ACTIONS(1327), + [anon_sym_super] = ACTIONS(1327), + [anon_sym_void] = ACTIONS(1327), + [anon_sym_var] = ACTIONS(1327), + [anon_sym_covariant] = ACTIONS(1327), + [anon_sym_Function] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(1327), + [anon_sym_set] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_final] = ACTIONS(1327), + [anon_sym_external] = ACTIONS(1327), + [anon_sym_this] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + }, + [826] = { + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_identifier] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(1305), + [sym_decimal_integer_literal] = ACTIONS(1307), + [sym_hex_integer_literal] = ACTIONS(1307), + [sym_octal_integer_literal] = ACTIONS(1305), + [sym_binary_integer_literal] = ACTIONS(1305), + [sym_decimal_floating_point_literal] = ACTIONS(1305), + [sym_hex_floating_point_literal] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1305), + [anon_sym_r] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_null] = ACTIONS(1307), + [anon_sym_throw] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_QMARK_QMARK] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [sym_equality_operator] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_LT_LT] = ACTIONS(1305), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_GT_GT_GT] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1305), + [anon_sym_TILDE_SLASH] = ACTIONS(1305), + [sym_increment_operator] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_is] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1307), + [anon_sym_QMARK_DOT] = ACTIONS(1305), + [anon_sym_DOT_DOT] = ACTIONS(1305), + [anon_sym_assert] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_yield] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_AT] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1307), + [anon_sym_class] = ACTIONS(1307), + [anon_sym_super] = ACTIONS(1307), + [anon_sym_void] = ACTIONS(1307), + [anon_sym_var] = ACTIONS(1307), + [anon_sym_covariant] = ACTIONS(1307), + [anon_sym_Function] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(1307), + [anon_sym_set] = ACTIONS(1307), + [anon_sym_new] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_final] = ACTIONS(1307), + [anon_sym_external] = ACTIONS(1307), + [anon_sym_this] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + }, + [827] = { + [ts_builtin_sym_end] = ACTIONS(1587), + [sym_identifier] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(1587), + [sym_decimal_integer_literal] = ACTIONS(1589), + [sym_hex_integer_literal] = ACTIONS(1589), + [sym_octal_integer_literal] = ACTIONS(1587), + [sym_binary_integer_literal] = ACTIONS(1587), + [sym_decimal_floating_point_literal] = ACTIONS(1587), + [sym_hex_floating_point_literal] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1587), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1587), + [anon_sym_r] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_throw] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_QMARK_QMARK] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_PIPE_PIPE] = ACTIONS(1587), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [sym_equality_operator] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym_GT] = ACTIONS(1589), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_LT_LT] = ACTIONS(1587), + [anon_sym_GT_GT] = ACTIONS(1589), + [anon_sym_GT_GT_GT] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1589), + [anon_sym_PERCENT] = ACTIONS(1587), + [anon_sym_TILDE_SLASH] = ACTIONS(1587), + [sym_increment_operator] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_await] = ACTIONS(1589), + [anon_sym_is] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(1589), + [anon_sym_DOT] = ACTIONS(1589), + [anon_sym_QMARK_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(1587), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_abstract] = ACTIONS(1589), + [anon_sym_class] = ACTIONS(1589), + [anon_sym_super] = ACTIONS(1589), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_covariant] = ACTIONS(1589), + [anon_sym_Function] = ACTIONS(1589), + [anon_sym_get] = ACTIONS(1589), + [anon_sym_set] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_final] = ACTIONS(1589), + [anon_sym_external] = ACTIONS(1589), + [anon_sym_this] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + }, + [828] = { + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1319), + [anon_sym_POUND] = ACTIONS(1317), + [sym_decimal_integer_literal] = ACTIONS(1319), + [sym_hex_integer_literal] = ACTIONS(1319), + [sym_octal_integer_literal] = ACTIONS(1317), + [sym_binary_integer_literal] = ACTIONS(1317), + [sym_decimal_floating_point_literal] = ACTIONS(1317), + [sym_hex_floating_point_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1317), + [anon_sym_r] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1317), + [anon_sym_null] = ACTIONS(1319), + [anon_sym_throw] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_QMARK_QMARK] = ACTIONS(1317), + [anon_sym_QMARK] = ACTIONS(1319), + [anon_sym_PIPE_PIPE] = ACTIONS(1317), + [anon_sym_AMP_AMP] = ACTIONS(1317), + [sym_equality_operator] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_LT_LT] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_GT_GT_GT] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1317), + [anon_sym_TILDE_SLASH] = ACTIONS(1317), + [sym_increment_operator] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_await] = ACTIONS(1319), + [anon_sym_is] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_QMARK_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_assert] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_yield] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_abstract] = ACTIONS(1319), + [anon_sym_class] = ACTIONS(1319), + [anon_sym_super] = ACTIONS(1319), + [anon_sym_void] = ACTIONS(1319), + [anon_sym_var] = ACTIONS(1319), + [anon_sym_covariant] = ACTIONS(1319), + [anon_sym_Function] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_final] = ACTIONS(1319), + [anon_sym_external] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + }, + [829] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1321), + [sym_decimal_integer_literal] = ACTIONS(1323), + [sym_hex_integer_literal] = ACTIONS(1323), + [sym_octal_integer_literal] = ACTIONS(1321), + [sym_binary_integer_literal] = ACTIONS(1321), + [sym_decimal_floating_point_literal] = ACTIONS(1321), + [sym_hex_floating_point_literal] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1321), + [anon_sym_r] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_QMARK_QMARK] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [sym_equality_operator] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_GT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_LT_LT] = ACTIONS(1321), + [anon_sym_GT_GT] = ACTIONS(1323), + [anon_sym_GT_GT_GT] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1323), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_TILDE_SLASH] = ACTIONS(1321), + [sym_increment_operator] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_await] = ACTIONS(1323), + [anon_sym_is] = ACTIONS(1323), + [anon_sym_as] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_QMARK_DOT] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_assert] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_yield] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_abstract] = ACTIONS(1323), + [anon_sym_class] = ACTIONS(1323), + [anon_sym_super] = ACTIONS(1323), + [anon_sym_void] = ACTIONS(1323), + [anon_sym_var] = ACTIONS(1323), + [anon_sym_covariant] = ACTIONS(1323), + [anon_sym_Function] = ACTIONS(1323), + [anon_sym_get] = ACTIONS(1323), + [anon_sym_set] = ACTIONS(1323), + [anon_sym_new] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_final] = ACTIONS(1323), + [anon_sym_external] = ACTIONS(1323), + [anon_sym_this] = ACTIONS(1323), + [sym_comment] = ACTIONS(3), + }, + [830] = { + [ts_builtin_sym_end] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1415), + [sym_decimal_integer_literal] = ACTIONS(1413), + [sym_hex_integer_literal] = ACTIONS(1413), + [sym_octal_integer_literal] = ACTIONS(1415), + [sym_binary_integer_literal] = ACTIONS(1415), + [sym_decimal_floating_point_literal] = ACTIONS(1415), + [sym_hex_floating_point_literal] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1415), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1415), + [anon_sym_r] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_COMMA] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_throw] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_QMARK_QMARK] = ACTIONS(1415), + [anon_sym_QMARK] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [sym_equality_operator] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1413), + [anon_sym_GT_EQ] = ACTIONS(1415), + [anon_sym_LT_EQ] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(1413), + [anon_sym_GT_GT_GT] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1413), + [anon_sym_PERCENT] = ACTIONS(1415), + [anon_sym_TILDE_SLASH] = ACTIONS(1415), + [sym_increment_operator] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_await] = ACTIONS(1413), + [anon_sym_is] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_QMARK_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_AT] = ACTIONS(1415), + [anon_sym_enum] = ACTIONS(1413), + [anon_sym_abstract] = ACTIONS(1413), + [anon_sym_class] = ACTIONS(1413), + [anon_sym_super] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_covariant] = ACTIONS(1413), + [anon_sym_Function] = ACTIONS(1413), + [anon_sym_get] = ACTIONS(1413), + [anon_sym_set] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_final] = ACTIONS(1413), + [anon_sym_external] = ACTIONS(1413), + [anon_sym_this] = ACTIONS(1413), + [sym_comment] = ACTIONS(3), + }, + [831] = { + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1331), + [anon_sym_POUND] = ACTIONS(1329), + [sym_decimal_integer_literal] = ACTIONS(1331), + [sym_hex_integer_literal] = ACTIONS(1331), + [sym_octal_integer_literal] = ACTIONS(1329), + [sym_binary_integer_literal] = ACTIONS(1329), + [sym_decimal_floating_point_literal] = ACTIONS(1329), + [sym_hex_floating_point_literal] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1329), + [anon_sym_r] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1331), + [anon_sym_throw] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_QMARK_QMARK] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [sym_equality_operator] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_GT_GT_GT] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_TILDE_SLASH] = ACTIONS(1329), + [sym_increment_operator] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_await] = ACTIONS(1331), + [anon_sym_is] = ACTIONS(1331), + [anon_sym_as] = ACTIONS(1331), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_QMARK_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_assert] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_yield] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_abstract] = ACTIONS(1331), + [anon_sym_class] = ACTIONS(1331), + [anon_sym_super] = ACTIONS(1331), + [anon_sym_void] = ACTIONS(1331), + [anon_sym_var] = ACTIONS(1331), + [anon_sym_covariant] = ACTIONS(1331), + [anon_sym_Function] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1331), + [anon_sym_set] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_final] = ACTIONS(1331), + [anon_sym_external] = ACTIONS(1331), + [anon_sym_this] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + }, + [832] = { + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [sym_decimal_integer_literal] = ACTIONS(1495), + [sym_hex_integer_literal] = ACTIONS(1495), + [sym_octal_integer_literal] = ACTIONS(1493), + [sym_binary_integer_literal] = ACTIONS(1493), + [sym_decimal_floating_point_literal] = ACTIONS(1493), + [sym_hex_floating_point_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1493), + [anon_sym_r] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_QMARK_QMARK] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [sym_equality_operator] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_GT_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_TILDE_SLASH] = ACTIONS(1493), + [sym_increment_operator] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1495), + [anon_sym_is] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1495), + [anon_sym_QMARK_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_abstract] = ACTIONS(1495), + [anon_sym_class] = ACTIONS(1495), + [anon_sym_super] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1495), + [anon_sym_var] = ACTIONS(1495), + [anon_sym_covariant] = ACTIONS(1495), + [anon_sym_Function] = ACTIONS(1495), + [anon_sym_get] = ACTIONS(1495), + [anon_sym_set] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_final] = ACTIONS(1495), + [anon_sym_external] = ACTIONS(1495), + [anon_sym_this] = ACTIONS(1495), + [sym_comment] = ACTIONS(3), + }, + [833] = { + [ts_builtin_sym_end] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(1531), + [sym_decimal_integer_literal] = ACTIONS(1533), + [sym_hex_integer_literal] = ACTIONS(1533), + [sym_octal_integer_literal] = ACTIONS(1531), + [sym_binary_integer_literal] = ACTIONS(1531), + [sym_decimal_floating_point_literal] = ACTIONS(1531), + [sym_hex_floating_point_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1533), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1531), + [anon_sym_r] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_COMMA] = ACTIONS(1531), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_throw] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_QMARK_QMARK] = ACTIONS(1531), + [anon_sym_QMARK] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [sym_equality_operator] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1531), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_GT_GT_GT] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1531), + [anon_sym_TILDE_SLASH] = ACTIONS(1531), + [sym_increment_operator] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1533), + [anon_sym_await] = ACTIONS(1533), + [anon_sym_is] = ACTIONS(1533), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_QMARK_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1531), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_try] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_abstract] = ACTIONS(1533), + [anon_sym_class] = ACTIONS(1533), + [anon_sym_super] = ACTIONS(1533), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_covariant] = ACTIONS(1533), + [anon_sym_Function] = ACTIONS(1533), + [anon_sym_get] = ACTIONS(1533), + [anon_sym_set] = ACTIONS(1533), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_final] = ACTIONS(1533), + [anon_sym_external] = ACTIONS(1533), + [anon_sym_this] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + }, + [834] = { + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(1333), + [sym_decimal_integer_literal] = ACTIONS(1335), + [sym_hex_integer_literal] = ACTIONS(1335), + [sym_octal_integer_literal] = ACTIONS(1333), + [sym_binary_integer_literal] = ACTIONS(1333), + [sym_decimal_floating_point_literal] = ACTIONS(1333), + [sym_hex_floating_point_literal] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1333), + [anon_sym_r] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_null] = ACTIONS(1335), + [anon_sym_throw] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_QMARK_QMARK] = ACTIONS(1333), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [sym_equality_operator] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_LT_LT] = ACTIONS(1333), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_GT_GT_GT] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_TILDE_SLASH] = ACTIONS(1333), + [sym_increment_operator] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_await] = ACTIONS(1335), + [anon_sym_is] = ACTIONS(1335), + [anon_sym_as] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_QMARK_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_assert] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_abstract] = ACTIONS(1335), + [anon_sym_class] = ACTIONS(1335), + [anon_sym_super] = ACTIONS(1335), + [anon_sym_void] = ACTIONS(1335), + [anon_sym_var] = ACTIONS(1335), + [anon_sym_covariant] = ACTIONS(1335), + [anon_sym_Function] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(1335), + [anon_sym_set] = ACTIONS(1335), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_final] = ACTIONS(1335), + [anon_sym_external] = ACTIONS(1335), + [anon_sym_this] = ACTIONS(1335), + [sym_comment] = ACTIONS(3), + }, + [835] = { + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1503), + [sym_decimal_integer_literal] = ACTIONS(1505), + [sym_hex_integer_literal] = ACTIONS(1505), + [sym_octal_integer_literal] = ACTIONS(1503), + [sym_binary_integer_literal] = ACTIONS(1503), + [sym_decimal_floating_point_literal] = ACTIONS(1503), + [sym_hex_floating_point_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1503), + [anon_sym_r] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_QMARK_QMARK] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [sym_equality_operator] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_TILDE_SLASH] = ACTIONS(1503), + [sym_increment_operator] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1505), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_is] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_QMARK_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_AT] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_abstract] = ACTIONS(1505), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_super] = ACTIONS(1505), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_covariant] = ACTIONS(1505), + [anon_sym_Function] = ACTIONS(1505), + [anon_sym_get] = ACTIONS(1505), + [anon_sym_set] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_final] = ACTIONS(1505), + [anon_sym_external] = ACTIONS(1505), + [anon_sym_this] = ACTIONS(1505), + [sym_comment] = ACTIONS(3), + }, + [836] = { + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1507), + [sym_decimal_integer_literal] = ACTIONS(1509), + [sym_hex_integer_literal] = ACTIONS(1509), + [sym_octal_integer_literal] = ACTIONS(1507), + [sym_binary_integer_literal] = ACTIONS(1507), + [sym_decimal_floating_point_literal] = ACTIONS(1507), + [sym_hex_floating_point_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1507), + [anon_sym_r] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_QMARK_QMARK] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [sym_equality_operator] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_GT_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_TILDE_SLASH] = ACTIONS(1507), + [sym_increment_operator] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_is] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_QMARK_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_super] = ACTIONS(1509), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_covariant] = ACTIONS(1509), + [anon_sym_Function] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_final] = ACTIONS(1509), + [anon_sym_external] = ACTIONS(1509), + [anon_sym_this] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + }, + [837] = { + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1265), + [sym_decimal_integer_literal] = ACTIONS(1267), + [sym_hex_integer_literal] = ACTIONS(1267), + [sym_octal_integer_literal] = ACTIONS(1265), + [sym_binary_integer_literal] = ACTIONS(1265), + [sym_decimal_floating_point_literal] = ACTIONS(1265), + [sym_hex_floating_point_literal] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1265), + [anon_sym_r] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_QMARK_QMARK] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [sym_equality_operator] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1265), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_GT_GT_GT] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1265), + [anon_sym_TILDE_SLASH] = ACTIONS(1265), + [sym_increment_operator] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_await] = ACTIONS(1267), + [anon_sym_is] = ACTIONS(1267), + [anon_sym_as] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_QMARK_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1265), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_abstract] = ACTIONS(1267), + [anon_sym_class] = ACTIONS(1267), + [anon_sym_super] = ACTIONS(1267), + [anon_sym_void] = ACTIONS(1267), + [anon_sym_var] = ACTIONS(1267), + [anon_sym_covariant] = ACTIONS(1267), + [anon_sym_Function] = ACTIONS(1267), + [anon_sym_get] = ACTIONS(1267), + [anon_sym_set] = ACTIONS(1267), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_final] = ACTIONS(1267), + [anon_sym_external] = ACTIONS(1267), + [anon_sym_this] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + }, + [838] = { + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(1405), + [sym_decimal_integer_literal] = ACTIONS(1407), + [sym_hex_integer_literal] = ACTIONS(1407), + [sym_octal_integer_literal] = ACTIONS(1405), + [sym_binary_integer_literal] = ACTIONS(1405), + [sym_decimal_floating_point_literal] = ACTIONS(1405), + [sym_hex_floating_point_literal] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1405), + [anon_sym_r] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_throw] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_QMARK_QMARK] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [sym_equality_operator] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_GT_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_TILDE_SLASH] = ACTIONS(1252), + [sym_increment_operator] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_await] = ACTIONS(1407), + [anon_sym_is] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1407), + [anon_sym_QMARK_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_AT] = ACTIONS(1405), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_abstract] = ACTIONS(1407), + [anon_sym_class] = ACTIONS(1407), + [anon_sym_super] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_covariant] = ACTIONS(1407), + [anon_sym_Function] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1407), + [anon_sym_set] = ACTIONS(1407), + [anon_sym_new] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_final] = ACTIONS(1407), + [anon_sym_external] = ACTIONS(1407), + [anon_sym_this] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + }, + [839] = { + [ts_builtin_sym_end] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1403), + [anon_sym_POUND] = ACTIONS(1401), + [sym_decimal_integer_literal] = ACTIONS(1403), + [sym_hex_integer_literal] = ACTIONS(1403), + [sym_octal_integer_literal] = ACTIONS(1401), + [sym_binary_integer_literal] = ACTIONS(1401), + [sym_decimal_floating_point_literal] = ACTIONS(1401), + [sym_hex_floating_point_literal] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1401), + [anon_sym_r] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_throw] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_QMARK_QMARK] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_PIPE_PIPE] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [sym_equality_operator] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1401), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_GT_GT_GT] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1403), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_TILDE_SLASH] = ACTIONS(1401), + [sym_increment_operator] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_is] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_DOT] = ACTIONS(1403), + [anon_sym_QMARK_DOT] = ACTIONS(1401), + [anon_sym_DOT_DOT] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_try] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1403), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(1403), + [anon_sym_super] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_covariant] = ACTIONS(1403), + [anon_sym_Function] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_new] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_final] = ACTIONS(1403), + [anon_sym_external] = ACTIONS(1403), + [anon_sym_this] = ACTIONS(1403), + [sym_comment] = ACTIONS(3), + }, + [840] = { + [ts_builtin_sym_end] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1485), + [sym_decimal_integer_literal] = ACTIONS(1487), + [sym_hex_integer_literal] = ACTIONS(1487), + [sym_octal_integer_literal] = ACTIONS(1485), + [sym_binary_integer_literal] = ACTIONS(1485), + [sym_decimal_floating_point_literal] = ACTIONS(1485), + [sym_hex_floating_point_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1485), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1485), + [anon_sym_r] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1487), + [anon_sym_throw] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_QMARK_QMARK] = ACTIONS(1485), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [sym_equality_operator] = ACTIONS(1485), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1485), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_GT_GT_GT] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1485), + [anon_sym_TILDE_SLASH] = ACTIONS(1485), + [sym_increment_operator] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1487), + [anon_sym_is] = ACTIONS(1487), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_QMARK_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1487), + [anon_sym_switch] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_yield] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_AT] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_abstract] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1487), + [anon_sym_super] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1487), + [anon_sym_var] = ACTIONS(1487), + [anon_sym_covariant] = ACTIONS(1487), + [anon_sym_Function] = ACTIONS(1487), + [anon_sym_get] = ACTIONS(1487), + [anon_sym_set] = ACTIONS(1487), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_final] = ACTIONS(1487), + [anon_sym_external] = ACTIONS(1487), + [anon_sym_this] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + }, + [841] = { + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1349), + [sym_decimal_integer_literal] = ACTIONS(1351), + [sym_hex_integer_literal] = ACTIONS(1351), + [sym_octal_integer_literal] = ACTIONS(1349), + [sym_binary_integer_literal] = ACTIONS(1349), + [sym_decimal_floating_point_literal] = ACTIONS(1349), + [sym_hex_floating_point_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1349), + [anon_sym_r] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_QMARK_QMARK] = ACTIONS(1349), + [anon_sym_QMARK] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [sym_equality_operator] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_LT_LT] = ACTIONS(1349), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_GT_GT_GT] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1349), + [anon_sym_TILDE_SLASH] = ACTIONS(1349), + [sym_increment_operator] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_is] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_QMARK_DOT] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_super] = ACTIONS(1351), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_covariant] = ACTIONS(1351), + [anon_sym_Function] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_final] = ACTIONS(1351), + [anon_sym_external] = ACTIONS(1351), + [anon_sym_this] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + }, [842] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1384), - [sym_decimal_integer_literal] = ACTIONS(1386), - [sym_hex_integer_literal] = ACTIONS(1386), - [sym_octal_integer_literal] = ACTIONS(1384), - [sym_binary_integer_literal] = ACTIONS(1384), - [sym_decimal_floating_point_literal] = ACTIONS(1384), - [sym_hex_floating_point_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1384), - [anon_sym_r] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_throw] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [sym_equality_operator] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_TILDE_SLASH] = ACTIONS(1384), - [sym_increment_operator] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_await] = ACTIONS(1386), - [anon_sym_is] = ACTIONS(1386), - [anon_sym_as] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_QMARK_DOT] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_try] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_abstract] = ACTIONS(1386), - [anon_sym_class] = ACTIONS(1386), - [anon_sym_super] = ACTIONS(1386), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_covariant] = ACTIONS(1386), - [anon_sym_Function] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_final] = ACTIONS(1386), - [anon_sym_external] = ACTIONS(1386), - [anon_sym_this] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1345), + [sym_decimal_integer_literal] = ACTIONS(1347), + [sym_hex_integer_literal] = ACTIONS(1347), + [sym_octal_integer_literal] = ACTIONS(1345), + [sym_binary_integer_literal] = ACTIONS(1345), + [sym_decimal_floating_point_literal] = ACTIONS(1345), + [sym_hex_floating_point_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1345), + [anon_sym_r] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1347), + [anon_sym_throw] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_QMARK_QMARK] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_PIPE_PIPE] = ACTIONS(1345), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [sym_equality_operator] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_GT_GT] = ACTIONS(1347), + [anon_sym_GT_GT_GT] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1345), + [anon_sym_TILDE_SLASH] = ACTIONS(1345), + [sym_increment_operator] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_await] = ACTIONS(1347), + [anon_sym_is] = ACTIONS(1347), + [anon_sym_as] = ACTIONS(1347), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_QMARK_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_assert] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_yield] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_abstract] = ACTIONS(1347), + [anon_sym_class] = ACTIONS(1347), + [anon_sym_super] = ACTIONS(1347), + [anon_sym_void] = ACTIONS(1347), + [anon_sym_var] = ACTIONS(1347), + [anon_sym_covariant] = ACTIONS(1347), + [anon_sym_Function] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(1347), + [anon_sym_set] = ACTIONS(1347), + [anon_sym_new] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_final] = ACTIONS(1347), + [anon_sym_external] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, [843] = { - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(785), - [sym_decimal_integer_literal] = ACTIONS(787), - [sym_hex_integer_literal] = ACTIONS(787), - [sym_octal_integer_literal] = ACTIONS(785), - [sym_binary_integer_literal] = ACTIONS(785), - [sym_decimal_floating_point_literal] = ACTIONS(785), - [sym_hex_floating_point_literal] = ACTIONS(787), - [anon_sym_true] = ACTIONS(787), - [anon_sym_false] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(785), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), - [anon_sym_r] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [anon_sym_throw] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_QMARK_QMARK] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [sym_equality_operator] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(787), - [anon_sym_GT_GT_GT] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_TILDE_SLASH] = ACTIONS(785), - [sym_increment_operator] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [anon_sym_await] = ACTIONS(787), - [anon_sym_is] = ACTIONS(787), - [anon_sym_as] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_QMARK_DOT] = ACTIONS(785), - [anon_sym_DOT_DOT] = ACTIONS(785), - [anon_sym_assert] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(787), - [anon_sym_do] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(787), - [anon_sym_yield] = ACTIONS(787), - [anon_sym_return] = ACTIONS(787), - [anon_sym_try] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(787), - [anon_sym_abstract] = ACTIONS(787), - [anon_sym_class] = ACTIONS(787), - [anon_sym_super] = ACTIONS(787), - [anon_sym_void] = ACTIONS(787), - [anon_sym_var] = ACTIONS(787), - [anon_sym_covariant] = ACTIONS(787), - [anon_sym_Function] = ACTIONS(787), - [anon_sym_get] = ACTIONS(787), - [anon_sym_set] = ACTIONS(787), - [anon_sym_new] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_final] = ACTIONS(787), - [anon_sym_external] = ACTIONS(787), - [anon_sym_this] = ACTIONS(787), + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1355), + [anon_sym_POUND] = ACTIONS(1353), + [sym_decimal_integer_literal] = ACTIONS(1355), + [sym_hex_integer_literal] = ACTIONS(1355), + [sym_octal_integer_literal] = ACTIONS(1353), + [sym_binary_integer_literal] = ACTIONS(1353), + [sym_decimal_floating_point_literal] = ACTIONS(1353), + [sym_hex_floating_point_literal] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1353), + [anon_sym_r] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_throw] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_QMARK_QMARK] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [sym_equality_operator] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(1353), + [anon_sym_GT_GT] = ACTIONS(1355), + [anon_sym_GT_GT_GT] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1353), + [anon_sym_TILDE_SLASH] = ACTIONS(1353), + [sym_increment_operator] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_is] = ACTIONS(1355), + [anon_sym_as] = ACTIONS(1355), + [anon_sym_DOT] = ACTIONS(1355), + [anon_sym_QMARK_DOT] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_class] = ACTIONS(1355), + [anon_sym_super] = ACTIONS(1355), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_covariant] = ACTIONS(1355), + [anon_sym_Function] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_new] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_final] = ACTIONS(1355), + [anon_sym_external] = ACTIONS(1355), + [anon_sym_this] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, [844] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(637), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(637), - [anon_sym_r] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_null] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_QMARK_QMARK] = ACTIONS(637), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(637), - [anon_sym_AMP_AMP] = ACTIONS(637), - [sym_equality_operator] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(637), - [anon_sym_LT_EQ] = ACTIONS(637), - [anon_sym_PIPE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_GT_GT_GT] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(637), - [anon_sym_TILDE_SLASH] = ACTIONS(637), - [sym_increment_operator] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_await] = ACTIONS(639), - [anon_sym_is] = ACTIONS(639), - [anon_sym_as] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_QMARK_DOT] = ACTIONS(637), - [anon_sym_DOT_DOT] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_super] = ACTIONS(639), - [anon_sym_void] = ACTIONS(639), - [anon_sym_var] = ACTIONS(639), - [anon_sym_covariant] = ACTIONS(639), - [anon_sym_Function] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_new] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_external] = ACTIONS(639), - [anon_sym_this] = ACTIONS(639), + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(1551), + [sym_decimal_integer_literal] = ACTIONS(1553), + [sym_hex_integer_literal] = ACTIONS(1553), + [sym_octal_integer_literal] = ACTIONS(1551), + [sym_binary_integer_literal] = ACTIONS(1551), + [sym_decimal_floating_point_literal] = ACTIONS(1551), + [sym_hex_floating_point_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1551), + [anon_sym_r] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_QMARK_QMARK] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [sym_equality_operator] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_GT_GT_GT] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_TILDE_SLASH] = ACTIONS(1551), + [sym_increment_operator] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1553), + [anon_sym_is] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_QMARK_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_abstract] = ACTIONS(1553), + [anon_sym_class] = ACTIONS(1553), + [anon_sym_super] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_covariant] = ACTIONS(1553), + [anon_sym_Function] = ACTIONS(1553), + [anon_sym_get] = ACTIONS(1553), + [anon_sym_set] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_final] = ACTIONS(1553), + [anon_sym_external] = ACTIONS(1553), + [anon_sym_this] = ACTIONS(1553), [sym_comment] = ACTIONS(3), }, [845] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1388), - [sym_decimal_integer_literal] = ACTIONS(1390), - [sym_hex_integer_literal] = ACTIONS(1390), - [sym_octal_integer_literal] = ACTIONS(1388), - [sym_binary_integer_literal] = ACTIONS(1388), - [sym_decimal_floating_point_literal] = ACTIONS(1388), - [sym_hex_floating_point_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1388), - [anon_sym_r] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_null] = ACTIONS(1390), - [anon_sym_throw] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_QMARK_QMARK] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1388), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [sym_equality_operator] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_LT_LT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_GT_GT_GT] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1388), - [anon_sym_TILDE_SLASH] = ACTIONS(1388), - [sym_increment_operator] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_await] = ACTIONS(1390), - [anon_sym_is] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_QMARK_DOT] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_assert] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_abstract] = ACTIONS(1390), - [anon_sym_class] = ACTIONS(1390), - [anon_sym_super] = ACTIONS(1390), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_covariant] = ACTIONS(1390), - [anon_sym_Function] = ACTIONS(1390), - [anon_sym_get] = ACTIONS(1390), - [anon_sym_set] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_final] = ACTIONS(1390), - [anon_sym_external] = ACTIONS(1390), - [anon_sym_this] = ACTIONS(1390), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1204), + [sym_decimal_integer_literal] = ACTIONS(1206), + [sym_hex_integer_literal] = ACTIONS(1206), + [sym_octal_integer_literal] = ACTIONS(1204), + [sym_binary_integer_literal] = ACTIONS(1204), + [sym_decimal_floating_point_literal] = ACTIONS(1204), + [sym_hex_floating_point_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1204), + [anon_sym_r] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_null] = ACTIONS(1206), + [anon_sym_throw] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_QMARK_QMARK] = ACTIONS(1204), + [anon_sym_QMARK] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1204), + [anon_sym_AMP_AMP] = ACTIONS(1204), + [sym_equality_operator] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_GT] = ACTIONS(1206), + [anon_sym_GT_EQ] = ACTIONS(1204), + [anon_sym_LT_EQ] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_CARET] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1204), + [anon_sym_GT_GT] = ACTIONS(1206), + [anon_sym_GT_GT_GT] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1206), + [anon_sym_PERCENT] = ACTIONS(1204), + [anon_sym_TILDE_SLASH] = ACTIONS(1204), + [sym_increment_operator] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_is] = ACTIONS(1206), + [anon_sym_as] = ACTIONS(1206), + [anon_sym_DOT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(1204), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_assert] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_try] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_abstract] = ACTIONS(1206), + [anon_sym_class] = ACTIONS(1206), + [anon_sym_super] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1206), + [anon_sym_var] = ACTIONS(1206), + [anon_sym_covariant] = ACTIONS(1206), + [anon_sym_Function] = ACTIONS(1206), + [anon_sym_get] = ACTIONS(1206), + [anon_sym_set] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_final] = ACTIONS(1206), + [anon_sym_external] = ACTIONS(1206), + [anon_sym_this] = ACTIONS(1206), [sym_comment] = ACTIONS(3), }, [846] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [sym_decimal_integer_literal] = ACTIONS(1394), - [sym_hex_integer_literal] = ACTIONS(1394), - [sym_octal_integer_literal] = ACTIONS(1392), - [sym_binary_integer_literal] = ACTIONS(1392), - [sym_decimal_floating_point_literal] = ACTIONS(1392), - [sym_hex_floating_point_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1392), - [anon_sym_r] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_COMMA] = ACTIONS(1392), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_QMARK_QMARK] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [sym_equality_operator] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1392), - [anon_sym_LT_EQ] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_TILDE_SLASH] = ACTIONS(1392), - [sym_increment_operator] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_is] = ACTIONS(1394), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_QMARK_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_assert] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_try] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_abstract] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1394), - [anon_sym_super] = ACTIONS(1394), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [anon_sym_covariant] = ACTIONS(1394), - [anon_sym_Function] = ACTIONS(1394), - [anon_sym_get] = ACTIONS(1394), - [anon_sym_set] = ACTIONS(1394), - [anon_sym_new] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_final] = ACTIONS(1394), - [anon_sym_external] = ACTIONS(1394), - [anon_sym_this] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1239), + [sym_decimal_integer_literal] = ACTIONS(1242), + [sym_hex_integer_literal] = ACTIONS(1242), + [sym_octal_integer_literal] = ACTIONS(1239), + [sym_binary_integer_literal] = ACTIONS(1239), + [sym_decimal_floating_point_literal] = ACTIONS(1239), + [sym_hex_floating_point_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1239), + [anon_sym_r] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_null] = ACTIONS(1242), + [anon_sym_throw] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_QMARK_QMARK] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [sym_equality_operator] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_GT_GT_GT] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_TILDE_SLASH] = ACTIONS(1239), + [sym_increment_operator] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_is] = ACTIONS(1242), + [anon_sym_as] = ACTIONS(1242), + [anon_sym_DOT] = ACTIONS(1242), + [anon_sym_QMARK_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1239), + [anon_sym_assert] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_abstract] = ACTIONS(1242), + [anon_sym_class] = ACTIONS(1242), + [anon_sym_super] = ACTIONS(1242), + [anon_sym_void] = ACTIONS(1242), + [anon_sym_var] = ACTIONS(1242), + [anon_sym_covariant] = ACTIONS(1242), + [anon_sym_Function] = ACTIONS(1242), + [anon_sym_get] = ACTIONS(1242), + [anon_sym_set] = ACTIONS(1242), + [anon_sym_new] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_final] = ACTIONS(1242), + [anon_sym_external] = ACTIONS(1242), + [anon_sym_this] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, [847] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [sym_decimal_integer_literal] = ACTIONS(1402), - [sym_hex_integer_literal] = ACTIONS(1402), - [sym_octal_integer_literal] = ACTIONS(1400), - [sym_binary_integer_literal] = ACTIONS(1400), - [sym_decimal_floating_point_literal] = ACTIONS(1400), - [sym_hex_floating_point_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1400), - [anon_sym_r] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_QMARK_QMARK] = ACTIONS(1400), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [sym_equality_operator] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_TILDE_SLASH] = ACTIONS(1400), - [sym_increment_operator] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_is] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_QMARK_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_super] = ACTIONS(1402), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_covariant] = ACTIONS(1402), - [anon_sym_Function] = ACTIONS(1402), - [anon_sym_get] = ACTIONS(1402), - [anon_sym_set] = ACTIONS(1402), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_final] = ACTIONS(1402), - [anon_sym_external] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), + [anon_sym_POUND] = ACTIONS(1313), + [sym_decimal_integer_literal] = ACTIONS(1315), + [sym_hex_integer_literal] = ACTIONS(1315), + [sym_octal_integer_literal] = ACTIONS(1313), + [sym_binary_integer_literal] = ACTIONS(1313), + [sym_decimal_floating_point_literal] = ACTIONS(1313), + [sym_hex_floating_point_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1313), + [anon_sym_r] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1315), + [anon_sym_throw] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_QMARK] = ACTIONS(1315), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [sym_equality_operator] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_TILDE_SLASH] = ACTIONS(1313), + [sym_increment_operator] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_await] = ACTIONS(1315), + [anon_sym_is] = ACTIONS(1315), + [anon_sym_as] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_QMARK_DOT] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_yield] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_abstract] = ACTIONS(1315), + [anon_sym_class] = ACTIONS(1315), + [anon_sym_super] = ACTIONS(1315), + [anon_sym_void] = ACTIONS(1315), + [anon_sym_var] = ACTIONS(1315), + [anon_sym_covariant] = ACTIONS(1315), + [anon_sym_Function] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(1315), + [anon_sym_set] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_final] = ACTIONS(1315), + [anon_sym_external] = ACTIONS(1315), + [anon_sym_this] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [848] = { - [sym_additive_operator] = STATE(625), - [aux_sym_additive_expression_repeat1] = STATE(821), - [ts_builtin_sym_end] = ACTIONS(1003), - [sym_identifier] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(1003), - [sym_decimal_integer_literal] = ACTIONS(1005), - [sym_hex_integer_literal] = ACTIONS(1005), - [sym_octal_integer_literal] = ACTIONS(1003), - [sym_binary_integer_literal] = ACTIONS(1003), - [sym_decimal_floating_point_literal] = ACTIONS(1003), - [sym_hex_floating_point_literal] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1003), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1003), - [anon_sym_r] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_null] = ACTIONS(1005), - [anon_sym_throw] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_QMARK_QMARK] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [sym_equality_operator] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1005), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_PIPE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1003), - [anon_sym_GT_GT] = ACTIONS(1005), - [anon_sym_GT_GT_GT] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_PERCENT] = ACTIONS(1003), - [anon_sym_TILDE_SLASH] = ACTIONS(1003), - [sym_increment_operator] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_await] = ACTIONS(1005), - [anon_sym_is] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_assert] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_abstract] = ACTIONS(1005), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_super] = ACTIONS(1005), - [anon_sym_void] = ACTIONS(1005), - [anon_sym_var] = ACTIONS(1005), - [anon_sym_covariant] = ACTIONS(1005), - [anon_sym_Function] = ACTIONS(1005), - [anon_sym_get] = ACTIONS(1005), - [anon_sym_set] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_final] = ACTIONS(1005), - [anon_sym_external] = ACTIONS(1005), - [anon_sym_this] = ACTIONS(1005), + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1239), + [sym_decimal_integer_literal] = ACTIONS(1242), + [sym_hex_integer_literal] = ACTIONS(1242), + [sym_octal_integer_literal] = ACTIONS(1239), + [sym_binary_integer_literal] = ACTIONS(1239), + [sym_decimal_floating_point_literal] = ACTIONS(1239), + [sym_hex_floating_point_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1239), + [anon_sym_r] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_null] = ACTIONS(1242), + [anon_sym_throw] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_QMARK_QMARK] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [sym_equality_operator] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_GT_GT_GT] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_TILDE_SLASH] = ACTIONS(1239), + [sym_increment_operator] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_is] = ACTIONS(1242), + [anon_sym_as] = ACTIONS(1242), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_QMARK_DOT] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1239), + [anon_sym_assert] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_abstract] = ACTIONS(1242), + [anon_sym_class] = ACTIONS(1242), + [anon_sym_super] = ACTIONS(1242), + [anon_sym_void] = ACTIONS(1242), + [anon_sym_var] = ACTIONS(1242), + [anon_sym_covariant] = ACTIONS(1242), + [anon_sym_Function] = ACTIONS(1242), + [anon_sym_get] = ACTIONS(1242), + [anon_sym_set] = ACTIONS(1242), + [anon_sym_new] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_final] = ACTIONS(1242), + [anon_sym_external] = ACTIONS(1242), + [anon_sym_this] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, [849] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [sym_decimal_integer_literal] = ACTIONS(1406), - [sym_hex_integer_literal] = ACTIONS(1406), - [sym_octal_integer_literal] = ACTIONS(1404), - [sym_binary_integer_literal] = ACTIONS(1404), - [sym_decimal_floating_point_literal] = ACTIONS(1404), - [sym_hex_floating_point_literal] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1404), - [anon_sym_r] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1404), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_throw] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_QMARK_QMARK] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1406), - [anon_sym_PIPE_PIPE] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [sym_equality_operator] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1404), - [anon_sym_LT_EQ] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1406), - [anon_sym_GT_GT_GT] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_TILDE_SLASH] = ACTIONS(1404), - [sym_increment_operator] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_await] = ACTIONS(1406), - [anon_sym_is] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_QMARK_DOT] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_abstract] = ACTIONS(1406), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_super] = ACTIONS(1406), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_covariant] = ACTIONS(1406), - [anon_sym_Function] = ACTIONS(1406), - [anon_sym_get] = ACTIONS(1406), - [anon_sym_set] = ACTIONS(1406), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_final] = ACTIONS(1406), - [anon_sym_external] = ACTIONS(1406), - [anon_sym_this] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(1523), + [sym_decimal_integer_literal] = ACTIONS(1525), + [sym_hex_integer_literal] = ACTIONS(1525), + [sym_octal_integer_literal] = ACTIONS(1523), + [sym_binary_integer_literal] = ACTIONS(1523), + [sym_decimal_floating_point_literal] = ACTIONS(1523), + [sym_hex_floating_point_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1523), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1523), + [anon_sym_r] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_throw] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_QMARK_QMARK] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [sym_equality_operator] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_GT_GT_GT] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_TILDE_SLASH] = ACTIONS(1523), + [sym_increment_operator] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_is] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_DOT] = ACTIONS(1525), + [anon_sym_QMARK_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_abstract] = ACTIONS(1525), + [anon_sym_class] = ACTIONS(1525), + [anon_sym_super] = ACTIONS(1525), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_covariant] = ACTIONS(1525), + [anon_sym_Function] = ACTIONS(1525), + [anon_sym_get] = ACTIONS(1525), + [anon_sym_set] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_final] = ACTIONS(1525), + [anon_sym_external] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1525), [sym_comment] = ACTIONS(3), }, [850] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [sym_decimal_integer_literal] = ACTIONS(1410), - [sym_hex_integer_literal] = ACTIONS(1410), - [sym_octal_integer_literal] = ACTIONS(1408), - [sym_binary_integer_literal] = ACTIONS(1408), - [sym_decimal_floating_point_literal] = ACTIONS(1408), - [sym_hex_floating_point_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1408), - [anon_sym_r] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_throw] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_QMARK_QMARK] = ACTIONS(1408), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1408), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [sym_equality_operator] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1408), - [anon_sym_LT_EQ] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1408), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_GT_GT_GT] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(1408), - [anon_sym_TILDE_SLASH] = ACTIONS(1408), - [sym_increment_operator] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_await] = ACTIONS(1410), - [anon_sym_is] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_QMARK_DOT] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_abstract] = ACTIONS(1410), - [anon_sym_class] = ACTIONS(1410), - [anon_sym_super] = ACTIONS(1410), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_covariant] = ACTIONS(1410), - [anon_sym_Function] = ACTIONS(1410), - [anon_sym_get] = ACTIONS(1410), - [anon_sym_set] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_final] = ACTIONS(1410), - [anon_sym_external] = ACTIONS(1410), - [anon_sym_this] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1417), + [sym_decimal_integer_literal] = ACTIONS(1419), + [sym_hex_integer_literal] = ACTIONS(1419), + [sym_octal_integer_literal] = ACTIONS(1417), + [sym_binary_integer_literal] = ACTIONS(1417), + [sym_decimal_floating_point_literal] = ACTIONS(1417), + [sym_hex_floating_point_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1417), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1417), + [anon_sym_r] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_throw] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_QMARK_QMARK] = ACTIONS(1417), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [sym_equality_operator] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_LT_LT] = ACTIONS(1417), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_GT_GT_GT] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1417), + [anon_sym_TILDE_SLASH] = ACTIONS(1417), + [sym_increment_operator] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_await] = ACTIONS(1419), + [anon_sym_is] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_QMARK_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_yield] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_try] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_abstract] = ACTIONS(1419), + [anon_sym_class] = ACTIONS(1419), + [anon_sym_super] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_covariant] = ACTIONS(1419), + [anon_sym_Function] = ACTIONS(1419), + [anon_sym_get] = ACTIONS(1419), + [anon_sym_set] = ACTIONS(1419), + [anon_sym_new] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_final] = ACTIONS(1419), + [anon_sym_external] = ACTIONS(1419), + [anon_sym_this] = ACTIONS(1419), [sym_comment] = ACTIONS(3), }, [851] = { - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1463), - [sym_decimal_integer_literal] = ACTIONS(1465), - [sym_hex_integer_literal] = ACTIONS(1465), - [sym_octal_integer_literal] = ACTIONS(1463), - [sym_binary_integer_literal] = ACTIONS(1463), - [sym_decimal_floating_point_literal] = ACTIONS(1463), - [sym_hex_floating_point_literal] = ACTIONS(1465), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1463), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1463), - [anon_sym_r] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1465), - [anon_sym_throw] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_QMARK_QMARK] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_PIPE_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1463), - [sym_equality_operator] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_GT_EQ] = ACTIONS(1463), - [anon_sym_LT_EQ] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1465), - [anon_sym_GT_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_TILDE_SLASH] = ACTIONS(1463), - [sym_increment_operator] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_await] = ACTIONS(1465), - [anon_sym_is] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_abstract] = ACTIONS(1465), - [anon_sym_class] = ACTIONS(1465), - [anon_sym_super] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1465), - [anon_sym_var] = ACTIONS(1465), - [anon_sym_covariant] = ACTIONS(1465), - [anon_sym_Function] = ACTIONS(1465), - [anon_sym_get] = ACTIONS(1465), - [anon_sym_set] = ACTIONS(1465), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_final] = ACTIONS(1465), - [anon_sym_external] = ACTIONS(1465), - [anon_sym_this] = ACTIONS(1465), + [ts_builtin_sym_end] = ACTIONS(741), + [sym_identifier] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(741), + [sym_decimal_integer_literal] = ACTIONS(743), + [sym_hex_integer_literal] = ACTIONS(743), + [sym_octal_integer_literal] = ACTIONS(741), + [sym_binary_integer_literal] = ACTIONS(741), + [sym_decimal_floating_point_literal] = ACTIONS(741), + [sym_hex_floating_point_literal] = ACTIONS(743), + [anon_sym_true] = ACTIONS(743), + [anon_sym_false] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(741), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(741), + [anon_sym_r] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_null] = ACTIONS(743), + [anon_sym_throw] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [sym_equality_operator] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(743), + [anon_sym_GT_GT_GT] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_TILDE_SLASH] = ACTIONS(741), + [sym_increment_operator] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_await] = ACTIONS(743), + [anon_sym_is] = ACTIONS(743), + [anon_sym_as] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(743), + [anon_sym_QMARK_DOT] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(741), + [anon_sym_assert] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(743), + [anon_sym_do] = ACTIONS(743), + [anon_sym_while] = ACTIONS(743), + [anon_sym_break] = ACTIONS(743), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(743), + [anon_sym_return] = ACTIONS(743), + [anon_sym_try] = ACTIONS(743), + [anon_sym_if] = ACTIONS(743), + [anon_sym_for] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_abstract] = ACTIONS(743), + [anon_sym_class] = ACTIONS(743), + [anon_sym_super] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_var] = ACTIONS(743), + [anon_sym_covariant] = ACTIONS(743), + [anon_sym_Function] = ACTIONS(743), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(743), + [anon_sym_new] = ACTIONS(743), + [anon_sym_const] = ACTIONS(743), + [anon_sym_final] = ACTIONS(743), + [anon_sym_external] = ACTIONS(743), + [anon_sym_this] = ACTIONS(743), [sym_comment] = ACTIONS(3), }, [852] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [sym_decimal_integer_literal] = ACTIONS(1414), - [sym_hex_integer_literal] = ACTIONS(1414), - [sym_octal_integer_literal] = ACTIONS(1412), - [sym_binary_integer_literal] = ACTIONS(1412), - [sym_decimal_floating_point_literal] = ACTIONS(1412), - [sym_hex_floating_point_literal] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1412), - [anon_sym_r] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_throw] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_QMARK_QMARK] = ACTIONS(1412), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [sym_equality_operator] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1414), - [anon_sym_GT_GT_GT] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_TILDE_SLASH] = ACTIONS(1412), - [sym_increment_operator] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_await] = ACTIONS(1414), - [anon_sym_is] = ACTIONS(1414), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_QMARK_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_abstract] = ACTIONS(1414), - [anon_sym_class] = ACTIONS(1414), - [anon_sym_super] = ACTIONS(1414), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [anon_sym_covariant] = ACTIONS(1414), - [anon_sym_Function] = ACTIONS(1414), - [anon_sym_get] = ACTIONS(1414), - [anon_sym_set] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_final] = ACTIONS(1414), - [anon_sym_external] = ACTIONS(1414), - [anon_sym_this] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1245), + [sym_decimal_integer_literal] = ACTIONS(1247), + [sym_hex_integer_literal] = ACTIONS(1247), + [sym_octal_integer_literal] = ACTIONS(1245), + [sym_binary_integer_literal] = ACTIONS(1245), + [sym_decimal_floating_point_literal] = ACTIONS(1245), + [sym_hex_floating_point_literal] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1245), + [anon_sym_r] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1247), + [anon_sym_throw] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_QMARK_QMARK] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [sym_equality_operator] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_GT_GT_GT] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1245), + [anon_sym_TILDE_SLASH] = ACTIONS(1245), + [sym_increment_operator] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_await] = ACTIONS(1247), + [anon_sym_is] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_QMARK_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_assert] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_abstract] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_super] = ACTIONS(1247), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_var] = ACTIONS(1247), + [anon_sym_covariant] = ACTIONS(1247), + [anon_sym_Function] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(1247), + [anon_sym_set] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_final] = ACTIONS(1247), + [anon_sym_external] = ACTIONS(1247), + [anon_sym_this] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, [853] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1416), - [sym_decimal_integer_literal] = ACTIONS(1418), - [sym_hex_integer_literal] = ACTIONS(1418), - [sym_octal_integer_literal] = ACTIONS(1416), - [sym_binary_integer_literal] = ACTIONS(1416), - [sym_decimal_floating_point_literal] = ACTIONS(1416), - [sym_hex_floating_point_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1416), - [anon_sym_r] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_throw] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_QMARK_QMARK] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [sym_equality_operator] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1416), - [anon_sym_LT_EQ] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1418), - [anon_sym_GT_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_TILDE_SLASH] = ACTIONS(1416), - [sym_increment_operator] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_is] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_QMARK_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_abstract] = ACTIONS(1418), - [anon_sym_class] = ACTIONS(1418), - [anon_sym_super] = ACTIONS(1418), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [anon_sym_covariant] = ACTIONS(1418), - [anon_sym_Function] = ACTIONS(1418), - [anon_sym_get] = ACTIONS(1418), - [anon_sym_set] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_final] = ACTIONS(1418), - [anon_sym_external] = ACTIONS(1418), - [anon_sym_this] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_QMARK_QMARK] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_QMARK_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), [sym_comment] = ACTIONS(3), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1420), - [sym_decimal_integer_literal] = ACTIONS(1422), - [sym_hex_integer_literal] = ACTIONS(1422), - [sym_octal_integer_literal] = ACTIONS(1420), - [sym_binary_integer_literal] = ACTIONS(1420), - [sym_decimal_floating_point_literal] = ACTIONS(1420), - [sym_hex_floating_point_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1420), - [anon_sym_r] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_throw] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_QMARK_QMARK] = ACTIONS(1420), - [anon_sym_QMARK] = ACTIONS(1422), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [sym_equality_operator] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_GT_GT_GT] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1420), - [anon_sym_TILDE_SLASH] = ACTIONS(1420), - [sym_increment_operator] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_await] = ACTIONS(1422), - [anon_sym_is] = ACTIONS(1422), - [anon_sym_as] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_QMARK_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1420), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_abstract] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1422), - [anon_sym_super] = ACTIONS(1422), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [anon_sym_covariant] = ACTIONS(1422), - [anon_sym_Function] = ACTIONS(1422), - [anon_sym_get] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_new] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_final] = ACTIONS(1422), - [anon_sym_external] = ACTIONS(1422), - [anon_sym_this] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_QMARK_QMARK] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_QMARK_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), [sym_comment] = ACTIONS(3), }, [855] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [sym_decimal_integer_literal] = ACTIONS(1426), - [sym_hex_integer_literal] = ACTIONS(1426), - [sym_octal_integer_literal] = ACTIONS(1424), - [sym_binary_integer_literal] = ACTIONS(1424), - [sym_decimal_floating_point_literal] = ACTIONS(1424), - [sym_hex_floating_point_literal] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1424), - [anon_sym_r] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_throw] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_QMARK_QMARK] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(1426), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [sym_equality_operator] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_GT_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1424), - [anon_sym_TILDE_SLASH] = ACTIONS(1424), - [sym_increment_operator] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_await] = ACTIONS(1426), - [anon_sym_is] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_QMARK_DOT] = ACTIONS(1424), - [anon_sym_DOT_DOT] = ACTIONS(1424), - [anon_sym_assert] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_abstract] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1426), - [anon_sym_super] = ACTIONS(1426), - [anon_sym_void] = ACTIONS(1426), - [anon_sym_var] = ACTIONS(1426), - [anon_sym_covariant] = ACTIONS(1426), - [anon_sym_Function] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_final] = ACTIONS(1426), - [anon_sym_external] = ACTIONS(1426), - [anon_sym_this] = ACTIONS(1426), + [sym__type_dot_identifier] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1111), + [sym_decimal_integer_literal] = ACTIONS(1113), + [sym_hex_integer_literal] = ACTIONS(1113), + [sym_octal_integer_literal] = ACTIONS(1111), + [sym_binary_integer_literal] = ACTIONS(1111), + [sym_decimal_floating_point_literal] = ACTIONS(1111), + [sym_hex_floating_point_literal] = ACTIONS(1113), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1111), + [anon_sym_r] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_null] = ACTIONS(1113), + [anon_sym_throw] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_QMARK_QMARK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [sym_equality_operator] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1113), + [anon_sym_GT_GT_GT] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1111), + [anon_sym_TILDE_SLASH] = ACTIONS(1111), + [sym_increment_operator] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_is] = ACTIONS(1113), + [anon_sym_as] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(1111), + [anon_sym_assert] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1111), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_abstract] = ACTIONS(1113), + [anon_sym_class] = ACTIONS(1113), + [anon_sym_super] = ACTIONS(1113), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_var] = ACTIONS(1113), + [anon_sym_covariant] = ACTIONS(1113), + [anon_sym_Function] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_final] = ACTIONS(1113), + [anon_sym_external] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(1113), [sym_comment] = ACTIONS(3), }, [856] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [sym_decimal_integer_literal] = ACTIONS(1430), - [sym_hex_integer_literal] = ACTIONS(1430), - [sym_octal_integer_literal] = ACTIONS(1428), - [sym_binary_integer_literal] = ACTIONS(1428), - [sym_decimal_floating_point_literal] = ACTIONS(1428), - [sym_hex_floating_point_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1428), - [anon_sym_r] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1430), - [anon_sym_throw] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_QMARK_QMARK] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [sym_equality_operator] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_GT_GT_GT] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1428), - [anon_sym_TILDE_SLASH] = ACTIONS(1428), - [sym_increment_operator] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_is] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_QMARK_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_class] = ACTIONS(1430), - [anon_sym_super] = ACTIONS(1430), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_var] = ACTIONS(1430), - [anon_sym_covariant] = ACTIONS(1430), - [anon_sym_Function] = ACTIONS(1430), - [anon_sym_get] = ACTIONS(1430), - [anon_sym_set] = ACTIONS(1430), - [anon_sym_new] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_final] = ACTIONS(1430), - [anon_sym_external] = ACTIONS(1430), - [anon_sym_this] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(1555), + [sym_decimal_integer_literal] = ACTIONS(1557), + [sym_hex_integer_literal] = ACTIONS(1557), + [sym_octal_integer_literal] = ACTIONS(1555), + [sym_binary_integer_literal] = ACTIONS(1555), + [sym_decimal_floating_point_literal] = ACTIONS(1555), + [sym_hex_floating_point_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1555), + [anon_sym_r] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_COMMA] = ACTIONS(1555), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_QMARK_QMARK] = ACTIONS(1555), + [anon_sym_QMARK] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [sym_equality_operator] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_GT_GT_GT] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_TILDE_SLASH] = ACTIONS(1555), + [sym_increment_operator] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1557), + [anon_sym_is] = ACTIONS(1557), + [anon_sym_as] = ACTIONS(1557), + [anon_sym_DOT] = ACTIONS(1557), + [anon_sym_QMARK_DOT] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_yield] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_AT] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1557), + [anon_sym_super] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_covariant] = ACTIONS(1557), + [anon_sym_Function] = ACTIONS(1557), + [anon_sym_get] = ACTIONS(1557), + [anon_sym_set] = ACTIONS(1557), + [anon_sym_new] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_final] = ACTIONS(1557), + [anon_sym_external] = ACTIONS(1557), + [anon_sym_this] = ACTIONS(1557), [sym_comment] = ACTIONS(3), }, [857] = { - [aux_sym_bitwise_and_expression_repeat1] = STATE(862), - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(1062), - [sym_decimal_integer_literal] = ACTIONS(1064), - [sym_hex_integer_literal] = ACTIONS(1064), - [sym_octal_integer_literal] = ACTIONS(1062), - [sym_binary_integer_literal] = ACTIONS(1062), - [sym_decimal_floating_point_literal] = ACTIONS(1062), - [sym_hex_floating_point_literal] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1064), - [anon_sym_SQUOTE] = ACTIONS(1064), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1062), - [anon_sym_r] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1062), - [anon_sym_null] = ACTIONS(1064), - [anon_sym_throw] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_QMARK_QMARK] = ACTIONS(1062), - [anon_sym_QMARK] = ACTIONS(1064), - [anon_sym_PIPE_PIPE] = ACTIONS(1062), - [anon_sym_AMP_AMP] = ACTIONS(1062), - [sym_equality_operator] = ACTIONS(1062), - [anon_sym_LT] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1064), - [anon_sym_GT_EQ] = ACTIONS(1062), - [anon_sym_LT_EQ] = ACTIONS(1062), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_CARET] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_LT_LT] = ACTIONS(1062), - [anon_sym_GT_GT] = ACTIONS(1064), - [anon_sym_GT_GT_GT] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_SLASH] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1062), - [anon_sym_TILDE_SLASH] = ACTIONS(1062), - [sym_increment_operator] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_await] = ACTIONS(1064), - [anon_sym_is] = ACTIONS(1064), - [anon_sym_as] = ACTIONS(1064), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_assert] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_yield] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_try] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_AT] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_abstract] = ACTIONS(1064), - [anon_sym_class] = ACTIONS(1064), - [anon_sym_super] = ACTIONS(1064), - [anon_sym_void] = ACTIONS(1064), - [anon_sym_var] = ACTIONS(1064), - [anon_sym_covariant] = ACTIONS(1064), - [anon_sym_Function] = ACTIONS(1064), - [anon_sym_get] = ACTIONS(1064), - [anon_sym_set] = ACTIONS(1064), - [anon_sym_new] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_final] = ACTIONS(1064), - [anon_sym_external] = ACTIONS(1064), - [anon_sym_this] = ACTIONS(1064), + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(1409), + [sym_decimal_integer_literal] = ACTIONS(1411), + [sym_hex_integer_literal] = ACTIONS(1411), + [sym_octal_integer_literal] = ACTIONS(1409), + [sym_binary_integer_literal] = ACTIONS(1409), + [sym_decimal_floating_point_literal] = ACTIONS(1409), + [sym_hex_floating_point_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1409), + [anon_sym_r] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_throw] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_QMARK_QMARK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(1411), + [anon_sym_PIPE_PIPE] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [sym_equality_operator] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1409), + [anon_sym_LT_EQ] = ACTIONS(1409), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1409), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_GT_GT_GT] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1411), + [anon_sym_PERCENT] = ACTIONS(1409), + [anon_sym_TILDE_SLASH] = ACTIONS(1409), + [sym_increment_operator] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_is] = ACTIONS(1411), + [anon_sym_as] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1411), + [anon_sym_QMARK_DOT] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_try] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_abstract] = ACTIONS(1411), + [anon_sym_class] = ACTIONS(1411), + [anon_sym_super] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_covariant] = ACTIONS(1411), + [anon_sym_Function] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1411), + [anon_sym_set] = ACTIONS(1411), + [anon_sym_new] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_final] = ACTIONS(1411), + [anon_sym_external] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1411), [sym_comment] = ACTIONS(3), }, [858] = { - [aux_sym_bitwise_xor_expression_repeat1] = STATE(861), - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(1066), - [sym_decimal_integer_literal] = ACTIONS(1068), - [sym_hex_integer_literal] = ACTIONS(1068), - [sym_octal_integer_literal] = ACTIONS(1066), - [sym_binary_integer_literal] = ACTIONS(1066), - [sym_decimal_floating_point_literal] = ACTIONS(1066), - [sym_hex_floating_point_literal] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1068), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1066), - [anon_sym_r] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_COMMA] = ACTIONS(1066), - [anon_sym_null] = ACTIONS(1068), - [anon_sym_throw] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_QMARK_QMARK] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [sym_equality_operator] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_EQ] = ACTIONS(1066), - [anon_sym_LT_EQ] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_CARET] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_LT_LT] = ACTIONS(1066), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_GT_GT_GT] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_SLASH] = ACTIONS(1068), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_TILDE_SLASH] = ACTIONS(1066), - [sym_increment_operator] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_await] = ACTIONS(1068), - [anon_sym_is] = ACTIONS(1068), - [anon_sym_as] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1066), - [anon_sym_assert] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_yield] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_AT] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_abstract] = ACTIONS(1068), - [anon_sym_class] = ACTIONS(1068), - [anon_sym_super] = ACTIONS(1068), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_var] = ACTIONS(1068), - [anon_sym_covariant] = ACTIONS(1068), - [anon_sym_Function] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_new] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_final] = ACTIONS(1068), - [anon_sym_external] = ACTIONS(1068), - [anon_sym_this] = ACTIONS(1068), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1309), + [sym_decimal_integer_literal] = ACTIONS(1311), + [sym_hex_integer_literal] = ACTIONS(1311), + [sym_octal_integer_literal] = ACTIONS(1309), + [sym_binary_integer_literal] = ACTIONS(1309), + [sym_decimal_floating_point_literal] = ACTIONS(1309), + [sym_hex_floating_point_literal] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1309), + [anon_sym_r] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1311), + [anon_sym_throw] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_QMARK_QMARK] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(1311), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [sym_equality_operator] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_LT_LT] = ACTIONS(1309), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_GT_GT_GT] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1309), + [anon_sym_TILDE_SLASH] = ACTIONS(1309), + [sym_increment_operator] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_await] = ACTIONS(1311), + [anon_sym_is] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_QMARK_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_yield] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_abstract] = ACTIONS(1311), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_super] = ACTIONS(1311), + [anon_sym_void] = ACTIONS(1311), + [anon_sym_var] = ACTIONS(1311), + [anon_sym_covariant] = ACTIONS(1311), + [anon_sym_Function] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(1311), + [anon_sym_set] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_final] = ACTIONS(1311), + [anon_sym_external] = ACTIONS(1311), + [anon_sym_this] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [859] = { - [aux_sym_bitwise_or_expression_repeat1] = STATE(860), - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_identifier] = ACTIONS(1093), - [anon_sym_POUND] = ACTIONS(1091), - [sym_decimal_integer_literal] = ACTIONS(1093), - [sym_hex_integer_literal] = ACTIONS(1093), - [sym_octal_integer_literal] = ACTIONS(1091), - [sym_binary_integer_literal] = ACTIONS(1091), - [sym_decimal_floating_point_literal] = ACTIONS(1091), - [sym_hex_floating_point_literal] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1093), - [anon_sym_false] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1091), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1091), - [anon_sym_r] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1091), - [anon_sym_COMMA] = ACTIONS(1091), - [anon_sym_null] = ACTIONS(1093), - [anon_sym_throw] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_QMARK_QMARK] = ACTIONS(1091), - [anon_sym_QMARK] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1091), - [anon_sym_AMP_AMP] = ACTIONS(1091), - [sym_equality_operator] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_GT_EQ] = ACTIONS(1091), - [anon_sym_LT_EQ] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_CARET] = ACTIONS(1091), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_LT_LT] = ACTIONS(1091), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_GT_GT_GT] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1091), - [anon_sym_SLASH] = ACTIONS(1093), - [anon_sym_PERCENT] = ACTIONS(1091), - [anon_sym_TILDE_SLASH] = ACTIONS(1091), - [sym_increment_operator] = ACTIONS(1091), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_await] = ACTIONS(1093), - [anon_sym_is] = ACTIONS(1093), - [anon_sym_as] = ACTIONS(1093), - [anon_sym_DOT_DOT] = ACTIONS(1091), - [anon_sym_assert] = ACTIONS(1093), - [anon_sym_switch] = ACTIONS(1093), - [anon_sym_do] = ACTIONS(1093), - [anon_sym_while] = ACTIONS(1093), - [anon_sym_break] = ACTIONS(1093), - [anon_sym_continue] = ACTIONS(1093), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_return] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(1093), - [anon_sym_if] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1093), - [anon_sym_AT] = ACTIONS(1091), - [anon_sym_enum] = ACTIONS(1093), - [anon_sym_abstract] = ACTIONS(1093), - [anon_sym_class] = ACTIONS(1093), - [anon_sym_super] = ACTIONS(1093), - [anon_sym_void] = ACTIONS(1093), - [anon_sym_var] = ACTIONS(1093), - [anon_sym_covariant] = ACTIONS(1093), - [anon_sym_Function] = ACTIONS(1093), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1093), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_const] = ACTIONS(1093), - [anon_sym_final] = ACTIONS(1093), - [anon_sym_external] = ACTIONS(1093), - [anon_sym_this] = ACTIONS(1093), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1301), + [sym_decimal_integer_literal] = ACTIONS(1303), + [sym_hex_integer_literal] = ACTIONS(1303), + [sym_octal_integer_literal] = ACTIONS(1301), + [sym_binary_integer_literal] = ACTIONS(1301), + [sym_decimal_floating_point_literal] = ACTIONS(1301), + [sym_hex_floating_point_literal] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1301), + [anon_sym_r] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_throw] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_QMARK_QMARK] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [sym_equality_operator] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_LT_LT] = ACTIONS(1301), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_GT_GT_GT] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_PERCENT] = ACTIONS(1301), + [anon_sym_TILDE_SLASH] = ACTIONS(1301), + [sym_increment_operator] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_is] = ACTIONS(1303), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_QMARK_DOT] = ACTIONS(1301), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_super] = ACTIONS(1303), + [anon_sym_void] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_covariant] = ACTIONS(1303), + [anon_sym_Function] = ACTIONS(1303), + [anon_sym_get] = ACTIONS(1303), + [anon_sym_set] = ACTIONS(1303), + [anon_sym_new] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_external] = ACTIONS(1303), + [anon_sym_this] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [860] = { - [aux_sym_bitwise_or_expression_repeat1] = STATE(860), - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [anon_sym_POUND] = ACTIONS(569), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [anon_sym_true] = ACTIONS(571), - [anon_sym_false] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(569), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(569), - [anon_sym_r] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_null] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_QMARK_QMARK] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_PIPE_PIPE] = ACTIONS(569), - [anon_sym_AMP_AMP] = ACTIONS(569), - [sym_equality_operator] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(571), - [anon_sym_GT] = ACTIONS(571), - [anon_sym_GT_EQ] = ACTIONS(569), - [anon_sym_LT_EQ] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(571), - [anon_sym_GT_GT_GT] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(571), - [anon_sym_PERCENT] = ACTIONS(569), - [anon_sym_TILDE_SLASH] = ACTIONS(569), - [sym_increment_operator] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(571), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_await] = ACTIONS(571), - [anon_sym_is] = ACTIONS(571), - [anon_sym_as] = ACTIONS(571), - [anon_sym_DOT_DOT] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(569), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_super] = ACTIONS(571), - [anon_sym_void] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_covariant] = ACTIONS(571), - [anon_sym_Function] = ACTIONS(571), - [anon_sym_get] = ACTIONS(571), - [anon_sym_set] = ACTIONS(571), - [anon_sym_new] = ACTIONS(571), - [anon_sym_const] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_external] = ACTIONS(571), - [anon_sym_this] = ACTIONS(571), + [sym_shift_operator] = STATE(674), + [aux_sym_shift_expression_repeat1] = STATE(860), + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(598), + [sym_hex_integer_literal] = ACTIONS(598), + [sym_octal_integer_literal] = ACTIONS(596), + [sym_binary_integer_literal] = ACTIONS(596), + [sym_decimal_floating_point_literal] = ACTIONS(596), + [sym_hex_floating_point_literal] = ACTIONS(598), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(596), + [anon_sym_r] = ACTIONS(598), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_null] = ACTIONS(598), + [anon_sym_throw] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_QMARK_QMARK] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(598), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_AMP_AMP] = ACTIONS(596), + [sym_equality_operator] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_GT_GT_GT] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(596), + [anon_sym_TILDE_SLASH] = ACTIONS(596), + [sym_increment_operator] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_await] = ACTIONS(598), + [anon_sym_is] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_do] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_try] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_abstract] = ACTIONS(598), + [anon_sym_class] = ACTIONS(598), + [anon_sym_super] = ACTIONS(598), + [anon_sym_void] = ACTIONS(598), + [anon_sym_var] = ACTIONS(598), + [anon_sym_covariant] = ACTIONS(598), + [anon_sym_Function] = ACTIONS(598), + [anon_sym_get] = ACTIONS(598), + [anon_sym_set] = ACTIONS(598), + [anon_sym_new] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_final] = ACTIONS(598), + [anon_sym_external] = ACTIONS(598), + [anon_sym_this] = ACTIONS(598), [sym_comment] = ACTIONS(3), }, [861] = { - [aux_sym_bitwise_xor_expression_repeat1] = STATE(861), - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [sym_decimal_integer_literal] = ACTIONS(606), - [sym_hex_integer_literal] = ACTIONS(606), - [sym_octal_integer_literal] = ACTIONS(604), - [sym_binary_integer_literal] = ACTIONS(604), - [sym_decimal_floating_point_literal] = ACTIONS(604), - [sym_hex_floating_point_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), - [anon_sym_r] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_null] = ACTIONS(606), - [anon_sym_throw] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_QMARK_QMARK] = ACTIONS(604), - [anon_sym_QMARK] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_AMP_AMP] = ACTIONS(604), - [sym_equality_operator] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_GT_GT_GT] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(604), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(604), - [anon_sym_TILDE_SLASH] = ACTIONS(604), - [sym_increment_operator] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_await] = ACTIONS(606), - [anon_sym_is] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(604), - [anon_sym_assert] = ACTIONS(606), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_do] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_try] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(604), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_abstract] = ACTIONS(606), - [anon_sym_class] = ACTIONS(606), - [anon_sym_super] = ACTIONS(606), - [anon_sym_void] = ACTIONS(606), - [anon_sym_var] = ACTIONS(606), - [anon_sym_covariant] = ACTIONS(606), - [anon_sym_Function] = ACTIONS(606), - [anon_sym_get] = ACTIONS(606), - [anon_sym_set] = ACTIONS(606), - [anon_sym_new] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_final] = ACTIONS(606), - [anon_sym_external] = ACTIONS(606), - [anon_sym_this] = ACTIONS(606), - [sym_comment] = ACTIONS(3), - }, - [862] = { - [aux_sym_bitwise_and_expression_repeat1] = STATE(862), - [ts_builtin_sym_end] = ACTIONS(565), - [sym_identifier] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(565), - [sym_decimal_integer_literal] = ACTIONS(567), - [sym_hex_integer_literal] = ACTIONS(567), - [sym_octal_integer_literal] = ACTIONS(565), - [sym_binary_integer_literal] = ACTIONS(565), - [sym_decimal_floating_point_literal] = ACTIONS(565), - [sym_hex_floating_point_literal] = ACTIONS(567), - [anon_sym_true] = ACTIONS(567), - [anon_sym_false] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(565), - [anon_sym_r] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_null] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_QMARK_QMARK] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(565), - [anon_sym_AMP_AMP] = ACTIONS(565), - [sym_equality_operator] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_LT_LT] = ACTIONS(565), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_TILDE_SLASH] = ACTIONS(565), - [sym_increment_operator] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_await] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_DOT_DOT] = ACTIONS(565), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(567), - [anon_sym_do] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_try] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(567), - [anon_sym_class] = ACTIONS(567), - [anon_sym_super] = ACTIONS(567), - [anon_sym_void] = ACTIONS(567), - [anon_sym_var] = ACTIONS(567), - [anon_sym_covariant] = ACTIONS(567), - [anon_sym_Function] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_new] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_final] = ACTIONS(567), - [anon_sym_external] = ACTIONS(567), - [anon_sym_this] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - }, - [863] = { - [aux_sym_logical_and_expression_repeat1] = STATE(863), - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(584), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), - [anon_sym_r] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_null] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(2150), - [sym_equality_operator] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_GT_GT_GT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_TILDE_SLASH] = ACTIONS(584), - [sym_increment_operator] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_await] = ACTIONS(586), - [anon_sym_is] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_super] = ACTIONS(586), - [anon_sym_void] = ACTIONS(586), - [anon_sym_var] = ACTIONS(586), - [anon_sym_covariant] = ACTIONS(586), - [anon_sym_Function] = ACTIONS(586), - [anon_sym_get] = ACTIONS(586), - [anon_sym_set] = ACTIONS(586), - [anon_sym_new] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_external] = ACTIONS(586), - [anon_sym_this] = ACTIONS(586), + [sym_additive_operator] = STATE(672), + [aux_sym_additive_expression_repeat1] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [sym_decimal_integer_literal] = ACTIONS(594), + [sym_hex_integer_literal] = ACTIONS(594), + [sym_octal_integer_literal] = ACTIONS(592), + [sym_binary_integer_literal] = ACTIONS(592), + [sym_decimal_floating_point_literal] = ACTIONS(592), + [sym_hex_floating_point_literal] = ACTIONS(594), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(592), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(592), + [anon_sym_r] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_null] = ACTIONS(594), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_QMARK_QMARK] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(592), + [sym_equality_operator] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_GT_GT_GT] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_TILDE_SLASH] = ACTIONS(592), + [sym_increment_operator] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_await] = ACTIONS(594), + [anon_sym_is] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_assert] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_do] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_try] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(594), + [anon_sym_abstract] = ACTIONS(594), + [anon_sym_class] = ACTIONS(594), + [anon_sym_super] = ACTIONS(594), + [anon_sym_void] = ACTIONS(594), + [anon_sym_var] = ACTIONS(594), + [anon_sym_covariant] = ACTIONS(594), + [anon_sym_Function] = ACTIONS(594), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [anon_sym_new] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_final] = ACTIONS(594), + [anon_sym_external] = ACTIONS(594), + [anon_sym_this] = ACTIONS(594), [sym_comment] = ACTIONS(3), }, - [864] = { - [aux_sym_logical_or_expression_repeat1] = STATE(864), + [862] = { + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1453), + [sym_decimal_integer_literal] = ACTIONS(1455), + [sym_hex_integer_literal] = ACTIONS(1455), + [sym_octal_integer_literal] = ACTIONS(1453), + [sym_binary_integer_literal] = ACTIONS(1453), + [sym_decimal_floating_point_literal] = ACTIONS(1453), + [sym_hex_floating_point_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1453), + [anon_sym_r] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_throw] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_QMARK_QMARK] = ACTIONS(1453), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [sym_equality_operator] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_GT_GT_GT] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1453), + [anon_sym_TILDE_SLASH] = ACTIONS(1453), + [sym_increment_operator] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1455), + [anon_sym_is] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_abstract] = ACTIONS(1455), + [anon_sym_class] = ACTIONS(1455), + [anon_sym_super] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1455), + [anon_sym_var] = ACTIONS(1455), + [anon_sym_covariant] = ACTIONS(1455), + [anon_sym_Function] = ACTIONS(1455), + [anon_sym_get] = ACTIONS(1455), + [anon_sym_set] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_final] = ACTIONS(1455), + [anon_sym_external] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + }, + [863] = { + [sym_multiplicative_operator] = STATE(671), + [aux_sym_multiplicative_expression_repeat1] = STATE(863), [ts_builtin_sym_end] = ACTIONS(588), [sym_identifier] = ACTIONS(590), [anon_sym_POUND] = ACTIONS(588), @@ -92662,7 +94297,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(588), [anon_sym_QMARK_QMARK] = ACTIONS(588), [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), + [anon_sym_PIPE_PIPE] = ACTIONS(588), [anon_sym_AMP_AMP] = ACTIONS(588), [sym_equality_operator] = ACTIONS(588), [anon_sym_LT] = ACTIONS(590), @@ -92677,10 +94312,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_GT] = ACTIONS(588), [anon_sym_PLUS] = ACTIONS(590), [anon_sym_DASH] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_TILDE_SLASH] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_TILDE_SLASH] = ACTIONS(1054), [sym_increment_operator] = ACTIONS(588), [anon_sym_BANG] = ACTIONS(590), [anon_sym_TILDE] = ACTIONS(590), @@ -92717,89 +94352,2629 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(590), [sym_comment] = ACTIONS(3), }, + [864] = { + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1527), + [sym_decimal_integer_literal] = ACTIONS(1529), + [sym_hex_integer_literal] = ACTIONS(1529), + [sym_octal_integer_literal] = ACTIONS(1527), + [sym_binary_integer_literal] = ACTIONS(1527), + [sym_decimal_floating_point_literal] = ACTIONS(1527), + [sym_hex_floating_point_literal] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1527), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1527), + [anon_sym_r] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_throw] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_QMARK_QMARK] = ACTIONS(1527), + [anon_sym_QMARK] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [sym_equality_operator] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_EQ] = ACTIONS(1527), + [anon_sym_LT_EQ] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_GT_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1527), + [anon_sym_TILDE_SLASH] = ACTIONS(1527), + [sym_increment_operator] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_TILDE] = ACTIONS(1529), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_is] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1529), + [anon_sym_QMARK_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_abstract] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1529), + [anon_sym_super] = ACTIONS(1529), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_covariant] = ACTIONS(1529), + [anon_sym_Function] = ACTIONS(1529), + [anon_sym_get] = ACTIONS(1529), + [anon_sym_set] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_final] = ACTIONS(1529), + [anon_sym_external] = ACTIONS(1529), + [anon_sym_this] = ACTIONS(1529), + [sym_comment] = ACTIONS(3), + }, [865] = { - [aux_sym__if_null_expression] = STATE(865), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [anon_sym_POUND] = ACTIONS(1105), - [sym_decimal_integer_literal] = ACTIONS(1107), - [sym_hex_integer_literal] = ACTIONS(1107), - [sym_octal_integer_literal] = ACTIONS(1105), - [sym_binary_integer_literal] = ACTIONS(1105), - [sym_decimal_floating_point_literal] = ACTIONS(1105), - [sym_hex_floating_point_literal] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1105), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_r] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_null] = ACTIONS(1107), - [anon_sym_throw] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_QMARK_QMARK] = ACTIONS(2156), - [anon_sym_QMARK] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [sym_equality_operator] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_GT_GT_GT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_TILDE_SLASH] = ACTIONS(1105), - [sym_increment_operator] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_is] = ACTIONS(1107), - [anon_sym_as] = ACTIONS(1107), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_switch] = ACTIONS(1107), - [anon_sym_do] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_abstract] = ACTIONS(1107), - [anon_sym_class] = ACTIONS(1107), - [anon_sym_super] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_covariant] = ACTIONS(1107), - [anon_sym_Function] = ACTIONS(1107), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1107), - [anon_sym_new] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_final] = ACTIONS(1107), - [anon_sym_external] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1107), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1469), + [sym_decimal_integer_literal] = ACTIONS(1471), + [sym_hex_integer_literal] = ACTIONS(1471), + [sym_octal_integer_literal] = ACTIONS(1469), + [sym_binary_integer_literal] = ACTIONS(1469), + [sym_decimal_floating_point_literal] = ACTIONS(1469), + [sym_hex_floating_point_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1469), + [anon_sym_r] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_QMARK_QMARK] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [sym_equality_operator] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_GT_GT_GT] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_TILDE_SLASH] = ACTIONS(1469), + [sym_increment_operator] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_is] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_QMARK_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_super] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_covariant] = ACTIONS(1471), + [anon_sym_Function] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_final] = ACTIONS(1471), + [anon_sym_external] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1471), [sym_comment] = ACTIONS(3), }, [866] = { - [aux_sym__if_null_expression] = STATE(865), + [ts_builtin_sym_end] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1359), + [anon_sym_POUND] = ACTIONS(1357), + [sym_decimal_integer_literal] = ACTIONS(1359), + [sym_hex_integer_literal] = ACTIONS(1359), + [sym_octal_integer_literal] = ACTIONS(1357), + [sym_binary_integer_literal] = ACTIONS(1357), + [sym_decimal_floating_point_literal] = ACTIONS(1357), + [sym_hex_floating_point_literal] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1357), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1357), + [anon_sym_r] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1359), + [anon_sym_throw] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_QMARK_QMARK] = ACTIONS(1357), + [anon_sym_QMARK] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [sym_equality_operator] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(1357), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_GT_GT_GT] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1357), + [anon_sym_TILDE_SLASH] = ACTIONS(1357), + [sym_increment_operator] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_await] = ACTIONS(1359), + [anon_sym_is] = ACTIONS(1359), + [anon_sym_as] = ACTIONS(1359), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_QMARK_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_yield] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_try] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1359), + [anon_sym_abstract] = ACTIONS(1359), + [anon_sym_class] = ACTIONS(1359), + [anon_sym_super] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_var] = ACTIONS(1359), + [anon_sym_covariant] = ACTIONS(1359), + [anon_sym_Function] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1359), + [anon_sym_set] = ACTIONS(1359), + [anon_sym_new] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_final] = ACTIONS(1359), + [anon_sym_external] = ACTIONS(1359), + [anon_sym_this] = ACTIONS(1359), + [sym_comment] = ACTIONS(3), + }, + [867] = { + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(1361), + [sym_decimal_integer_literal] = ACTIONS(1363), + [sym_hex_integer_literal] = ACTIONS(1363), + [sym_octal_integer_literal] = ACTIONS(1361), + [sym_binary_integer_literal] = ACTIONS(1361), + [sym_decimal_floating_point_literal] = ACTIONS(1361), + [sym_hex_floating_point_literal] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1361), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1361), + [anon_sym_r] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_throw] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_QMARK_QMARK] = ACTIONS(1361), + [anon_sym_QMARK] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [sym_equality_operator] = ACTIONS(1361), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1361), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_GT_GT_GT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_TILDE_SLASH] = ACTIONS(1361), + [sym_increment_operator] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_await] = ACTIONS(1363), + [anon_sym_is] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_QMARK_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1363), + [anon_sym_abstract] = ACTIONS(1363), + [anon_sym_class] = ACTIONS(1363), + [anon_sym_super] = ACTIONS(1363), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_covariant] = ACTIONS(1363), + [anon_sym_Function] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(1363), + [anon_sym_set] = ACTIONS(1363), + [anon_sym_new] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_final] = ACTIONS(1363), + [anon_sym_external] = ACTIONS(1363), + [anon_sym_this] = ACTIONS(1363), + [sym_comment] = ACTIONS(3), + }, + [868] = { + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(1208), + [sym_decimal_integer_literal] = ACTIONS(1210), + [sym_hex_integer_literal] = ACTIONS(1210), + [sym_octal_integer_literal] = ACTIONS(1208), + [sym_binary_integer_literal] = ACTIONS(1208), + [sym_decimal_floating_point_literal] = ACTIONS(1208), + [sym_hex_floating_point_literal] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1208), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1208), + [anon_sym_r] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_null] = ACTIONS(1210), + [anon_sym_throw] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_QMARK_QMARK] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1210), + [anon_sym_PIPE_PIPE] = ACTIONS(1208), + [anon_sym_AMP_AMP] = ACTIONS(1208), + [sym_equality_operator] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_GT] = ACTIONS(1210), + [anon_sym_GT_EQ] = ACTIONS(1208), + [anon_sym_LT_EQ] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1210), + [anon_sym_GT_GT_GT] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_SLASH] = ACTIONS(1210), + [anon_sym_PERCENT] = ACTIONS(1208), + [anon_sym_TILDE_SLASH] = ACTIONS(1208), + [sym_increment_operator] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_await] = ACTIONS(1210), + [anon_sym_is] = ACTIONS(1210), + [anon_sym_as] = ACTIONS(1210), + [anon_sym_DOT] = ACTIONS(1210), + [anon_sym_QMARK_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_AT] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_abstract] = ACTIONS(1210), + [anon_sym_class] = ACTIONS(1210), + [anon_sym_super] = ACTIONS(1210), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_var] = ACTIONS(1210), + [anon_sym_covariant] = ACTIONS(1210), + [anon_sym_Function] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1210), + [anon_sym_set] = ACTIONS(1210), + [anon_sym_new] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_final] = ACTIONS(1210), + [anon_sym_external] = ACTIONS(1210), + [anon_sym_this] = ACTIONS(1210), + [sym_comment] = ACTIONS(3), + }, + [869] = { + [ts_builtin_sym_end] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1489), + [sym_decimal_integer_literal] = ACTIONS(1491), + [sym_hex_integer_literal] = ACTIONS(1491), + [sym_octal_integer_literal] = ACTIONS(1489), + [sym_binary_integer_literal] = ACTIONS(1489), + [sym_decimal_floating_point_literal] = ACTIONS(1489), + [sym_hex_floating_point_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1489), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1489), + [anon_sym_r] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_QMARK_QMARK] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [sym_equality_operator] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_GT_GT_GT] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_TILDE_SLASH] = ACTIONS(1489), + [sym_increment_operator] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_await] = ACTIONS(1491), + [anon_sym_is] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_QMARK_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_try] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_abstract] = ACTIONS(1491), + [anon_sym_class] = ACTIONS(1491), + [anon_sym_super] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1491), + [anon_sym_var] = ACTIONS(1491), + [anon_sym_covariant] = ACTIONS(1491), + [anon_sym_Function] = ACTIONS(1491), + [anon_sym_get] = ACTIONS(1491), + [anon_sym_set] = ACTIONS(1491), + [anon_sym_new] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_final] = ACTIONS(1491), + [anon_sym_external] = ACTIONS(1491), + [anon_sym_this] = ACTIONS(1491), + [sym_comment] = ACTIONS(3), + }, + [870] = { + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_POUND] = ACTIONS(1567), + [sym_decimal_integer_literal] = ACTIONS(1569), + [sym_hex_integer_literal] = ACTIONS(1569), + [sym_octal_integer_literal] = ACTIONS(1567), + [sym_binary_integer_literal] = ACTIONS(1567), + [sym_decimal_floating_point_literal] = ACTIONS(1567), + [sym_hex_floating_point_literal] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1567), + [anon_sym_r] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_throw] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_QMARK_QMARK] = ACTIONS(1567), + [anon_sym_QMARK] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [sym_equality_operator] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_EQ] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1569), + [anon_sym_GT_GT_GT] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_PERCENT] = ACTIONS(1567), + [anon_sym_TILDE_SLASH] = ACTIONS(1567), + [sym_increment_operator] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_TILDE] = ACTIONS(1569), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_is] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_QMARK_DOT] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_AT] = ACTIONS(1567), + [anon_sym_enum] = ACTIONS(1569), + [anon_sym_abstract] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_super] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_covariant] = ACTIONS(1569), + [anon_sym_Function] = ACTIONS(1569), + [anon_sym_get] = ACTIONS(1569), + [anon_sym_set] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_final] = ACTIONS(1569), + [anon_sym_external] = ACTIONS(1569), + [anon_sym_this] = ACTIONS(1569), + [sym_comment] = ACTIONS(3), + }, + [871] = { + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(1571), + [sym_decimal_integer_literal] = ACTIONS(1573), + [sym_hex_integer_literal] = ACTIONS(1573), + [sym_octal_integer_literal] = ACTIONS(1571), + [sym_binary_integer_literal] = ACTIONS(1571), + [sym_decimal_floating_point_literal] = ACTIONS(1571), + [sym_hex_floating_point_literal] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1573), + [anon_sym_SQUOTE] = ACTIONS(1573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1571), + [anon_sym_r] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_COMMA] = ACTIONS(1571), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_throw] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK_QMARK] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1573), + [anon_sym_PIPE_PIPE] = ACTIONS(1571), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [sym_equality_operator] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_LT_LT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_GT_GT_GT] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_PERCENT] = ACTIONS(1571), + [anon_sym_TILDE_SLASH] = ACTIONS(1571), + [sym_increment_operator] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_TILDE] = ACTIONS(1573), + [anon_sym_await] = ACTIONS(1573), + [anon_sym_is] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(1573), + [anon_sym_QMARK_DOT] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_yield] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1573), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_super] = ACTIONS(1573), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_covariant] = ACTIONS(1573), + [anon_sym_Function] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1573), + [anon_sym_set] = ACTIONS(1573), + [anon_sym_new] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_final] = ACTIONS(1573), + [anon_sym_external] = ACTIONS(1573), + [anon_sym_this] = ACTIONS(1573), + [sym_comment] = ACTIONS(3), + }, + [872] = { + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1365), + [sym_decimal_integer_literal] = ACTIONS(1367), + [sym_hex_integer_literal] = ACTIONS(1367), + [sym_octal_integer_literal] = ACTIONS(1365), + [sym_binary_integer_literal] = ACTIONS(1365), + [sym_decimal_floating_point_literal] = ACTIONS(1365), + [sym_hex_floating_point_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1365), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1365), + [anon_sym_r] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_throw] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_QMARK_QMARK] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [sym_equality_operator] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_LT_LT] = ACTIONS(1365), + [anon_sym_GT_GT] = ACTIONS(1367), + [anon_sym_GT_GT_GT] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_TILDE_SLASH] = ACTIONS(1365), + [sym_increment_operator] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_is] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_QMARK_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_yield] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_AT] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1367), + [anon_sym_abstract] = ACTIONS(1367), + [anon_sym_class] = ACTIONS(1367), + [anon_sym_super] = ACTIONS(1367), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_covariant] = ACTIONS(1367), + [anon_sym_Function] = ACTIONS(1367), + [anon_sym_get] = ACTIONS(1367), + [anon_sym_set] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_final] = ACTIONS(1367), + [anon_sym_external] = ACTIONS(1367), + [anon_sym_this] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + }, + [873] = { + [ts_builtin_sym_end] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(1369), + [sym_decimal_integer_literal] = ACTIONS(1371), + [sym_hex_integer_literal] = ACTIONS(1371), + [sym_octal_integer_literal] = ACTIONS(1369), + [sym_binary_integer_literal] = ACTIONS(1369), + [sym_decimal_floating_point_literal] = ACTIONS(1369), + [sym_hex_floating_point_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1369), + [anon_sym_r] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_throw] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_QMARK_QMARK] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [sym_equality_operator] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1369), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_GT_GT_GT] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_TILDE_SLASH] = ACTIONS(1369), + [sym_increment_operator] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_await] = ACTIONS(1371), + [anon_sym_is] = ACTIONS(1371), + [anon_sym_as] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_QMARK_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_yield] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_AT] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_abstract] = ACTIONS(1371), + [anon_sym_class] = ACTIONS(1371), + [anon_sym_super] = ACTIONS(1371), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_var] = ACTIONS(1371), + [anon_sym_covariant] = ACTIONS(1371), + [anon_sym_Function] = ACTIONS(1371), + [anon_sym_get] = ACTIONS(1371), + [anon_sym_set] = ACTIONS(1371), + [anon_sym_new] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_final] = ACTIONS(1371), + [anon_sym_external] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + }, + [874] = { + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1373), + [sym_decimal_integer_literal] = ACTIONS(1375), + [sym_hex_integer_literal] = ACTIONS(1375), + [sym_octal_integer_literal] = ACTIONS(1373), + [sym_binary_integer_literal] = ACTIONS(1373), + [sym_decimal_floating_point_literal] = ACTIONS(1373), + [sym_hex_floating_point_literal] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_r] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_QMARK_QMARK] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_PIPE_PIPE] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [sym_equality_operator] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_TILDE_SLASH] = ACTIONS(1373), + [sym_increment_operator] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_await] = ACTIONS(1375), + [anon_sym_is] = ACTIONS(1375), + [anon_sym_as] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_QMARK_DOT] = ACTIONS(1373), + [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_super] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_covariant] = ACTIONS(1375), + [anon_sym_Function] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(1375), + [anon_sym_set] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_external] = ACTIONS(1375), + [anon_sym_this] = ACTIONS(1375), + [sym_comment] = ACTIONS(3), + }, + [875] = { + [ts_builtin_sym_end] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1379), + [anon_sym_POUND] = ACTIONS(1377), + [sym_decimal_integer_literal] = ACTIONS(1379), + [sym_hex_integer_literal] = ACTIONS(1379), + [sym_octal_integer_literal] = ACTIONS(1377), + [sym_binary_integer_literal] = ACTIONS(1377), + [sym_decimal_floating_point_literal] = ACTIONS(1377), + [sym_hex_floating_point_literal] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), + [anon_sym_r] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1379), + [anon_sym_throw] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_QMARK_QMARK] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [sym_equality_operator] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1377), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_GT_GT_GT] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_TILDE_SLASH] = ACTIONS(1377), + [sym_increment_operator] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_await] = ACTIONS(1379), + [anon_sym_is] = ACTIONS(1379), + [anon_sym_as] = ACTIONS(1379), + [anon_sym_DOT] = ACTIONS(1379), + [anon_sym_QMARK_DOT] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_AT] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_abstract] = ACTIONS(1379), + [anon_sym_class] = ACTIONS(1379), + [anon_sym_super] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_var] = ACTIONS(1379), + [anon_sym_covariant] = ACTIONS(1379), + [anon_sym_Function] = ACTIONS(1379), + [anon_sym_get] = ACTIONS(1379), + [anon_sym_set] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_final] = ACTIONS(1379), + [anon_sym_external] = ACTIONS(1379), + [anon_sym_this] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + }, + [876] = { + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1381), + [sym_decimal_integer_literal] = ACTIONS(1383), + [sym_hex_integer_literal] = ACTIONS(1383), + [sym_octal_integer_literal] = ACTIONS(1381), + [sym_binary_integer_literal] = ACTIONS(1381), + [sym_decimal_floating_point_literal] = ACTIONS(1381), + [sym_hex_floating_point_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1381), + [anon_sym_r] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1383), + [anon_sym_throw] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_QMARK_QMARK] = ACTIONS(1381), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [sym_equality_operator] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_GT_GT_GT] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1381), + [anon_sym_TILDE_SLASH] = ACTIONS(1381), + [sym_increment_operator] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_is] = ACTIONS(1383), + [anon_sym_as] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_QMARK_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_yield] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_AT] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_abstract] = ACTIONS(1383), + [anon_sym_class] = ACTIONS(1383), + [anon_sym_super] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_var] = ACTIONS(1383), + [anon_sym_covariant] = ACTIONS(1383), + [anon_sym_Function] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(1383), + [anon_sym_set] = ACTIONS(1383), + [anon_sym_new] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_final] = ACTIONS(1383), + [anon_sym_external] = ACTIONS(1383), + [anon_sym_this] = ACTIONS(1383), + [sym_comment] = ACTIONS(3), + }, + [877] = { + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_POUND] = ACTIONS(1539), + [sym_decimal_integer_literal] = ACTIONS(1541), + [sym_hex_integer_literal] = ACTIONS(1541), + [sym_octal_integer_literal] = ACTIONS(1539), + [sym_binary_integer_literal] = ACTIONS(1539), + [sym_decimal_floating_point_literal] = ACTIONS(1539), + [sym_hex_floating_point_literal] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1539), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1539), + [anon_sym_r] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_throw] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_QMARK_QMARK] = ACTIONS(1539), + [anon_sym_QMARK] = ACTIONS(1541), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [sym_equality_operator] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_GT_GT_GT] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1539), + [anon_sym_TILDE_SLASH] = ACTIONS(1539), + [sym_increment_operator] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_TILDE] = ACTIONS(1541), + [anon_sym_await] = ACTIONS(1541), + [anon_sym_is] = ACTIONS(1541), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1541), + [anon_sym_QMARK_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1539), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1539), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_abstract] = ACTIONS(1541), + [anon_sym_class] = ACTIONS(1541), + [anon_sym_super] = ACTIONS(1541), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_covariant] = ACTIONS(1541), + [anon_sym_Function] = ACTIONS(1541), + [anon_sym_get] = ACTIONS(1541), + [anon_sym_set] = ACTIONS(1541), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_final] = ACTIONS(1541), + [anon_sym_external] = ACTIONS(1541), + [anon_sym_this] = ACTIONS(1541), + [sym_comment] = ACTIONS(3), + }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1385), + [sym_decimal_integer_literal] = ACTIONS(1387), + [sym_hex_integer_literal] = ACTIONS(1387), + [sym_octal_integer_literal] = ACTIONS(1385), + [sym_binary_integer_literal] = ACTIONS(1385), + [sym_decimal_floating_point_literal] = ACTIONS(1385), + [sym_hex_floating_point_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1385), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_r] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_throw] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_QMARK_QMARK] = ACTIONS(1385), + [anon_sym_QMARK] = ACTIONS(1387), + [anon_sym_PIPE_PIPE] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [sym_equality_operator] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_LT_LT] = ACTIONS(1385), + [anon_sym_GT_GT] = ACTIONS(1387), + [anon_sym_GT_GT_GT] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_TILDE_SLASH] = ACTIONS(1385), + [sym_increment_operator] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_await] = ACTIONS(1387), + [anon_sym_is] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_QMARK_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_AT] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_class] = ACTIONS(1387), + [anon_sym_super] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_covariant] = ACTIONS(1387), + [anon_sym_Function] = ACTIONS(1387), + [anon_sym_get] = ACTIONS(1387), + [anon_sym_set] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_final] = ACTIONS(1387), + [anon_sym_external] = ACTIONS(1387), + [anon_sym_this] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + }, + [879] = { + [ts_builtin_sym_end] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1389), + [sym_decimal_integer_literal] = ACTIONS(1391), + [sym_hex_integer_literal] = ACTIONS(1391), + [sym_octal_integer_literal] = ACTIONS(1389), + [sym_binary_integer_literal] = ACTIONS(1389), + [sym_decimal_floating_point_literal] = ACTIONS(1389), + [sym_hex_floating_point_literal] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1389), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1389), + [anon_sym_r] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_throw] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_QMARK_QMARK] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(1391), + [anon_sym_PIPE_PIPE] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [sym_equality_operator] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_LT_LT] = ACTIONS(1389), + [anon_sym_GT_GT] = ACTIONS(1391), + [anon_sym_GT_GT_GT] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_TILDE_SLASH] = ACTIONS(1389), + [sym_increment_operator] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_await] = ACTIONS(1391), + [anon_sym_is] = ACTIONS(1391), + [anon_sym_as] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_QMARK_DOT] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_switch] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_yield] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1391), + [anon_sym_abstract] = ACTIONS(1391), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_super] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_var] = ACTIONS(1391), + [anon_sym_covariant] = ACTIONS(1391), + [anon_sym_Function] = ACTIONS(1391), + [anon_sym_get] = ACTIONS(1391), + [anon_sym_set] = ACTIONS(1391), + [anon_sym_new] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_final] = ACTIONS(1391), + [anon_sym_external] = ACTIONS(1391), + [anon_sym_this] = ACTIONS(1391), + [sym_comment] = ACTIONS(3), + }, + [880] = { + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_POUND] = ACTIONS(1449), + [sym_decimal_integer_literal] = ACTIONS(1451), + [sym_hex_integer_literal] = ACTIONS(1451), + [sym_octal_integer_literal] = ACTIONS(1449), + [sym_binary_integer_literal] = ACTIONS(1449), + [sym_decimal_floating_point_literal] = ACTIONS(1449), + [sym_hex_floating_point_literal] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1449), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1449), + [anon_sym_r] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1451), + [anon_sym_throw] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_QMARK_QMARK] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [sym_equality_operator] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_GT_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_TILDE_SLASH] = ACTIONS(1449), + [sym_increment_operator] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1451), + [anon_sym_is] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_QMARK_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_abstract] = ACTIONS(1451), + [anon_sym_class] = ACTIONS(1451), + [anon_sym_super] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1451), + [anon_sym_var] = ACTIONS(1451), + [anon_sym_covariant] = ACTIONS(1451), + [anon_sym_Function] = ACTIONS(1451), + [anon_sym_get] = ACTIONS(1451), + [anon_sym_set] = ACTIONS(1451), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_final] = ACTIONS(1451), + [anon_sym_external] = ACTIONS(1451), + [anon_sym_this] = ACTIONS(1451), + [sym_comment] = ACTIONS(3), + }, + [881] = { + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(1445), + [sym_decimal_integer_literal] = ACTIONS(1447), + [sym_hex_integer_literal] = ACTIONS(1447), + [sym_octal_integer_literal] = ACTIONS(1445), + [sym_binary_integer_literal] = ACTIONS(1445), + [sym_decimal_floating_point_literal] = ACTIONS(1445), + [sym_hex_floating_point_literal] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1445), + [anon_sym_r] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1447), + [anon_sym_throw] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_QMARK_QMARK] = ACTIONS(1445), + [anon_sym_QMARK] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [sym_equality_operator] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_GT_GT_GT] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1445), + [anon_sym_TILDE_SLASH] = ACTIONS(1445), + [sym_increment_operator] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_await] = ACTIONS(1447), + [anon_sym_is] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_QMARK_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1447), + [anon_sym_do] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_abstract] = ACTIONS(1447), + [anon_sym_class] = ACTIONS(1447), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1447), + [anon_sym_var] = ACTIONS(1447), + [anon_sym_covariant] = ACTIONS(1447), + [anon_sym_Function] = ACTIONS(1447), + [anon_sym_get] = ACTIONS(1447), + [anon_sym_set] = ACTIONS(1447), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_final] = ACTIONS(1447), + [anon_sym_external] = ACTIONS(1447), + [anon_sym_this] = ACTIONS(1447), + [sym_comment] = ACTIONS(3), + }, + [882] = { + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_POUND] = ACTIONS(1441), + [sym_decimal_integer_literal] = ACTIONS(1443), + [sym_hex_integer_literal] = ACTIONS(1443), + [sym_octal_integer_literal] = ACTIONS(1441), + [sym_binary_integer_literal] = ACTIONS(1441), + [sym_decimal_floating_point_literal] = ACTIONS(1441), + [sym_hex_floating_point_literal] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1441), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1441), + [anon_sym_r] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1443), + [anon_sym_throw] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_QMARK_QMARK] = ACTIONS(1441), + [anon_sym_QMARK] = ACTIONS(1443), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [sym_equality_operator] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_GT_GT_GT] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_TILDE_SLASH] = ACTIONS(1441), + [sym_increment_operator] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_await] = ACTIONS(1443), + [anon_sym_is] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_QMARK_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1443), + [anon_sym_switch] = ACTIONS(1443), + [anon_sym_do] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_abstract] = ACTIONS(1443), + [anon_sym_class] = ACTIONS(1443), + [anon_sym_super] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1443), + [anon_sym_var] = ACTIONS(1443), + [anon_sym_covariant] = ACTIONS(1443), + [anon_sym_Function] = ACTIONS(1443), + [anon_sym_get] = ACTIONS(1443), + [anon_sym_set] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_final] = ACTIONS(1443), + [anon_sym_external] = ACTIONS(1443), + [anon_sym_this] = ACTIONS(1443), + [sym_comment] = ACTIONS(3), + }, + [883] = { + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(1535), + [sym_decimal_integer_literal] = ACTIONS(1537), + [sym_hex_integer_literal] = ACTIONS(1537), + [sym_octal_integer_literal] = ACTIONS(1535), + [sym_binary_integer_literal] = ACTIONS(1535), + [sym_decimal_floating_point_literal] = ACTIONS(1535), + [sym_hex_floating_point_literal] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1537), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1535), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1535), + [anon_sym_r] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1535), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_throw] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_QMARK_QMARK] = ACTIONS(1535), + [anon_sym_QMARK] = ACTIONS(1537), + [anon_sym_PIPE_PIPE] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [sym_equality_operator] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_GT_EQ] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1537), + [anon_sym_GT_GT_GT] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1537), + [anon_sym_PERCENT] = ACTIONS(1535), + [anon_sym_TILDE_SLASH] = ACTIONS(1535), + [sym_increment_operator] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(1537), + [anon_sym_await] = ACTIONS(1537), + [anon_sym_is] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(1537), + [anon_sym_DOT] = ACTIONS(1537), + [anon_sym_QMARK_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_abstract] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1537), + [anon_sym_super] = ACTIONS(1537), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_covariant] = ACTIONS(1537), + [anon_sym_Function] = ACTIONS(1537), + [anon_sym_get] = ACTIONS(1537), + [anon_sym_set] = ACTIONS(1537), + [anon_sym_new] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_final] = ACTIONS(1537), + [anon_sym_external] = ACTIONS(1537), + [anon_sym_this] = ACTIONS(1537), + [sym_comment] = ACTIONS(3), + }, + [884] = { + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_POUND] = ACTIONS(1393), + [sym_decimal_integer_literal] = ACTIONS(1395), + [sym_hex_integer_literal] = ACTIONS(1395), + [sym_octal_integer_literal] = ACTIONS(1393), + [sym_binary_integer_literal] = ACTIONS(1393), + [sym_decimal_floating_point_literal] = ACTIONS(1393), + [sym_hex_floating_point_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1393), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1393), + [anon_sym_r] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1395), + [anon_sym_throw] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_QMARK_QMARK] = ACTIONS(1393), + [anon_sym_QMARK] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [sym_equality_operator] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_LT_LT] = ACTIONS(1393), + [anon_sym_GT_GT] = ACTIONS(1395), + [anon_sym_GT_GT_GT] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_TILDE_SLASH] = ACTIONS(1393), + [sym_increment_operator] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_await] = ACTIONS(1395), + [anon_sym_is] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1395), + [anon_sym_DOT] = ACTIONS(1395), + [anon_sym_QMARK_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1395), + [anon_sym_class] = ACTIONS(1395), + [anon_sym_super] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_covariant] = ACTIONS(1395), + [anon_sym_Function] = ACTIONS(1395), + [anon_sym_get] = ACTIONS(1395), + [anon_sym_set] = ACTIONS(1395), + [anon_sym_new] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_final] = ACTIONS(1395), + [anon_sym_external] = ACTIONS(1395), + [anon_sym_this] = ACTIONS(1395), + [sym_comment] = ACTIONS(3), + }, + [885] = { + [ts_builtin_sym_end] = ACTIONS(1559), + [sym_identifier] = ACTIONS(1561), + [anon_sym_POUND] = ACTIONS(1559), + [sym_decimal_integer_literal] = ACTIONS(1561), + [sym_hex_integer_literal] = ACTIONS(1561), + [sym_octal_integer_literal] = ACTIONS(1559), + [sym_binary_integer_literal] = ACTIONS(1559), + [sym_decimal_floating_point_literal] = ACTIONS(1559), + [sym_hex_floating_point_literal] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1559), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1559), + [anon_sym_r] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_COMMA] = ACTIONS(1559), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_throw] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_QMARK_QMARK] = ACTIONS(1559), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [sym_equality_operator] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_EQ] = ACTIONS(1559), + [anon_sym_LT_EQ] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_LT_LT] = ACTIONS(1559), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_GT_GT_GT] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_PERCENT] = ACTIONS(1559), + [anon_sym_TILDE_SLASH] = ACTIONS(1559), + [sym_increment_operator] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_is] = ACTIONS(1561), + [anon_sym_as] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_QMARK_DOT] = ACTIONS(1559), + [anon_sym_DOT_DOT] = ACTIONS(1559), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_yield] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1561), + [anon_sym_abstract] = ACTIONS(1561), + [anon_sym_class] = ACTIONS(1561), + [anon_sym_super] = ACTIONS(1561), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_covariant] = ACTIONS(1561), + [anon_sym_Function] = ACTIONS(1561), + [anon_sym_get] = ACTIONS(1561), + [anon_sym_set] = ACTIONS(1561), + [anon_sym_new] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_final] = ACTIONS(1561), + [anon_sym_external] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + }, + [886] = { + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [sym_decimal_integer_literal] = ACTIONS(1257), + [sym_hex_integer_literal] = ACTIONS(1257), + [sym_octal_integer_literal] = ACTIONS(1255), + [sym_binary_integer_literal] = ACTIONS(1255), + [sym_decimal_floating_point_literal] = ACTIONS(1255), + [sym_hex_floating_point_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1255), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1255), + [anon_sym_r] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_null] = ACTIONS(1257), + [anon_sym_throw] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_QMARK_QMARK] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [sym_equality_operator] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_GT_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_TILDE_SLASH] = ACTIONS(1255), + [sym_increment_operator] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_is] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1262), + [anon_sym_QMARK_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1257), + [anon_sym_switch] = ACTIONS(1257), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_try] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_abstract] = ACTIONS(1257), + [anon_sym_class] = ACTIONS(1257), + [anon_sym_super] = ACTIONS(1257), + [anon_sym_void] = ACTIONS(1257), + [anon_sym_var] = ACTIONS(1257), + [anon_sym_covariant] = ACTIONS(1257), + [anon_sym_Function] = ACTIONS(1257), + [anon_sym_get] = ACTIONS(1257), + [anon_sym_set] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_final] = ACTIONS(1257), + [anon_sym_external] = ACTIONS(1257), + [anon_sym_this] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + }, + [887] = { + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_identifier] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1397), + [sym_decimal_integer_literal] = ACTIONS(1399), + [sym_hex_integer_literal] = ACTIONS(1399), + [sym_octal_integer_literal] = ACTIONS(1397), + [sym_binary_integer_literal] = ACTIONS(1397), + [sym_decimal_floating_point_literal] = ACTIONS(1397), + [sym_hex_floating_point_literal] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1397), + [anon_sym_r] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_throw] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_QMARK_QMARK] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_PIPE_PIPE] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [sym_equality_operator] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1399), + [anon_sym_GT_GT_GT] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_TILDE_SLASH] = ACTIONS(1397), + [sym_increment_operator] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1399), + [anon_sym_is] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_QMARK_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1399), + [anon_sym_abstract] = ACTIONS(1399), + [anon_sym_class] = ACTIONS(1399), + [anon_sym_super] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_covariant] = ACTIONS(1399), + [anon_sym_Function] = ACTIONS(1399), + [anon_sym_get] = ACTIONS(1399), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_new] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_final] = ACTIONS(1399), + [anon_sym_external] = ACTIONS(1399), + [anon_sym_this] = ACTIONS(1399), + [sym_comment] = ACTIONS(3), + }, + [888] = { + [ts_builtin_sym_end] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1425), + [sym_decimal_integer_literal] = ACTIONS(1427), + [sym_hex_integer_literal] = ACTIONS(1427), + [sym_octal_integer_literal] = ACTIONS(1425), + [sym_binary_integer_literal] = ACTIONS(1425), + [sym_decimal_floating_point_literal] = ACTIONS(1425), + [sym_hex_floating_point_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1425), + [anon_sym_r] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1427), + [anon_sym_throw] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK_QMARK] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [sym_equality_operator] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1425), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_TILDE_SLASH] = ACTIONS(1425), + [sym_increment_operator] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_await] = ACTIONS(1427), + [anon_sym_is] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1427), + [anon_sym_do] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_AT] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1427), + [anon_sym_abstract] = ACTIONS(1427), + [anon_sym_class] = ACTIONS(1427), + [anon_sym_super] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1427), + [anon_sym_var] = ACTIONS(1427), + [anon_sym_covariant] = ACTIONS(1427), + [anon_sym_Function] = ACTIONS(1427), + [anon_sym_get] = ACTIONS(1427), + [anon_sym_set] = ACTIONS(1427), + [anon_sym_new] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_final] = ACTIONS(1427), + [anon_sym_external] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1427), + [sym_comment] = ACTIONS(3), + }, + [889] = { + [ts_builtin_sym_end] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1429), + [sym_decimal_integer_literal] = ACTIONS(1431), + [sym_hex_integer_literal] = ACTIONS(1431), + [sym_octal_integer_literal] = ACTIONS(1429), + [sym_binary_integer_literal] = ACTIONS(1429), + [sym_decimal_floating_point_literal] = ACTIONS(1429), + [sym_hex_floating_point_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1429), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1429), + [anon_sym_r] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_throw] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [sym_equality_operator] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_TILDE_SLASH] = ACTIONS(1429), + [sym_increment_operator] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_await] = ACTIONS(1431), + [anon_sym_is] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_switch] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_yield] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_abstract] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1431), + [anon_sym_super] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1431), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_covariant] = ACTIONS(1431), + [anon_sym_Function] = ACTIONS(1431), + [anon_sym_get] = ACTIONS(1431), + [anon_sym_set] = ACTIONS(1431), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_final] = ACTIONS(1431), + [anon_sym_external] = ACTIONS(1431), + [anon_sym_this] = ACTIONS(1431), + [sym_comment] = ACTIONS(3), + }, + [890] = { + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1519), + [sym_decimal_integer_literal] = ACTIONS(1521), + [sym_hex_integer_literal] = ACTIONS(1521), + [sym_octal_integer_literal] = ACTIONS(1519), + [sym_binary_integer_literal] = ACTIONS(1519), + [sym_decimal_floating_point_literal] = ACTIONS(1519), + [sym_hex_floating_point_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1519), + [anon_sym_r] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_throw] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_QMARK_QMARK] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [sym_equality_operator] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_GT_EQ] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_GT_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_TILDE_SLASH] = ACTIONS(1519), + [sym_increment_operator] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_await] = ACTIONS(1521), + [anon_sym_is] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1521), + [anon_sym_DOT] = ACTIONS(1521), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_abstract] = ACTIONS(1521), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_super] = ACTIONS(1521), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_covariant] = ACTIONS(1521), + [anon_sym_Function] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1521), + [anon_sym_set] = ACTIONS(1521), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_final] = ACTIONS(1521), + [anon_sym_external] = ACTIONS(1521), + [anon_sym_this] = ACTIONS(1521), + [sym_comment] = ACTIONS(3), + }, + [891] = { + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1433), + [sym_decimal_integer_literal] = ACTIONS(1435), + [sym_hex_integer_literal] = ACTIONS(1435), + [sym_octal_integer_literal] = ACTIONS(1433), + [sym_binary_integer_literal] = ACTIONS(1433), + [sym_decimal_floating_point_literal] = ACTIONS(1433), + [sym_hex_floating_point_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1433), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1433), + [anon_sym_r] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_throw] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_QMARK_QMARK] = ACTIONS(1433), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [sym_equality_operator] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_LT_LT] = ACTIONS(1433), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_GT_GT_GT] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_TILDE_SLASH] = ACTIONS(1433), + [sym_increment_operator] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1435), + [anon_sym_is] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_QMARK_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_AT] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_abstract] = ACTIONS(1435), + [anon_sym_class] = ACTIONS(1435), + [anon_sym_super] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1435), + [anon_sym_var] = ACTIONS(1435), + [anon_sym_covariant] = ACTIONS(1435), + [anon_sym_Function] = ACTIONS(1435), + [anon_sym_get] = ACTIONS(1435), + [anon_sym_set] = ACTIONS(1435), + [anon_sym_new] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_final] = ACTIONS(1435), + [anon_sym_external] = ACTIONS(1435), + [anon_sym_this] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + }, + [892] = { + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1515), + [sym_decimal_integer_literal] = ACTIONS(1517), + [sym_hex_integer_literal] = ACTIONS(1517), + [sym_octal_integer_literal] = ACTIONS(1515), + [sym_binary_integer_literal] = ACTIONS(1515), + [sym_decimal_floating_point_literal] = ACTIONS(1515), + [sym_hex_floating_point_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1515), + [anon_sym_r] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_QMARK_QMARK] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [sym_equality_operator] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1517), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_GT_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_TILDE_SLASH] = ACTIONS(1515), + [sym_increment_operator] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1517), + [anon_sym_is] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_DOT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_abstract] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_super] = ACTIONS(1517), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_covariant] = ACTIONS(1517), + [anon_sym_Function] = ACTIONS(1517), + [anon_sym_get] = ACTIONS(1517), + [anon_sym_set] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_final] = ACTIONS(1517), + [anon_sym_external] = ACTIONS(1517), + [anon_sym_this] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + }, + [893] = { + [aux_sym_logical_or_expression_repeat1] = STATE(898), + [ts_builtin_sym_end] = ACTIONS(1121), + [sym_identifier] = ACTIONS(1123), + [anon_sym_POUND] = ACTIONS(1121), + [sym_decimal_integer_literal] = ACTIONS(1123), + [sym_hex_integer_literal] = ACTIONS(1123), + [sym_octal_integer_literal] = ACTIONS(1121), + [sym_binary_integer_literal] = ACTIONS(1121), + [sym_decimal_floating_point_literal] = ACTIONS(1121), + [sym_hex_floating_point_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1123), + [anon_sym_false] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1121), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1121), + [anon_sym_r] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_QMARK_QMARK] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1121), + [anon_sym_AMP_AMP] = ACTIONS(1121), + [sym_equality_operator] = ACTIONS(1121), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_EQ] = ACTIONS(1121), + [anon_sym_LT_EQ] = ACTIONS(1121), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_CARET] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_LT] = ACTIONS(1121), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_GT_GT_GT] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_SLASH] = ACTIONS(1123), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_TILDE_SLASH] = ACTIONS(1121), + [sym_increment_operator] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_await] = ACTIONS(1123), + [anon_sym_is] = ACTIONS(1123), + [anon_sym_as] = ACTIONS(1123), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_assert] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_yield] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_try] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_abstract] = ACTIONS(1123), + [anon_sym_class] = ACTIONS(1123), + [anon_sym_super] = ACTIONS(1123), + [anon_sym_void] = ACTIONS(1123), + [anon_sym_var] = ACTIONS(1123), + [anon_sym_covariant] = ACTIONS(1123), + [anon_sym_Function] = ACTIONS(1123), + [anon_sym_get] = ACTIONS(1123), + [anon_sym_set] = ACTIONS(1123), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_final] = ACTIONS(1123), + [anon_sym_external] = ACTIONS(1123), + [anon_sym_this] = ACTIONS(1123), + [sym_comment] = ACTIONS(3), + }, + [894] = { + [aux_sym_bitwise_or_expression_repeat1] = STATE(904), + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_identifier] = ACTIONS(1105), + [anon_sym_POUND] = ACTIONS(1103), + [sym_decimal_integer_literal] = ACTIONS(1105), + [sym_hex_integer_literal] = ACTIONS(1105), + [sym_octal_integer_literal] = ACTIONS(1103), + [sym_binary_integer_literal] = ACTIONS(1103), + [sym_decimal_floating_point_literal] = ACTIONS(1103), + [sym_hex_floating_point_literal] = ACTIONS(1105), + [anon_sym_true] = ACTIONS(1105), + [anon_sym_false] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1103), + [anon_sym_r] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_null] = ACTIONS(1105), + [anon_sym_throw] = ACTIONS(1105), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_QMARK_QMARK] = ACTIONS(1103), + [anon_sym_QMARK] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1103), + [anon_sym_AMP_AMP] = ACTIONS(1103), + [sym_equality_operator] = ACTIONS(1103), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_EQ] = ACTIONS(1103), + [anon_sym_LT_EQ] = ACTIONS(1103), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1103), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_GT_GT_GT] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1103), + [anon_sym_TILDE_SLASH] = ACTIONS(1103), + [sym_increment_operator] = ACTIONS(1103), + [anon_sym_BANG] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1105), + [anon_sym_await] = ACTIONS(1105), + [anon_sym_is] = ACTIONS(1105), + [anon_sym_as] = ACTIONS(1105), + [anon_sym_DOT_DOT] = ACTIONS(1103), + [anon_sym_assert] = ACTIONS(1105), + [anon_sym_switch] = ACTIONS(1105), + [anon_sym_do] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_yield] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_try] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_abstract] = ACTIONS(1105), + [anon_sym_class] = ACTIONS(1105), + [anon_sym_super] = ACTIONS(1105), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_var] = ACTIONS(1105), + [anon_sym_covariant] = ACTIONS(1105), + [anon_sym_Function] = ACTIONS(1105), + [anon_sym_get] = ACTIONS(1105), + [anon_sym_set] = ACTIONS(1105), + [anon_sym_new] = ACTIONS(1105), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_final] = ACTIONS(1105), + [anon_sym_external] = ACTIONS(1105), + [anon_sym_this] = ACTIONS(1105), + [sym_comment] = ACTIONS(3), + }, + [895] = { + [aux_sym_bitwise_xor_expression_repeat1] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1143), + [sym_decimal_integer_literal] = ACTIONS(1145), + [sym_hex_integer_literal] = ACTIONS(1145), + [sym_octal_integer_literal] = ACTIONS(1143), + [sym_binary_integer_literal] = ACTIONS(1143), + [sym_decimal_floating_point_literal] = ACTIONS(1143), + [sym_hex_floating_point_literal] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1143), + [anon_sym_r] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_null] = ACTIONS(1145), + [anon_sym_throw] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1143), + [anon_sym_QMARK_QMARK] = ACTIONS(1143), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_PIPE_PIPE] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1143), + [sym_equality_operator] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_GT_EQ] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_LT_LT] = ACTIONS(1143), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_GT_GT_GT] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1143), + [anon_sym_TILDE_SLASH] = ACTIONS(1143), + [sym_increment_operator] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_is] = ACTIONS(1145), + [anon_sym_as] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_assert] = ACTIONS(1145), + [anon_sym_switch] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_yield] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1145), + [anon_sym_abstract] = ACTIONS(1145), + [anon_sym_class] = ACTIONS(1145), + [anon_sym_super] = ACTIONS(1145), + [anon_sym_void] = ACTIONS(1145), + [anon_sym_var] = ACTIONS(1145), + [anon_sym_covariant] = ACTIONS(1145), + [anon_sym_Function] = ACTIONS(1145), + [anon_sym_get] = ACTIONS(1145), + [anon_sym_set] = ACTIONS(1145), + [anon_sym_new] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_final] = ACTIONS(1145), + [anon_sym_external] = ACTIONS(1145), + [anon_sym_this] = ACTIONS(1145), + [sym_comment] = ACTIONS(3), + }, + [896] = { + [aux_sym_bitwise_and_expression_repeat1] = STATE(902), [ts_builtin_sym_end] = ACTIONS(1095), [sym_identifier] = ACTIONS(1097), [anon_sym_POUND] = ACTIONS(1095), @@ -92879,2649 +97054,3455 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1097), [sym_comment] = ACTIONS(3), }, - [867] = { - [aux_sym_logical_or_expression_repeat1] = STATE(864), - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1089), - [anon_sym_POUND] = ACTIONS(1087), - [sym_decimal_integer_literal] = ACTIONS(1089), - [sym_hex_integer_literal] = ACTIONS(1089), - [sym_octal_integer_literal] = ACTIONS(1087), - [sym_binary_integer_literal] = ACTIONS(1087), - [sym_decimal_floating_point_literal] = ACTIONS(1087), - [sym_hex_floating_point_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1089), - [anon_sym_false] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1087), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1087), - [anon_sym_r] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_COMMA] = ACTIONS(1087), - [anon_sym_null] = ACTIONS(1089), - [anon_sym_throw] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_QMARK_QMARK] = ACTIONS(1087), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1087), - [anon_sym_AMP_AMP] = ACTIONS(1087), - [sym_equality_operator] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_GT] = ACTIONS(1089), - [anon_sym_GT_EQ] = ACTIONS(1087), - [anon_sym_LT_EQ] = ACTIONS(1087), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1087), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_GT_GT_GT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1089), - [anon_sym_PERCENT] = ACTIONS(1087), - [anon_sym_TILDE_SLASH] = ACTIONS(1087), - [sym_increment_operator] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_is] = ACTIONS(1089), - [anon_sym_as] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_assert] = ACTIONS(1089), - [anon_sym_switch] = ACTIONS(1089), - [anon_sym_do] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1089), - [anon_sym_break] = ACTIONS(1089), - [anon_sym_continue] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1089), - [anon_sym_return] = ACTIONS(1089), - [anon_sym_try] = ACTIONS(1089), - [anon_sym_if] = ACTIONS(1089), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1089), - [anon_sym_abstract] = ACTIONS(1089), - [anon_sym_class] = ACTIONS(1089), - [anon_sym_super] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_var] = ACTIONS(1089), - [anon_sym_covariant] = ACTIONS(1089), - [anon_sym_Function] = ACTIONS(1089), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_new] = ACTIONS(1089), - [anon_sym_const] = ACTIONS(1089), - [anon_sym_final] = ACTIONS(1089), - [anon_sym_external] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(1089), + [897] = { + [aux_sym_logical_and_expression_repeat1] = STATE(897), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(576), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), + [anon_sym_r] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_null] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_QMARK_QMARK] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [sym_equality_operator] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_GT_GT_GT] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(578), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_TILDE_SLASH] = ACTIONS(576), + [sym_increment_operator] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_await] = ACTIONS(578), + [anon_sym_is] = ACTIONS(578), + [anon_sym_as] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_super] = ACTIONS(578), + [anon_sym_void] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [anon_sym_covariant] = ACTIONS(578), + [anon_sym_Function] = ACTIONS(578), + [anon_sym_get] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [anon_sym_const] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_external] = ACTIONS(578), + [anon_sym_this] = ACTIONS(578), [sym_comment] = ACTIONS(3), }, - [868] = { - [aux_sym_logical_and_expression_repeat1] = STATE(863), - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1085), - [anon_sym_POUND] = ACTIONS(1083), - [sym_decimal_integer_literal] = ACTIONS(1085), - [sym_hex_integer_literal] = ACTIONS(1085), - [sym_octal_integer_literal] = ACTIONS(1083), - [sym_binary_integer_literal] = ACTIONS(1083), - [sym_decimal_floating_point_literal] = ACTIONS(1083), - [sym_hex_floating_point_literal] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1085), - [anon_sym_false] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), - [anon_sym_r] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1085), - [anon_sym_throw] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_QMARK_QMARK] = ACTIONS(1083), - [anon_sym_QMARK] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1083), - [anon_sym_AMP_AMP] = ACTIONS(1083), - [sym_equality_operator] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_GT] = ACTIONS(1085), - [anon_sym_GT_EQ] = ACTIONS(1083), - [anon_sym_LT_EQ] = ACTIONS(1083), - [anon_sym_PIPE] = ACTIONS(1085), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1083), - [anon_sym_GT_GT] = ACTIONS(1085), - [anon_sym_GT_GT_GT] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1085), - [anon_sym_PERCENT] = ACTIONS(1083), - [anon_sym_TILDE_SLASH] = ACTIONS(1083), - [sym_increment_operator] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_is] = ACTIONS(1085), - [anon_sym_as] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1083), - [anon_sym_assert] = ACTIONS(1085), - [anon_sym_switch] = ACTIONS(1085), - [anon_sym_do] = ACTIONS(1085), - [anon_sym_while] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1085), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_yield] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1085), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_abstract] = ACTIONS(1085), - [anon_sym_class] = ACTIONS(1085), - [anon_sym_super] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1085), - [anon_sym_var] = ACTIONS(1085), - [anon_sym_covariant] = ACTIONS(1085), - [anon_sym_Function] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1085), - [anon_sym_final] = ACTIONS(1085), - [anon_sym_external] = ACTIONS(1085), - [anon_sym_this] = ACTIONS(1085), + [898] = { + [aux_sym_logical_or_expression_repeat1] = STATE(898), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(572), + [anon_sym_r] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_null] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_QMARK_QMARK] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(572), + [sym_equality_operator] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(574), + [anon_sym_GT_GT_GT] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(574), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_TILDE_SLASH] = ACTIONS(572), + [sym_increment_operator] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_is] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_super] = ACTIONS(574), + [anon_sym_void] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [anon_sym_covariant] = ACTIONS(574), + [anon_sym_Function] = ACTIONS(574), + [anon_sym_get] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_external] = ACTIONS(574), + [anon_sym_this] = ACTIONS(574), [sym_comment] = ACTIONS(3), }, - [869] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1459), - [sym_decimal_integer_literal] = ACTIONS(1461), - [sym_hex_integer_literal] = ACTIONS(1461), - [sym_octal_integer_literal] = ACTIONS(1459), - [sym_binary_integer_literal] = ACTIONS(1459), - [sym_decimal_floating_point_literal] = ACTIONS(1459), - [sym_hex_floating_point_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1459), - [anon_sym_r] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_COMMA] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1461), - [anon_sym_throw] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_QMARK_QMARK] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [sym_equality_operator] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_GT_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_TILDE_SLASH] = ACTIONS(1459), - [sym_increment_operator] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_await] = ACTIONS(1461), - [anon_sym_is] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_AT] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_abstract] = ACTIONS(1461), - [anon_sym_class] = ACTIONS(1461), - [anon_sym_super] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1461), - [anon_sym_var] = ACTIONS(1461), - [anon_sym_covariant] = ACTIONS(1461), - [anon_sym_Function] = ACTIONS(1461), - [anon_sym_get] = ACTIONS(1461), - [anon_sym_set] = ACTIONS(1461), - [anon_sym_new] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_final] = ACTIONS(1461), - [anon_sym_external] = ACTIONS(1461), - [anon_sym_this] = ACTIONS(1461), + [899] = { + [aux_sym__if_null_expression] = STATE(899), + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [sym_decimal_integer_literal] = ACTIONS(1160), + [sym_hex_integer_literal] = ACTIONS(1160), + [sym_octal_integer_literal] = ACTIONS(1158), + [sym_binary_integer_literal] = ACTIONS(1158), + [sym_decimal_floating_point_literal] = ACTIONS(1158), + [sym_hex_floating_point_literal] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1158), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1158), + [anon_sym_r] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_COMMA] = ACTIONS(1158), + [anon_sym_null] = ACTIONS(1160), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_QMARK_QMARK] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(1160), + [anon_sym_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_AMP_AMP] = ACTIONS(1158), + [sym_equality_operator] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1160), + [anon_sym_GT] = ACTIONS(1160), + [anon_sym_GT_EQ] = ACTIONS(1158), + [anon_sym_LT_EQ] = ACTIONS(1158), + [anon_sym_PIPE] = ACTIONS(1160), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [anon_sym_LT_LT] = ACTIONS(1158), + [anon_sym_GT_GT] = ACTIONS(1160), + [anon_sym_GT_GT_GT] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_SLASH] = ACTIONS(1160), + [anon_sym_PERCENT] = ACTIONS(1158), + [anon_sym_TILDE_SLASH] = ACTIONS(1158), + [sym_increment_operator] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_await] = ACTIONS(1160), + [anon_sym_is] = ACTIONS(1160), + [anon_sym_as] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_assert] = ACTIONS(1160), + [anon_sym_switch] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_try] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_class] = ACTIONS(1160), + [anon_sym_super] = ACTIONS(1160), + [anon_sym_void] = ACTIONS(1160), + [anon_sym_var] = ACTIONS(1160), + [anon_sym_covariant] = ACTIONS(1160), + [anon_sym_Function] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_new] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_final] = ACTIONS(1160), + [anon_sym_external] = ACTIONS(1160), + [anon_sym_this] = ACTIONS(1160), [sym_comment] = ACTIONS(3), }, - [870] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [sym_decimal_integer_literal] = ACTIONS(1326), - [sym_hex_integer_literal] = ACTIONS(1326), - [sym_octal_integer_literal] = ACTIONS(1324), - [sym_binary_integer_literal] = ACTIONS(1324), - [sym_decimal_floating_point_literal] = ACTIONS(1324), - [sym_hex_floating_point_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1324), - [anon_sym_r] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_null] = ACTIONS(1326), - [anon_sym_throw] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_QMARK_QMARK] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [sym_equality_operator] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1324), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_GT_GT_GT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_TILDE_SLASH] = ACTIONS(1324), - [sym_increment_operator] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(1326), - [anon_sym_as] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_assert] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_try] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_abstract] = ACTIONS(1326), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_super] = ACTIONS(1326), - [anon_sym_void] = ACTIONS(1326), - [anon_sym_var] = ACTIONS(1326), - [anon_sym_covariant] = ACTIONS(1326), - [anon_sym_Function] = ACTIONS(1326), - [anon_sym_get] = ACTIONS(1326), - [anon_sym_set] = ACTIONS(1326), - [anon_sym_new] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_final] = ACTIONS(1326), - [anon_sym_external] = ACTIONS(1326), - [anon_sym_this] = ACTIONS(1326), + [900] = { + [aux_sym_logical_and_expression_repeat1] = STATE(897), + [ts_builtin_sym_end] = ACTIONS(1117), + [sym_identifier] = ACTIONS(1119), + [anon_sym_POUND] = ACTIONS(1117), + [sym_decimal_integer_literal] = ACTIONS(1119), + [sym_hex_integer_literal] = ACTIONS(1119), + [sym_octal_integer_literal] = ACTIONS(1117), + [sym_binary_integer_literal] = ACTIONS(1117), + [sym_decimal_floating_point_literal] = ACTIONS(1117), + [sym_hex_floating_point_literal] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1117), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1117), + [anon_sym_r] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1117), + [anon_sym_null] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_QMARK_QMARK] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1119), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_AMP_AMP] = ACTIONS(1117), + [sym_equality_operator] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_EQ] = ACTIONS(1117), + [anon_sym_LT_EQ] = ACTIONS(1117), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_CARET] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1119), + [anon_sym_GT_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_SLASH] = ACTIONS(1119), + [anon_sym_PERCENT] = ACTIONS(1117), + [anon_sym_TILDE_SLASH] = ACTIONS(1117), + [sym_increment_operator] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_is] = ACTIONS(1119), + [anon_sym_as] = ACTIONS(1119), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_assert] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1119), + [anon_sym_continue] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1119), + [anon_sym_return] = ACTIONS(1119), + [anon_sym_try] = ACTIONS(1119), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1119), + [anon_sym_abstract] = ACTIONS(1119), + [anon_sym_class] = ACTIONS(1119), + [anon_sym_super] = ACTIONS(1119), + [anon_sym_void] = ACTIONS(1119), + [anon_sym_var] = ACTIONS(1119), + [anon_sym_covariant] = ACTIONS(1119), + [anon_sym_Function] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_const] = ACTIONS(1119), + [anon_sym_final] = ACTIONS(1119), + [anon_sym_external] = ACTIONS(1119), + [anon_sym_this] = ACTIONS(1119), [sym_comment] = ACTIONS(3), }, - [871] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [anon_sym_POUND] = ACTIONS(1260), - [sym_decimal_integer_literal] = ACTIONS(1262), - [sym_hex_integer_literal] = ACTIONS(1262), - [sym_octal_integer_literal] = ACTIONS(1260), - [sym_binary_integer_literal] = ACTIONS(1260), - [sym_decimal_floating_point_literal] = ACTIONS(1260), - [sym_hex_floating_point_literal] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1260), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1260), - [anon_sym_r] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_COMMA] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1260), - [anon_sym_COLON] = ACTIONS(1260), - [anon_sym_null] = ACTIONS(1262), - [anon_sym_throw] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_PLUS_EQ] = ACTIONS(1260), - [anon_sym_DASH_EQ] = ACTIONS(1260), - [anon_sym_STAR_EQ] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1260), - [anon_sym_AMP_EQ] = ACTIONS(1260), - [anon_sym_PIPE_EQ] = ACTIONS(1260), - [anon_sym_CARET_EQ] = ACTIONS(1260), - [anon_sym_PERCENT_EQ] = ACTIONS(1260), - [anon_sym_LT_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_GT_EQ] = ACTIONS(1260), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1260), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [sym_increment_operator] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1260), - [anon_sym_await] = ACTIONS(1262), - [anon_sym_DOT] = ACTIONS(1262), - [anon_sym_QMARK_DOT] = ACTIONS(1260), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_assert] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_yield] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_try] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_abstract] = ACTIONS(1262), - [anon_sym_class] = ACTIONS(1262), - [anon_sym_super] = ACTIONS(1262), - [anon_sym_void] = ACTIONS(1262), - [anon_sym_var] = ACTIONS(1262), - [anon_sym_covariant] = ACTIONS(1262), - [anon_sym_Function] = ACTIONS(1262), - [anon_sym_get] = ACTIONS(1262), - [anon_sym_set] = ACTIONS(1262), - [anon_sym_new] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_final] = ACTIONS(1262), - [anon_sym_external] = ACTIONS(1262), - [anon_sym_this] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1260), + [901] = { + [aux_sym__if_null_expression] = STATE(899), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1125), + [sym_decimal_integer_literal] = ACTIONS(1127), + [sym_hex_integer_literal] = ACTIONS(1127), + [sym_octal_integer_literal] = ACTIONS(1125), + [sym_binary_integer_literal] = ACTIONS(1125), + [sym_decimal_floating_point_literal] = ACTIONS(1125), + [sym_hex_floating_point_literal] = ACTIONS(1127), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1125), + [anon_sym_r] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1125), + [anon_sym_null] = ACTIONS(1127), + [anon_sym_throw] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_QMARK_QMARK] = ACTIONS(1125), + [anon_sym_QMARK] = ACTIONS(1127), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [sym_equality_operator] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [anon_sym_GT_EQ] = ACTIONS(1125), + [anon_sym_LT_EQ] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1127), + [anon_sym_GT_GT_GT] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1125), + [anon_sym_TILDE_SLASH] = ACTIONS(1125), + [sym_increment_operator] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1127), + [anon_sym_is] = ACTIONS(1127), + [anon_sym_as] = ACTIONS(1127), + [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_assert] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_yield] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_try] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_abstract] = ACTIONS(1127), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_super] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1127), + [anon_sym_var] = ACTIONS(1127), + [anon_sym_covariant] = ACTIONS(1127), + [anon_sym_Function] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_final] = ACTIONS(1127), + [anon_sym_external] = ACTIONS(1127), + [anon_sym_this] = ACTIONS(1127), + [sym_comment] = ACTIONS(3), + }, + [902] = { + [aux_sym_bitwise_and_expression_repeat1] = STATE(902), + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [sym_decimal_integer_literal] = ACTIONS(602), + [sym_hex_integer_literal] = ACTIONS(602), + [sym_octal_integer_literal] = ACTIONS(600), + [sym_binary_integer_literal] = ACTIONS(600), + [sym_decimal_floating_point_literal] = ACTIONS(600), + [sym_hex_floating_point_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(600), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(600), + [anon_sym_r] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_null] = ACTIONS(602), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_QMARK_QMARK] = ACTIONS(600), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [sym_equality_operator] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_GT_GT_GT] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(600), + [anon_sym_TILDE_SLASH] = ACTIONS(600), + [sym_increment_operator] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_await] = ACTIONS(602), + [anon_sym_is] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_assert] = ACTIONS(602), + [anon_sym_switch] = ACTIONS(602), + [anon_sym_do] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_try] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_abstract] = ACTIONS(602), + [anon_sym_class] = ACTIONS(602), + [anon_sym_super] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_var] = ACTIONS(602), + [anon_sym_covariant] = ACTIONS(602), + [anon_sym_Function] = ACTIONS(602), + [anon_sym_get] = ACTIONS(602), + [anon_sym_set] = ACTIONS(602), + [anon_sym_new] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_final] = ACTIONS(602), + [anon_sym_external] = ACTIONS(602), + [anon_sym_this] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + }, + [903] = { + [aux_sym_bitwise_xor_expression_repeat1] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(606), + [sym_hex_integer_literal] = ACTIONS(606), + [sym_octal_integer_literal] = ACTIONS(604), + [sym_binary_integer_literal] = ACTIONS(604), + [sym_decimal_floating_point_literal] = ACTIONS(604), + [sym_hex_floating_point_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(604), + [anon_sym_r] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_throw] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_QMARK_QMARK] = ACTIONS(604), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(604), + [sym_equality_operator] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_GT_GT_GT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_TILDE_SLASH] = ACTIONS(604), + [sym_increment_operator] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_await] = ACTIONS(606), + [anon_sym_is] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_assert] = ACTIONS(606), + [anon_sym_switch] = ACTIONS(606), + [anon_sym_do] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_try] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_abstract] = ACTIONS(606), + [anon_sym_class] = ACTIONS(606), + [anon_sym_super] = ACTIONS(606), + [anon_sym_void] = ACTIONS(606), + [anon_sym_var] = ACTIONS(606), + [anon_sym_covariant] = ACTIONS(606), + [anon_sym_Function] = ACTIONS(606), + [anon_sym_get] = ACTIONS(606), + [anon_sym_set] = ACTIONS(606), + [anon_sym_new] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_final] = ACTIONS(606), + [anon_sym_external] = ACTIONS(606), + [anon_sym_this] = ACTIONS(606), + [sym_comment] = ACTIONS(3), + }, + [904] = { + [aux_sym_bitwise_or_expression_repeat1] = STATE(904), + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [sym_decimal_integer_literal] = ACTIONS(610), + [sym_hex_integer_literal] = ACTIONS(610), + [sym_octal_integer_literal] = ACTIONS(608), + [sym_binary_integer_literal] = ACTIONS(608), + [sym_decimal_floating_point_literal] = ACTIONS(608), + [sym_hex_floating_point_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(608), + [anon_sym_r] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_null] = ACTIONS(610), + [anon_sym_throw] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_QMARK_QMARK] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [sym_equality_operator] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_GT_GT_GT] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(608), + [anon_sym_TILDE_SLASH] = ACTIONS(608), + [sym_increment_operator] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_await] = ACTIONS(610), + [anon_sym_is] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_assert] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(610), + [anon_sym_do] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_try] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_abstract] = ACTIONS(610), + [anon_sym_class] = ACTIONS(610), + [anon_sym_super] = ACTIONS(610), + [anon_sym_void] = ACTIONS(610), + [anon_sym_var] = ACTIONS(610), + [anon_sym_covariant] = ACTIONS(610), + [anon_sym_Function] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [anon_sym_new] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_final] = ACTIONS(610), + [anon_sym_external] = ACTIONS(610), + [anon_sym_this] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + }, + [905] = { + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1204), + [sym_decimal_integer_literal] = ACTIONS(1206), + [sym_hex_integer_literal] = ACTIONS(1206), + [sym_octal_integer_literal] = ACTIONS(1204), + [sym_binary_integer_literal] = ACTIONS(1204), + [sym_decimal_floating_point_literal] = ACTIONS(1204), + [sym_hex_floating_point_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1204), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1204), + [anon_sym_r] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_RBRACK] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1204), + [anon_sym_null] = ACTIONS(1206), + [anon_sym_throw] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_PLUS_EQ] = ACTIONS(1204), + [anon_sym_DASH_EQ] = ACTIONS(1204), + [anon_sym_STAR_EQ] = ACTIONS(1204), + [anon_sym_SLASH_EQ] = ACTIONS(1204), + [anon_sym_AMP_EQ] = ACTIONS(1204), + [anon_sym_PIPE_EQ] = ACTIONS(1204), + [anon_sym_CARET_EQ] = ACTIONS(1204), + [anon_sym_PERCENT_EQ] = ACTIONS(1204), + [anon_sym_LT_LT_EQ] = ACTIONS(1204), + [anon_sym_GT_GT_EQ] = ACTIONS(1204), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1204), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [sym_increment_operator] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_await] = ACTIONS(1206), + [anon_sym_DOT] = ACTIONS(1206), + [anon_sym_QMARK_DOT] = ACTIONS(1204), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_assert] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_try] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_abstract] = ACTIONS(1206), + [anon_sym_class] = ACTIONS(1206), + [anon_sym_super] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1206), + [anon_sym_var] = ACTIONS(1206), + [anon_sym_covariant] = ACTIONS(1206), + [anon_sym_Function] = ACTIONS(1206), + [anon_sym_get] = ACTIONS(1206), + [anon_sym_set] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_final] = ACTIONS(1206), + [anon_sym_external] = ACTIONS(1206), + [anon_sym_this] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + }, + [906] = { + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1519), + [sym_decimal_integer_literal] = ACTIONS(1521), + [sym_hex_integer_literal] = ACTIONS(1521), + [sym_octal_integer_literal] = ACTIONS(1519), + [sym_binary_integer_literal] = ACTIONS(1519), + [sym_decimal_floating_point_literal] = ACTIONS(1519), + [sym_hex_floating_point_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1519), + [anon_sym_r] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_throw] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_QMARK_QMARK] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [sym_equality_operator] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_GT_EQ] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_GT_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_TILDE_SLASH] = ACTIONS(1519), + [sym_increment_operator] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_await] = ACTIONS(1521), + [anon_sym_is] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_abstract] = ACTIONS(1521), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_super] = ACTIONS(1521), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_covariant] = ACTIONS(1521), + [anon_sym_Function] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1521), + [anon_sym_set] = ACTIONS(1521), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_final] = ACTIONS(1521), + [anon_sym_external] = ACTIONS(1521), + [anon_sym_this] = ACTIONS(1521), + [sym_comment] = ACTIONS(3), + }, + [907] = { + [sym__assignment_operator] = STATE(564), + [sym__cascade_subsection] = STATE(950), + [sym__cascade_assignment_section] = STATE(1123), + [sym_unconditional_assignable_selector] = STATE(939), + [sym_assignable_selector] = STATE(948), + [aux_sym_cascade_section_repeat1] = STATE(950), + [ts_builtin_sym_end] = ACTIONS(684), + [sym_identifier] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(686), + [sym_hex_integer_literal] = ACTIONS(686), + [sym_octal_integer_literal] = ACTIONS(684), + [sym_binary_integer_literal] = ACTIONS(684), + [sym_decimal_floating_point_literal] = ACTIONS(684), + [sym_hex_floating_point_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(686), + [anon_sym_false] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(684), + [anon_sym_r] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_null] = ACTIONS(686), + [anon_sym_throw] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [sym_increment_operator] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_TILDE] = ACTIONS(684), + [anon_sym_await] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(684), + [anon_sym_assert] = ACTIONS(686), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_do] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_break] = ACTIONS(686), + [anon_sym_continue] = ACTIONS(686), + [anon_sym_yield] = ACTIONS(686), + [anon_sym_return] = ACTIONS(686), + [anon_sym_try] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_for] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(686), + [anon_sym_abstract] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_super] = ACTIONS(686), + [anon_sym_void] = ACTIONS(686), + [anon_sym_var] = ACTIONS(686), + [anon_sym_covariant] = ACTIONS(686), + [anon_sym_Function] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [anon_sym_new] = ACTIONS(686), + [anon_sym_const] = ACTIONS(686), + [anon_sym_final] = ACTIONS(686), + [anon_sym_external] = ACTIONS(686), + [anon_sym_this] = ACTIONS(686), + [sym_comment] = ACTIONS(3), + }, + [908] = { + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_POUND] = ACTIONS(1449), + [sym_decimal_integer_literal] = ACTIONS(1451), + [sym_hex_integer_literal] = ACTIONS(1451), + [sym_octal_integer_literal] = ACTIONS(1449), + [sym_binary_integer_literal] = ACTIONS(1449), + [sym_decimal_floating_point_literal] = ACTIONS(1449), + [sym_hex_floating_point_literal] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1449), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1449), + [anon_sym_r] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1451), + [anon_sym_throw] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_QMARK_QMARK] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [sym_equality_operator] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_GT_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_TILDE_SLASH] = ACTIONS(1449), + [sym_increment_operator] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1451), + [anon_sym_is] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_abstract] = ACTIONS(1451), + [anon_sym_class] = ACTIONS(1451), + [anon_sym_super] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1451), + [anon_sym_var] = ACTIONS(1451), + [anon_sym_covariant] = ACTIONS(1451), + [anon_sym_Function] = ACTIONS(1451), + [anon_sym_get] = ACTIONS(1451), + [anon_sym_set] = ACTIONS(1451), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_final] = ACTIONS(1451), + [anon_sym_external] = ACTIONS(1451), + [anon_sym_this] = ACTIONS(1451), + [sym_comment] = ACTIONS(3), + }, + [909] = { + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(1409), + [sym_decimal_integer_literal] = ACTIONS(1411), + [sym_hex_integer_literal] = ACTIONS(1411), + [sym_octal_integer_literal] = ACTIONS(1409), + [sym_binary_integer_literal] = ACTIONS(1409), + [sym_decimal_floating_point_literal] = ACTIONS(1409), + [sym_hex_floating_point_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1409), + [anon_sym_r] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_throw] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_QMARK_QMARK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(1411), + [anon_sym_PIPE_PIPE] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [sym_equality_operator] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1409), + [anon_sym_LT_EQ] = ACTIONS(1409), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1409), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_GT_GT_GT] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1411), + [anon_sym_PERCENT] = ACTIONS(1409), + [anon_sym_TILDE_SLASH] = ACTIONS(1409), + [sym_increment_operator] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_is] = ACTIONS(1411), + [anon_sym_as] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_try] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_abstract] = ACTIONS(1411), + [anon_sym_class] = ACTIONS(1411), + [anon_sym_super] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_covariant] = ACTIONS(1411), + [anon_sym_Function] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1411), + [anon_sym_set] = ACTIONS(1411), + [anon_sym_new] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_final] = ACTIONS(1411), + [anon_sym_external] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1411), + [sym_comment] = ACTIONS(3), + }, + [910] = { + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1503), + [sym_decimal_integer_literal] = ACTIONS(1505), + [sym_hex_integer_literal] = ACTIONS(1505), + [sym_octal_integer_literal] = ACTIONS(1503), + [sym_binary_integer_literal] = ACTIONS(1503), + [sym_decimal_floating_point_literal] = ACTIONS(1503), + [sym_hex_floating_point_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1503), + [anon_sym_r] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_throw] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_QMARK_QMARK] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [sym_equality_operator] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_TILDE_SLASH] = ACTIONS(1503), + [sym_increment_operator] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_TILDE] = ACTIONS(1505), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_is] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_AT] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_abstract] = ACTIONS(1505), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_super] = ACTIONS(1505), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_covariant] = ACTIONS(1505), + [anon_sym_Function] = ACTIONS(1505), + [anon_sym_get] = ACTIONS(1505), + [anon_sym_set] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_final] = ACTIONS(1505), + [anon_sym_external] = ACTIONS(1505), + [anon_sym_this] = ACTIONS(1505), [sym_comment] = ACTIONS(3), }, - [872] = { - [ts_builtin_sym_end] = ACTIONS(785), - [sym_identifier] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(785), - [sym_decimal_integer_literal] = ACTIONS(787), - [sym_hex_integer_literal] = ACTIONS(787), - [sym_octal_integer_literal] = ACTIONS(785), - [sym_binary_integer_literal] = ACTIONS(785), - [sym_decimal_floating_point_literal] = ACTIONS(785), - [sym_hex_floating_point_literal] = ACTIONS(787), - [anon_sym_true] = ACTIONS(787), - [anon_sym_false] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(785), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), - [anon_sym_r] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_COMMA] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [anon_sym_throw] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_QMARK_QMARK] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(785), - [sym_equality_operator] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_GT_EQ] = ACTIONS(785), - [anon_sym_LT_EQ] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(787), - [anon_sym_GT_GT_GT] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_TILDE_SLASH] = ACTIONS(785), - [sym_increment_operator] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [anon_sym_await] = ACTIONS(787), - [anon_sym_is] = ACTIONS(787), - [anon_sym_as] = ACTIONS(787), - [anon_sym_DOT_DOT] = ACTIONS(785), - [anon_sym_assert] = ACTIONS(787), - [anon_sym_switch] = ACTIONS(787), - [anon_sym_do] = ACTIONS(787), - [anon_sym_while] = ACTIONS(787), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(787), - [anon_sym_yield] = ACTIONS(787), - [anon_sym_return] = ACTIONS(787), - [anon_sym_try] = ACTIONS(787), - [anon_sym_if] = ACTIONS(787), - [anon_sym_for] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(787), - [anon_sym_abstract] = ACTIONS(787), - [anon_sym_class] = ACTIONS(787), - [anon_sym_super] = ACTIONS(787), - [anon_sym_void] = ACTIONS(787), - [anon_sym_var] = ACTIONS(787), - [anon_sym_covariant] = ACTIONS(787), - [anon_sym_Function] = ACTIONS(787), - [anon_sym_get] = ACTIONS(787), - [anon_sym_set] = ACTIONS(787), - [anon_sym_new] = ACTIONS(787), - [anon_sym_const] = ACTIONS(787), - [anon_sym_final] = ACTIONS(787), - [anon_sym_external] = ACTIONS(787), - [anon_sym_this] = ACTIONS(787), + [911] = { + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), + [anon_sym_POUND] = ACTIONS(1337), + [sym_decimal_integer_literal] = ACTIONS(1339), + [sym_hex_integer_literal] = ACTIONS(1339), + [sym_octal_integer_literal] = ACTIONS(1337), + [sym_binary_integer_literal] = ACTIONS(1337), + [sym_decimal_floating_point_literal] = ACTIONS(1337), + [sym_hex_floating_point_literal] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(1339), + [anon_sym_false] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1337), + [anon_sym_r] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_RBRACK] = ACTIONS(1337), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_null] = ACTIONS(1339), + [anon_sym_throw] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_AMP_EQ] = ACTIONS(1337), + [anon_sym_PIPE_EQ] = ACTIONS(1337), + [anon_sym_CARET_EQ] = ACTIONS(1337), + [anon_sym_PERCENT_EQ] = ACTIONS(1337), + [anon_sym_LT_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [sym_increment_operator] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_await] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_QMARK_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_assert] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_yield] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_else] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_AT] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_abstract] = ACTIONS(1339), + [anon_sym_class] = ACTIONS(1339), + [anon_sym_super] = ACTIONS(1339), + [anon_sym_void] = ACTIONS(1339), + [anon_sym_var] = ACTIONS(1339), + [anon_sym_covariant] = ACTIONS(1339), + [anon_sym_Function] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(1339), + [anon_sym_set] = ACTIONS(1339), + [anon_sym_new] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_final] = ACTIONS(1339), + [anon_sym_external] = ACTIONS(1339), + [anon_sym_this] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1337), [sym_comment] = ACTIONS(3), }, - [873] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1348), - [sym_decimal_integer_literal] = ACTIONS(1350), - [sym_hex_integer_literal] = ACTIONS(1350), - [sym_octal_integer_literal] = ACTIONS(1348), - [sym_binary_integer_literal] = ACTIONS(1348), - [sym_decimal_floating_point_literal] = ACTIONS(1348), - [sym_hex_floating_point_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1348), - [anon_sym_r] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_throw] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_QMARK_QMARK] = ACTIONS(1348), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [sym_equality_operator] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1348), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_GT_GT_GT] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1348), - [anon_sym_TILDE_SLASH] = ACTIONS(1348), - [sym_increment_operator] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_is] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1350), - [anon_sym_class] = ACTIONS(1350), - [anon_sym_super] = ACTIONS(1350), - [anon_sym_void] = ACTIONS(1350), - [anon_sym_var] = ACTIONS(1350), - [anon_sym_covariant] = ACTIONS(1350), - [anon_sym_Function] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_final] = ACTIONS(1350), - [anon_sym_external] = ACTIONS(1350), - [anon_sym_this] = ACTIONS(1350), + [912] = { + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [sym_decimal_integer_literal] = ACTIONS(1495), + [sym_hex_integer_literal] = ACTIONS(1495), + [sym_octal_integer_literal] = ACTIONS(1493), + [sym_binary_integer_literal] = ACTIONS(1493), + [sym_decimal_floating_point_literal] = ACTIONS(1493), + [sym_hex_floating_point_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1493), + [anon_sym_r] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_QMARK_QMARK] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [sym_equality_operator] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_GT_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_TILDE_SLASH] = ACTIONS(1493), + [sym_increment_operator] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1495), + [anon_sym_is] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_abstract] = ACTIONS(1495), + [anon_sym_class] = ACTIONS(1495), + [anon_sym_super] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1495), + [anon_sym_var] = ACTIONS(1495), + [anon_sym_covariant] = ACTIONS(1495), + [anon_sym_Function] = ACTIONS(1495), + [anon_sym_get] = ACTIONS(1495), + [anon_sym_set] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_final] = ACTIONS(1495), + [anon_sym_external] = ACTIONS(1495), + [anon_sym_this] = ACTIONS(1495), [sym_comment] = ACTIONS(3), }, - [874] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1467), - [sym_decimal_integer_literal] = ACTIONS(1469), - [sym_hex_integer_literal] = ACTIONS(1469), - [sym_octal_integer_literal] = ACTIONS(1467), - [sym_binary_integer_literal] = ACTIONS(1467), - [sym_decimal_floating_point_literal] = ACTIONS(1467), - [sym_hex_floating_point_literal] = ACTIONS(1469), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1467), - [anon_sym_r] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1469), - [anon_sym_throw] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [sym_equality_operator] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_GT_GT_GT] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_TILDE_SLASH] = ACTIONS(1467), - [sym_increment_operator] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1469), - [anon_sym_is] = ACTIONS(1208), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_try] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_abstract] = ACTIONS(1469), - [anon_sym_class] = ACTIONS(1469), - [anon_sym_super] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1469), - [anon_sym_var] = ACTIONS(1469), - [anon_sym_covariant] = ACTIONS(1469), - [anon_sym_Function] = ACTIONS(1469), - [anon_sym_get] = ACTIONS(1469), - [anon_sym_set] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_final] = ACTIONS(1469), - [anon_sym_external] = ACTIONS(1469), - [anon_sym_this] = ACTIONS(1469), + [913] = { + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1507), + [sym_decimal_integer_literal] = ACTIONS(1509), + [sym_hex_integer_literal] = ACTIONS(1509), + [sym_octal_integer_literal] = ACTIONS(1507), + [sym_binary_integer_literal] = ACTIONS(1507), + [sym_decimal_floating_point_literal] = ACTIONS(1507), + [sym_hex_floating_point_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1507), + [anon_sym_r] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_QMARK_QMARK] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [sym_equality_operator] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_GT_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_TILDE_SLASH] = ACTIONS(1507), + [sym_increment_operator] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_is] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_super] = ACTIONS(1509), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_covariant] = ACTIONS(1509), + [anon_sym_Function] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_final] = ACTIONS(1509), + [anon_sym_external] = ACTIONS(1509), + [anon_sym_this] = ACTIONS(1509), [sym_comment] = ACTIONS(3), }, - [875] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_POUND] = ACTIONS(1248), - [sym_decimal_integer_literal] = ACTIONS(1250), - [sym_hex_integer_literal] = ACTIONS(1250), - [sym_octal_integer_literal] = ACTIONS(1248), - [sym_binary_integer_literal] = ACTIONS(1248), - [sym_decimal_floating_point_literal] = ACTIONS(1248), - [sym_hex_floating_point_literal] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1248), - [anon_sym_r] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [anon_sym_null] = ACTIONS(1250), - [anon_sym_throw] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_QMARK_QMARK] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [sym_equality_operator] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_GT_GT_GT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_TILDE_SLASH] = ACTIONS(1248), - [sym_increment_operator] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_await] = ACTIONS(1250), - [anon_sym_is] = ACTIONS(1250), - [anon_sym_as] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_assert] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_abstract] = ACTIONS(1250), - [anon_sym_class] = ACTIONS(1250), - [anon_sym_super] = ACTIONS(1250), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_var] = ACTIONS(1250), - [anon_sym_covariant] = ACTIONS(1250), - [anon_sym_Function] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_new] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_final] = ACTIONS(1250), - [anon_sym_external] = ACTIONS(1250), - [anon_sym_this] = ACTIONS(1250), + [914] = { + [ts_builtin_sym_end] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1403), + [anon_sym_POUND] = ACTIONS(1401), + [sym_decimal_integer_literal] = ACTIONS(1403), + [sym_hex_integer_literal] = ACTIONS(1403), + [sym_octal_integer_literal] = ACTIONS(1401), + [sym_binary_integer_literal] = ACTIONS(1401), + [sym_decimal_floating_point_literal] = ACTIONS(1401), + [sym_hex_floating_point_literal] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1401), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1401), + [anon_sym_r] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_throw] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_QMARK_QMARK] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_PIPE_PIPE] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [sym_equality_operator] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1401), + [anon_sym_GT_GT] = ACTIONS(1403), + [anon_sym_GT_GT_GT] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1403), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_TILDE_SLASH] = ACTIONS(1401), + [sym_increment_operator] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_await] = ACTIONS(1403), + [anon_sym_is] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_try] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1403), + [anon_sym_abstract] = ACTIONS(1403), + [anon_sym_class] = ACTIONS(1403), + [anon_sym_super] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_covariant] = ACTIONS(1403), + [anon_sym_Function] = ACTIONS(1403), + [anon_sym_get] = ACTIONS(1403), + [anon_sym_set] = ACTIONS(1403), + [anon_sym_new] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_final] = ACTIONS(1403), + [anon_sym_external] = ACTIONS(1403), + [anon_sym_this] = ACTIONS(1403), [sym_comment] = ACTIONS(3), }, - [876] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_POUND] = ACTIONS(1236), - [sym_decimal_integer_literal] = ACTIONS(1238), - [sym_hex_integer_literal] = ACTIONS(1238), - [sym_octal_integer_literal] = ACTIONS(1236), - [sym_binary_integer_literal] = ACTIONS(1236), - [sym_decimal_floating_point_literal] = ACTIONS(1236), - [sym_hex_floating_point_literal] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1236), - [anon_sym_r] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_null] = ACTIONS(1238), - [anon_sym_throw] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_QMARK_QMARK] = ACTIONS(1236), - [anon_sym_QMARK] = ACTIONS(1238), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [sym_equality_operator] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1236), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_GT_GT_GT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_TILDE_SLASH] = ACTIONS(1236), - [sym_increment_operator] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_is] = ACTIONS(1238), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_assert] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_abstract] = ACTIONS(1238), - [anon_sym_class] = ACTIONS(1238), - [anon_sym_super] = ACTIONS(1238), - [anon_sym_void] = ACTIONS(1238), - [anon_sym_var] = ACTIONS(1238), - [anon_sym_covariant] = ACTIONS(1238), - [anon_sym_Function] = ACTIONS(1238), - [anon_sym_get] = ACTIONS(1238), - [anon_sym_set] = ACTIONS(1238), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_final] = ACTIONS(1238), - [anon_sym_external] = ACTIONS(1238), - [anon_sym_this] = ACTIONS(1238), + [915] = { + [ts_builtin_sym_end] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1347), + [anon_sym_POUND] = ACTIONS(1345), + [sym_decimal_integer_literal] = ACTIONS(1347), + [sym_hex_integer_literal] = ACTIONS(1347), + [sym_octal_integer_literal] = ACTIONS(1345), + [sym_binary_integer_literal] = ACTIONS(1345), + [sym_decimal_floating_point_literal] = ACTIONS(1345), + [sym_hex_floating_point_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1345), + [anon_sym_r] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1345), + [anon_sym_null] = ACTIONS(1347), + [anon_sym_throw] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_QMARK_QMARK] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1347), + [anon_sym_PIPE_PIPE] = ACTIONS(1345), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [sym_equality_operator] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_LT_LT] = ACTIONS(1345), + [anon_sym_GT_GT] = ACTIONS(1347), + [anon_sym_GT_GT_GT] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1345), + [anon_sym_TILDE_SLASH] = ACTIONS(1345), + [sym_increment_operator] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_await] = ACTIONS(1347), + [anon_sym_is] = ACTIONS(1347), + [anon_sym_as] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_assert] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_yield] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_abstract] = ACTIONS(1347), + [anon_sym_class] = ACTIONS(1347), + [anon_sym_super] = ACTIONS(1347), + [anon_sym_void] = ACTIONS(1347), + [anon_sym_var] = ACTIONS(1347), + [anon_sym_covariant] = ACTIONS(1347), + [anon_sym_Function] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(1347), + [anon_sym_set] = ACTIONS(1347), + [anon_sym_new] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_final] = ACTIONS(1347), + [anon_sym_external] = ACTIONS(1347), + [anon_sym_this] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, - [877] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [sym_decimal_integer_literal] = ACTIONS(1208), - [sym_hex_integer_literal] = ACTIONS(1208), - [sym_octal_integer_literal] = ACTIONS(1206), - [sym_binary_integer_literal] = ACTIONS(1206), - [sym_decimal_floating_point_literal] = ACTIONS(1206), - [sym_hex_floating_point_literal] = ACTIONS(1208), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1206), - [anon_sym_r] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_null] = ACTIONS(1208), - [anon_sym_throw] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_QMARK_QMARK] = ACTIONS(1213), - [anon_sym_QMARK] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1213), - [anon_sym_AMP_AMP] = ACTIONS(1213), - [sym_equality_operator] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_CARET] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_LT_LT] = ACTIONS(1213), - [anon_sym_GT_GT] = ACTIONS(1210), - [anon_sym_GT_GT_GT] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1210), - [anon_sym_PERCENT] = ACTIONS(1213), - [anon_sym_TILDE_SLASH] = ACTIONS(1213), - [sym_increment_operator] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_await] = ACTIONS(1208), - [anon_sym_is] = ACTIONS(1208), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_assert] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_AT] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_abstract] = ACTIONS(1208), - [anon_sym_class] = ACTIONS(1208), - [anon_sym_super] = ACTIONS(1208), - [anon_sym_void] = ACTIONS(1208), - [anon_sym_var] = ACTIONS(1208), - [anon_sym_covariant] = ACTIONS(1208), - [anon_sym_Function] = ACTIONS(1208), - [anon_sym_get] = ACTIONS(1208), - [anon_sym_set] = ACTIONS(1208), - [anon_sym_new] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_final] = ACTIONS(1208), - [anon_sym_external] = ACTIONS(1208), - [anon_sym_this] = ACTIONS(1208), + [916] = { + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1453), + [sym_decimal_integer_literal] = ACTIONS(1455), + [sym_hex_integer_literal] = ACTIONS(1455), + [sym_octal_integer_literal] = ACTIONS(1453), + [sym_binary_integer_literal] = ACTIONS(1453), + [sym_decimal_floating_point_literal] = ACTIONS(1453), + [sym_hex_floating_point_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1453), + [anon_sym_r] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_throw] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_QMARK_QMARK] = ACTIONS(1453), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [sym_equality_operator] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_GT_GT_GT] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1453), + [anon_sym_TILDE_SLASH] = ACTIONS(1453), + [sym_increment_operator] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1455), + [anon_sym_is] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_abstract] = ACTIONS(1455), + [anon_sym_class] = ACTIONS(1455), + [anon_sym_super] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1455), + [anon_sym_var] = ACTIONS(1455), + [anon_sym_covariant] = ACTIONS(1455), + [anon_sym_Function] = ACTIONS(1455), + [anon_sym_get] = ACTIONS(1455), + [anon_sym_set] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_final] = ACTIONS(1455), + [anon_sym_external] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1455), [sym_comment] = ACTIONS(3), }, - [878] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [sym_decimal_integer_literal] = ACTIONS(1398), - [sym_hex_integer_literal] = ACTIONS(1398), - [sym_octal_integer_literal] = ACTIONS(1396), - [sym_binary_integer_literal] = ACTIONS(1396), - [sym_decimal_floating_point_literal] = ACTIONS(1396), - [sym_hex_floating_point_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1396), - [anon_sym_r] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_throw] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1396), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [sym_equality_operator] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_GT_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_TILDE_SLASH] = ACTIONS(1396), - [sym_increment_operator] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_await] = ACTIONS(1398), - [anon_sym_is] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_abstract] = ACTIONS(1398), - [anon_sym_class] = ACTIONS(1398), - [anon_sym_super] = ACTIONS(1398), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_covariant] = ACTIONS(1398), - [anon_sym_Function] = ACTIONS(1398), - [anon_sym_get] = ACTIONS(1398), - [anon_sym_set] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_final] = ACTIONS(1398), - [anon_sym_external] = ACTIONS(1398), - [anon_sym_this] = ACTIONS(1398), + [917] = { + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1457), + [sym_decimal_integer_literal] = ACTIONS(1459), + [sym_hex_integer_literal] = ACTIONS(1459), + [sym_octal_integer_literal] = ACTIONS(1457), + [sym_binary_integer_literal] = ACTIONS(1457), + [sym_decimal_floating_point_literal] = ACTIONS(1457), + [sym_hex_floating_point_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1457), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1457), + [anon_sym_r] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1459), + [anon_sym_throw] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_QMARK_QMARK] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [sym_equality_operator] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_GT_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_TILDE_SLASH] = ACTIONS(1457), + [sym_increment_operator] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1459), + [anon_sym_is] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1459), + [anon_sym_switch] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_abstract] = ACTIONS(1459), + [anon_sym_class] = ACTIONS(1459), + [anon_sym_super] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1459), + [anon_sym_var] = ACTIONS(1459), + [anon_sym_covariant] = ACTIONS(1459), + [anon_sym_Function] = ACTIONS(1459), + [anon_sym_get] = ACTIONS(1459), + [anon_sym_set] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_final] = ACTIONS(1459), + [anon_sym_external] = ACTIONS(1459), + [anon_sym_this] = ACTIONS(1459), [sym_comment] = ACTIONS(3), }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [sym_decimal_integer_literal] = ACTIONS(1148), - [sym_hex_integer_literal] = ACTIONS(1148), - [sym_octal_integer_literal] = ACTIONS(1146), - [sym_binary_integer_literal] = ACTIONS(1146), - [sym_decimal_floating_point_literal] = ACTIONS(1146), - [sym_hex_floating_point_literal] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1146), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1146), - [anon_sym_r] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_throw] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_QMARK_QMARK] = ACTIONS(1146), - [anon_sym_QMARK] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [sym_equality_operator] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1146), - [anon_sym_LT_EQ] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_GT_GT_GT] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_PERCENT] = ACTIONS(1146), - [anon_sym_TILDE_SLASH] = ACTIONS(1146), - [sym_increment_operator] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_await] = ACTIONS(1148), - [anon_sym_is] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1148), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_super] = ACTIONS(1148), - [anon_sym_void] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [anon_sym_covariant] = ACTIONS(1148), - [anon_sym_Function] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_external] = ACTIONS(1148), - [anon_sym_this] = ACTIONS(1148), + [918] = { + [sym__assignment_operator] = STATE(564), + [sym__cascade_subsection] = STATE(950), + [sym__cascade_assignment_section] = STATE(1114), + [sym_unconditional_assignable_selector] = STATE(939), + [sym_assignable_selector] = STATE(948), + [aux_sym_cascade_section_repeat1] = STATE(950), + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(913), + [sym_decimal_integer_literal] = ACTIONS(915), + [sym_hex_integer_literal] = ACTIONS(915), + [sym_octal_integer_literal] = ACTIONS(913), + [sym_binary_integer_literal] = ACTIONS(913), + [sym_decimal_floating_point_literal] = ACTIONS(913), + [sym_hex_floating_point_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(913), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(913), + [anon_sym_r] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_null] = ACTIONS(915), + [anon_sym_throw] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [sym_increment_operator] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_await] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(2164), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_assert] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_try] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_abstract] = ACTIONS(915), + [anon_sym_class] = ACTIONS(915), + [anon_sym_super] = ACTIONS(915), + [anon_sym_void] = ACTIONS(915), + [anon_sym_var] = ACTIONS(915), + [anon_sym_covariant] = ACTIONS(915), + [anon_sym_Function] = ACTIONS(915), + [anon_sym_get] = ACTIONS(915), + [anon_sym_set] = ACTIONS(915), + [anon_sym_new] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_final] = ACTIONS(915), + [anon_sym_external] = ACTIONS(915), + [anon_sym_this] = ACTIONS(915), [sym_comment] = ACTIONS(3), }, - [880] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [sym_decimal_integer_literal] = ACTIONS(1140), - [sym_hex_integer_literal] = ACTIONS(1140), - [sym_octal_integer_literal] = ACTIONS(1138), - [sym_binary_integer_literal] = ACTIONS(1138), - [sym_decimal_floating_point_literal] = ACTIONS(1138), - [sym_hex_floating_point_literal] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1138), - [anon_sym_r] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_COMMA] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(1140), - [anon_sym_throw] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_QMARK_QMARK] = ACTIONS(1138), - [anon_sym_QMARK] = ACTIONS(1140), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [sym_equality_operator] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_GT_EQ] = ACTIONS(1138), - [anon_sym_LT_EQ] = ACTIONS(1138), - [anon_sym_PIPE] = ACTIONS(1140), - [anon_sym_CARET] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_LT_LT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1140), - [anon_sym_GT_GT_GT] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(1140), - [anon_sym_PERCENT] = ACTIONS(1138), - [anon_sym_TILDE_SLASH] = ACTIONS(1138), - [sym_increment_operator] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_await] = ACTIONS(1140), - [anon_sym_is] = ACTIONS(1140), - [anon_sym_as] = ACTIONS(1140), - [anon_sym_DOT_DOT] = ACTIONS(1138), - [anon_sym_assert] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_try] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_super] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1140), - [anon_sym_var] = ACTIONS(1140), - [anon_sym_covariant] = ACTIONS(1140), - [anon_sym_Function] = ACTIONS(1140), - [anon_sym_get] = ACTIONS(1140), - [anon_sym_set] = ACTIONS(1140), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_external] = ACTIONS(1140), - [anon_sym_this] = ACTIONS(1140), + [919] = { + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1407), + [anon_sym_POUND] = ACTIONS(1405), + [sym_decimal_integer_literal] = ACTIONS(1407), + [sym_hex_integer_literal] = ACTIONS(1407), + [sym_octal_integer_literal] = ACTIONS(1405), + [sym_binary_integer_literal] = ACTIONS(1405), + [sym_decimal_floating_point_literal] = ACTIONS(1405), + [sym_hex_floating_point_literal] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1405), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1405), + [anon_sym_r] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_throw] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_QMARK_QMARK] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1252), + [anon_sym_AMP_AMP] = ACTIONS(1252), + [sym_equality_operator] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_GT_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_TILDE_SLASH] = ACTIONS(1252), + [sym_increment_operator] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_await] = ACTIONS(1407), + [anon_sym_is] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_AT] = ACTIONS(1405), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_abstract] = ACTIONS(1407), + [anon_sym_class] = ACTIONS(1407), + [anon_sym_super] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_covariant] = ACTIONS(1407), + [anon_sym_Function] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1407), + [anon_sym_set] = ACTIONS(1407), + [anon_sym_new] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_final] = ACTIONS(1407), + [anon_sym_external] = ACTIONS(1407), + [anon_sym_this] = ACTIONS(1407), [sym_comment] = ACTIONS(3), }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [sym_decimal_integer_literal] = ACTIONS(1136), - [sym_hex_integer_literal] = ACTIONS(1136), - [sym_octal_integer_literal] = ACTIONS(1134), - [sym_binary_integer_literal] = ACTIONS(1134), - [sym_decimal_floating_point_literal] = ACTIONS(1134), - [sym_hex_floating_point_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1134), - [anon_sym_r] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_null] = ACTIONS(1136), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_QMARK_QMARK] = ACTIONS(1134), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1134), - [sym_equality_operator] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_EQ] = ACTIONS(1134), - [anon_sym_LT_EQ] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_GT_GT_GT] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1136), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_TILDE_SLASH] = ACTIONS(1134), - [sym_increment_operator] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_is] = ACTIONS(1136), - [anon_sym_as] = ACTIONS(1136), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_assert] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_abstract] = ACTIONS(1136), - [anon_sym_class] = ACTIONS(1136), - [anon_sym_super] = ACTIONS(1136), - [anon_sym_void] = ACTIONS(1136), - [anon_sym_var] = ACTIONS(1136), - [anon_sym_covariant] = ACTIONS(1136), - [anon_sym_Function] = ACTIONS(1136), - [anon_sym_get] = ACTIONS(1136), - [anon_sym_set] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_final] = ACTIONS(1136), - [anon_sym_external] = ACTIONS(1136), - [anon_sym_this] = ACTIONS(1136), + [920] = { + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1309), + [sym_decimal_integer_literal] = ACTIONS(1311), + [sym_hex_integer_literal] = ACTIONS(1311), + [sym_octal_integer_literal] = ACTIONS(1309), + [sym_binary_integer_literal] = ACTIONS(1309), + [sym_decimal_floating_point_literal] = ACTIONS(1309), + [sym_hex_floating_point_literal] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1309), + [anon_sym_r] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1311), + [anon_sym_throw] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_QMARK_QMARK] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(1311), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [sym_equality_operator] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_LT_LT] = ACTIONS(1309), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_GT_GT_GT] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1309), + [anon_sym_TILDE_SLASH] = ACTIONS(1309), + [sym_increment_operator] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_await] = ACTIONS(1311), + [anon_sym_is] = ACTIONS(1311), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_yield] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_abstract] = ACTIONS(1311), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_super] = ACTIONS(1311), + [anon_sym_void] = ACTIONS(1311), + [anon_sym_var] = ACTIONS(1311), + [anon_sym_covariant] = ACTIONS(1311), + [anon_sym_Function] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(1311), + [anon_sym_set] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_final] = ACTIONS(1311), + [anon_sym_external] = ACTIONS(1311), + [anon_sym_this] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, - [882] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [anon_sym_POUND] = ACTIONS(1264), - [sym_decimal_integer_literal] = ACTIONS(1266), - [sym_hex_integer_literal] = ACTIONS(1266), - [sym_octal_integer_literal] = ACTIONS(1264), - [sym_binary_integer_literal] = ACTIONS(1264), - [sym_decimal_floating_point_literal] = ACTIONS(1264), - [sym_hex_floating_point_literal] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1264), - [anon_sym_r] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_null] = ACTIONS(1266), - [anon_sym_throw] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_QMARK_QMARK] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [sym_equality_operator] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1266), - [anon_sym_GT_GT_GT] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1266), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_TILDE_SLASH] = ACTIONS(1264), - [sym_increment_operator] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_await] = ACTIONS(1266), - [anon_sym_is] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_assert] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_yield] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_try] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_abstract] = ACTIONS(1266), - [anon_sym_class] = ACTIONS(1266), - [anon_sym_super] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1266), - [anon_sym_var] = ACTIONS(1266), - [anon_sym_covariant] = ACTIONS(1266), - [anon_sym_Function] = ACTIONS(1266), - [anon_sym_get] = ACTIONS(1266), - [anon_sym_set] = ACTIONS(1266), - [anon_sym_new] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_final] = ACTIONS(1266), - [anon_sym_external] = ACTIONS(1266), - [anon_sym_this] = ACTIONS(1266), + [921] = { + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(1235), + [sym_decimal_integer_literal] = ACTIONS(1237), + [sym_hex_integer_literal] = ACTIONS(1237), + [sym_octal_integer_literal] = ACTIONS(1235), + [sym_binary_integer_literal] = ACTIONS(1235), + [sym_decimal_floating_point_literal] = ACTIONS(1235), + [sym_hex_floating_point_literal] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1237), + [anon_sym_false] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1235), + [anon_sym_r] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_COMMA] = ACTIONS(1235), + [anon_sym_null] = ACTIONS(1237), + [anon_sym_throw] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1235), + [anon_sym_QMARK_QMARK] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [sym_equality_operator] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1237), + [anon_sym_GT_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_TILDE_SLASH] = ACTIONS(1235), + [sym_increment_operator] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_await] = ACTIONS(1237), + [anon_sym_is] = ACTIONS(1237), + [anon_sym_as] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_assert] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_yield] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_AT] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_abstract] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1237), + [anon_sym_super] = ACTIONS(1237), + [anon_sym_void] = ACTIONS(1237), + [anon_sym_var] = ACTIONS(1237), + [anon_sym_covariant] = ACTIONS(1237), + [anon_sym_Function] = ACTIONS(1237), + [anon_sym_get] = ACTIONS(1237), + [anon_sym_set] = ACTIONS(1237), + [anon_sym_new] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_final] = ACTIONS(1237), + [anon_sym_external] = ACTIONS(1237), + [anon_sym_this] = ACTIONS(1237), [sym_comment] = ACTIONS(3), }, - [883] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1380), - [sym_decimal_integer_literal] = ACTIONS(1382), - [sym_hex_integer_literal] = ACTIONS(1382), - [sym_octal_integer_literal] = ACTIONS(1380), - [sym_binary_integer_literal] = ACTIONS(1380), - [sym_decimal_floating_point_literal] = ACTIONS(1380), - [sym_hex_floating_point_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1380), - [anon_sym_r] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_COMMA] = ACTIONS(1380), - [anon_sym_RBRACK] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_null] = ACTIONS(1382), - [anon_sym_throw] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1380), - [anon_sym_DASH_EQ] = ACTIONS(1380), - [anon_sym_STAR_EQ] = ACTIONS(1380), - [anon_sym_SLASH_EQ] = ACTIONS(1380), - [anon_sym_AMP_EQ] = ACTIONS(1380), - [anon_sym_PIPE_EQ] = ACTIONS(1380), - [anon_sym_CARET_EQ] = ACTIONS(1380), - [anon_sym_PERCENT_EQ] = ACTIONS(1380), - [anon_sym_LT_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_GT_EQ] = ACTIONS(1380), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1380), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [sym_increment_operator] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_await] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_QMARK_DOT] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_try] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_abstract] = ACTIONS(1382), - [anon_sym_class] = ACTIONS(1382), - [anon_sym_super] = ACTIONS(1382), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_covariant] = ACTIONS(1382), - [anon_sym_Function] = ACTIONS(1382), - [anon_sym_get] = ACTIONS(1382), - [anon_sym_set] = ACTIONS(1382), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_final] = ACTIONS(1382), - [anon_sym_external] = ACTIONS(1382), - [anon_sym_this] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), + [922] = { + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [anon_sym_POUND] = ACTIONS(1301), + [sym_decimal_integer_literal] = ACTIONS(1303), + [sym_hex_integer_literal] = ACTIONS(1303), + [sym_octal_integer_literal] = ACTIONS(1301), + [sym_binary_integer_literal] = ACTIONS(1301), + [sym_decimal_floating_point_literal] = ACTIONS(1301), + [sym_hex_floating_point_literal] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1301), + [anon_sym_r] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1301), + [anon_sym_null] = ACTIONS(1303), + [anon_sym_throw] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1301), + [anon_sym_PLUS_EQ] = ACTIONS(1301), + [anon_sym_DASH_EQ] = ACTIONS(1301), + [anon_sym_STAR_EQ] = ACTIONS(1301), + [anon_sym_SLASH_EQ] = ACTIONS(1301), + [anon_sym_AMP_EQ] = ACTIONS(1301), + [anon_sym_PIPE_EQ] = ACTIONS(1301), + [anon_sym_CARET_EQ] = ACTIONS(1301), + [anon_sym_PERCENT_EQ] = ACTIONS(1301), + [anon_sym_LT_LT_EQ] = ACTIONS(1301), + [anon_sym_GT_GT_EQ] = ACTIONS(1301), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1301), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [sym_increment_operator] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_await] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_QMARK_DOT] = ACTIONS(1301), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_abstract] = ACTIONS(1303), + [anon_sym_class] = ACTIONS(1303), + [anon_sym_super] = ACTIONS(1303), + [anon_sym_void] = ACTIONS(1303), + [anon_sym_var] = ACTIONS(1303), + [anon_sym_covariant] = ACTIONS(1303), + [anon_sym_Function] = ACTIONS(1303), + [anon_sym_get] = ACTIONS(1303), + [anon_sym_set] = ACTIONS(1303), + [anon_sym_new] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_final] = ACTIONS(1303), + [anon_sym_external] = ACTIONS(1303), + [anon_sym_this] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1301), [sym_comment] = ACTIONS(3), }, - [884] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(1228), - [sym_decimal_integer_literal] = ACTIONS(1230), - [sym_hex_integer_literal] = ACTIONS(1230), - [sym_octal_integer_literal] = ACTIONS(1228), - [sym_binary_integer_literal] = ACTIONS(1228), - [sym_decimal_floating_point_literal] = ACTIONS(1228), - [sym_hex_floating_point_literal] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1228), - [anon_sym_r] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1230), - [anon_sym_throw] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_QMARK_QMARK] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [sym_equality_operator] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1230), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1230), - [anon_sym_GT_GT_GT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1230), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_TILDE_SLASH] = ACTIONS(1228), - [sym_increment_operator] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_is] = ACTIONS(1230), - [anon_sym_as] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_abstract] = ACTIONS(1230), - [anon_sym_class] = ACTIONS(1230), - [anon_sym_super] = ACTIONS(1230), - [anon_sym_void] = ACTIONS(1230), - [anon_sym_var] = ACTIONS(1230), - [anon_sym_covariant] = ACTIONS(1230), - [anon_sym_Function] = ACTIONS(1230), - [anon_sym_get] = ACTIONS(1230), - [anon_sym_set] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_final] = ACTIONS(1230), - [anon_sym_external] = ACTIONS(1230), - [anon_sym_this] = ACTIONS(1230), + [923] = { + [ts_builtin_sym_end] = ACTIONS(1563), + [sym_identifier] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(1563), + [sym_decimal_integer_literal] = ACTIONS(1565), + [sym_hex_integer_literal] = ACTIONS(1565), + [sym_octal_integer_literal] = ACTIONS(1563), + [sym_binary_integer_literal] = ACTIONS(1563), + [sym_decimal_floating_point_literal] = ACTIONS(1563), + [sym_hex_floating_point_literal] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_SQUOTE] = ACTIONS(1565), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1563), + [anon_sym_r] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_RBRACK] = ACTIONS(1563), + [anon_sym_COLON] = ACTIONS(1563), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_throw] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [sym_increment_operator] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_QMARK_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_AT] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_class] = ACTIONS(1565), + [anon_sym_super] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_covariant] = ACTIONS(1565), + [anon_sym_Function] = ACTIONS(1565), + [anon_sym_get] = ACTIONS(1565), + [anon_sym_set] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_final] = ACTIONS(1565), + [anon_sym_external] = ACTIONS(1565), + [anon_sym_this] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1563), [sym_comment] = ACTIONS(3), }, - [885] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [sym_decimal_integer_literal] = ACTIONS(1442), - [sym_hex_integer_literal] = ACTIONS(1442), - [sym_octal_integer_literal] = ACTIONS(1440), - [sym_binary_integer_literal] = ACTIONS(1440), - [sym_decimal_floating_point_literal] = ACTIONS(1440), - [sym_hex_floating_point_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1440), - [anon_sym_r] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_QMARK_QMARK] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [sym_equality_operator] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1442), - [anon_sym_GT_GT_GT] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_TILDE_SLASH] = ACTIONS(1440), - [sym_increment_operator] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_await] = ACTIONS(1442), - [anon_sym_is] = ACTIONS(1442), - [anon_sym_as] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_abstract] = ACTIONS(1442), - [anon_sym_class] = ACTIONS(1442), - [anon_sym_super] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [anon_sym_covariant] = ACTIONS(1442), - [anon_sym_Function] = ACTIONS(1444), - [anon_sym_get] = ACTIONS(1442), - [anon_sym_set] = ACTIONS(1442), - [anon_sym_new] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_final] = ACTIONS(1442), - [anon_sym_external] = ACTIONS(1442), - [anon_sym_this] = ACTIONS(1442), + [924] = { + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(1547), + [sym_decimal_integer_literal] = ACTIONS(1549), + [sym_hex_integer_literal] = ACTIONS(1549), + [sym_octal_integer_literal] = ACTIONS(1547), + [sym_binary_integer_literal] = ACTIONS(1547), + [sym_decimal_floating_point_literal] = ACTIONS(1547), + [sym_hex_floating_point_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1547), + [anon_sym_r] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_COLON] = ACTIONS(1547), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_throw] = ACTIONS(1549), + [anon_sym_EQ] = ACTIONS(1547), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [sym_increment_operator] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_QMARK_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_abstract] = ACTIONS(1549), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_super] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_covariant] = ACTIONS(1549), + [anon_sym_Function] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_final] = ACTIONS(1549), + [anon_sym_external] = ACTIONS(1549), + [anon_sym_this] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), [sym_comment] = ACTIONS(3), }, - [886] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [sym_decimal_integer_literal] = ACTIONS(1152), - [sym_hex_integer_literal] = ACTIONS(1152), - [sym_octal_integer_literal] = ACTIONS(1150), - [sym_binary_integer_literal] = ACTIONS(1150), - [sym_decimal_floating_point_literal] = ACTIONS(1150), - [sym_hex_floating_point_literal] = ACTIONS(1152), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1150), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1150), - [anon_sym_r] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1152), - [anon_sym_throw] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_QMARK_QMARK] = ACTIONS(1150), - [anon_sym_QMARK] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [sym_equality_operator] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_CARET] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_GT_GT_GT] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1152), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_TILDE_SLASH] = ACTIONS(1150), - [sym_increment_operator] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_await] = ACTIONS(1152), - [anon_sym_is] = ACTIONS(1152), - [anon_sym_as] = ACTIONS(1152), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_assert] = ACTIONS(1152), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_class] = ACTIONS(1152), - [anon_sym_super] = ACTIONS(1152), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_var] = ACTIONS(1152), - [anon_sym_covariant] = ACTIONS(1152), - [anon_sym_Function] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_new] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_final] = ACTIONS(1152), - [anon_sym_external] = ACTIONS(1152), - [anon_sym_this] = ACTIONS(1152), + [925] = { + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1341), + [sym_decimal_integer_literal] = ACTIONS(1343), + [sym_hex_integer_literal] = ACTIONS(1343), + [sym_octal_integer_literal] = ACTIONS(1341), + [sym_binary_integer_literal] = ACTIONS(1341), + [sym_decimal_floating_point_literal] = ACTIONS(1341), + [sym_hex_floating_point_literal] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1341), + [anon_sym_r] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_RBRACK] = ACTIONS(1341), + [anon_sym_COLON] = ACTIONS(1341), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_throw] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_PLUS_EQ] = ACTIONS(1341), + [anon_sym_DASH_EQ] = ACTIONS(1341), + [anon_sym_STAR_EQ] = ACTIONS(1341), + [anon_sym_SLASH_EQ] = ACTIONS(1341), + [anon_sym_AMP_EQ] = ACTIONS(1341), + [anon_sym_PIPE_EQ] = ACTIONS(1341), + [anon_sym_CARET_EQ] = ACTIONS(1341), + [anon_sym_PERCENT_EQ] = ACTIONS(1341), + [anon_sym_LT_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [sym_increment_operator] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_await] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_QMARK_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_yield] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_AT] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_abstract] = ACTIONS(1343), + [anon_sym_class] = ACTIONS(1343), + [anon_sym_super] = ACTIONS(1343), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_covariant] = ACTIONS(1343), + [anon_sym_Function] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1343), + [anon_sym_set] = ACTIONS(1343), + [anon_sym_new] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_final] = ACTIONS(1343), + [anon_sym_external] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1341), [sym_comment] = ACTIONS(3), }, - [887] = { - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1192), - [sym_decimal_integer_literal] = ACTIONS(1194), - [sym_hex_integer_literal] = ACTIONS(1194), - [sym_octal_integer_literal] = ACTIONS(1192), - [sym_binary_integer_literal] = ACTIONS(1192), - [sym_decimal_floating_point_literal] = ACTIONS(1192), - [sym_hex_floating_point_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1192), - [anon_sym_r] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_null] = ACTIONS(1194), - [anon_sym_throw] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_QMARK_QMARK] = ACTIONS(1192), - [anon_sym_QMARK] = ACTIONS(1194), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [sym_equality_operator] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_GT_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_TILDE_SLASH] = ACTIONS(1192), - [sym_increment_operator] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_await] = ACTIONS(1194), - [anon_sym_is] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1192), - [anon_sym_assert] = ACTIONS(1194), - [anon_sym_switch] = ACTIONS(1194), - [anon_sym_do] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_abstract] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(1194), - [anon_sym_super] = ACTIONS(1194), - [anon_sym_void] = ACTIONS(1194), - [anon_sym_var] = ACTIONS(1194), - [anon_sym_covariant] = ACTIONS(1194), - [anon_sym_Function] = ACTIONS(1194), - [anon_sym_get] = ACTIONS(1194), - [anon_sym_set] = ACTIONS(1194), - [anon_sym_new] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_final] = ACTIONS(1194), - [anon_sym_external] = ACTIONS(1194), - [anon_sym_this] = ACTIONS(1194), + [926] = { + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1515), + [sym_decimal_integer_literal] = ACTIONS(1517), + [sym_hex_integer_literal] = ACTIONS(1517), + [sym_octal_integer_literal] = ACTIONS(1515), + [sym_binary_integer_literal] = ACTIONS(1515), + [sym_decimal_floating_point_literal] = ACTIONS(1515), + [sym_hex_floating_point_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1515), + [anon_sym_r] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_QMARK_QMARK] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [sym_equality_operator] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT] = ACTIONS(1517), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_GT_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_TILDE_SLASH] = ACTIONS(1515), + [sym_increment_operator] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1517), + [anon_sym_is] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_abstract] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_super] = ACTIONS(1517), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_covariant] = ACTIONS(1517), + [anon_sym_Function] = ACTIONS(1517), + [anon_sym_get] = ACTIONS(1517), + [anon_sym_set] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_final] = ACTIONS(1517), + [anon_sym_external] = ACTIONS(1517), + [anon_sym_this] = ACTIONS(1517), [sym_comment] = ACTIONS(3), }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1467), - [sym_decimal_integer_literal] = ACTIONS(1469), - [sym_hex_integer_literal] = ACTIONS(1469), - [sym_octal_integer_literal] = ACTIONS(1467), - [sym_binary_integer_literal] = ACTIONS(1467), - [sym_decimal_floating_point_literal] = ACTIONS(1467), - [sym_hex_floating_point_literal] = ACTIONS(1469), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1467), - [anon_sym_r] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1469), - [anon_sym_throw] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1467), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [sym_equality_operator] = ACTIONS(1467), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_GT_EQ] = ACTIONS(1213), - [anon_sym_LT_EQ] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_GT_GT_GT] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_TILDE_SLASH] = ACTIONS(1467), - [sym_increment_operator] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1469), - [anon_sym_is] = ACTIONS(1210), - [anon_sym_as] = ACTIONS(1210), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_try] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_abstract] = ACTIONS(1469), - [anon_sym_class] = ACTIONS(1469), - [anon_sym_super] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1469), - [anon_sym_var] = ACTIONS(1469), - [anon_sym_covariant] = ACTIONS(1469), - [anon_sym_Function] = ACTIONS(1469), - [anon_sym_get] = ACTIONS(1469), - [anon_sym_set] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_final] = ACTIONS(1469), - [anon_sym_external] = ACTIONS(1469), - [anon_sym_this] = ACTIONS(1469), + [927] = { + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(1269), + [sym_decimal_integer_literal] = ACTIONS(1271), + [sym_hex_integer_literal] = ACTIONS(1271), + [sym_octal_integer_literal] = ACTIONS(1269), + [sym_binary_integer_literal] = ACTIONS(1269), + [sym_decimal_floating_point_literal] = ACTIONS(1269), + [sym_hex_floating_point_literal] = ACTIONS(1271), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1271), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1269), + [anon_sym_r] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_null] = ACTIONS(1271), + [anon_sym_throw] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_QMARK_QMARK] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [sym_equality_operator] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_GT_GT_GT] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1269), + [anon_sym_TILDE_SLASH] = ACTIONS(1269), + [sym_increment_operator] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1271), + [anon_sym_is] = ACTIONS(1271), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1269), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_abstract] = ACTIONS(1271), + [anon_sym_class] = ACTIONS(1271), + [anon_sym_super] = ACTIONS(1271), + [anon_sym_void] = ACTIONS(1271), + [anon_sym_var] = ACTIONS(1271), + [anon_sym_covariant] = ACTIONS(1271), + [anon_sym_Function] = ACTIONS(1271), + [anon_sym_get] = ACTIONS(1271), + [anon_sym_set] = ACTIONS(1271), + [anon_sym_new] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_final] = ACTIONS(1271), + [anon_sym_external] = ACTIONS(1271), + [anon_sym_this] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [sym_decimal_integer_literal] = ACTIONS(1314), - [sym_hex_integer_literal] = ACTIONS(1314), - [sym_octal_integer_literal] = ACTIONS(1312), - [sym_binary_integer_literal] = ACTIONS(1312), - [sym_decimal_floating_point_literal] = ACTIONS(1312), - [sym_hex_floating_point_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1312), - [anon_sym_r] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1314), - [anon_sym_throw] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_QMARK_QMARK] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [sym_equality_operator] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_GT_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_TILDE_SLASH] = ACTIONS(1312), - [sym_increment_operator] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_is] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_abstract] = ACTIONS(1314), - [anon_sym_class] = ACTIONS(1314), - [anon_sym_super] = ACTIONS(1314), - [anon_sym_void] = ACTIONS(1314), - [anon_sym_var] = ACTIONS(1314), - [anon_sym_covariant] = ACTIONS(1314), - [anon_sym_Function] = ACTIONS(1314), - [anon_sym_get] = ACTIONS(1314), - [anon_sym_set] = ACTIONS(1314), - [anon_sym_new] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_final] = ACTIONS(1314), - [anon_sym_external] = ACTIONS(1314), - [anon_sym_this] = ACTIONS(1314), + [928] = { + [ts_builtin_sym_end] = ACTIONS(741), + [sym_identifier] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(741), + [sym_decimal_integer_literal] = ACTIONS(743), + [sym_hex_integer_literal] = ACTIONS(743), + [sym_octal_integer_literal] = ACTIONS(741), + [sym_binary_integer_literal] = ACTIONS(741), + [sym_decimal_floating_point_literal] = ACTIONS(741), + [sym_hex_floating_point_literal] = ACTIONS(743), + [anon_sym_true] = ACTIONS(743), + [anon_sym_false] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(743), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(741), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(741), + [anon_sym_r] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_null] = ACTIONS(743), + [anon_sym_throw] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_QMARK_QMARK] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(741), + [sym_equality_operator] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(743), + [anon_sym_GT_EQ] = ACTIONS(741), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_CARET] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(743), + [anon_sym_GT_GT_GT] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(743), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_TILDE_SLASH] = ACTIONS(741), + [sym_increment_operator] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_await] = ACTIONS(743), + [anon_sym_is] = ACTIONS(743), + [anon_sym_as] = ACTIONS(743), + [anon_sym_DOT_DOT] = ACTIONS(741), + [anon_sym_assert] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(743), + [anon_sym_do] = ACTIONS(743), + [anon_sym_while] = ACTIONS(743), + [anon_sym_break] = ACTIONS(743), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(743), + [anon_sym_return] = ACTIONS(743), + [anon_sym_try] = ACTIONS(743), + [anon_sym_if] = ACTIONS(743), + [anon_sym_for] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_abstract] = ACTIONS(743), + [anon_sym_class] = ACTIONS(743), + [anon_sym_super] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_var] = ACTIONS(743), + [anon_sym_covariant] = ACTIONS(743), + [anon_sym_Function] = ACTIONS(743), + [anon_sym_get] = ACTIONS(743), + [anon_sym_set] = ACTIONS(743), + [anon_sym_new] = ACTIONS(743), + [anon_sym_const] = ACTIONS(743), + [anon_sym_final] = ACTIONS(743), + [anon_sym_external] = ACTIONS(743), + [anon_sym_this] = ACTIONS(743), [sym_comment] = ACTIONS(3), }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [anon_sym_POUND] = ACTIONS(1268), - [sym_decimal_integer_literal] = ACTIONS(1270), - [sym_hex_integer_literal] = ACTIONS(1270), - [sym_octal_integer_literal] = ACTIONS(1268), - [sym_binary_integer_literal] = ACTIONS(1268), - [sym_decimal_floating_point_literal] = ACTIONS(1268), - [sym_hex_floating_point_literal] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1268), - [anon_sym_r] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_null] = ACTIONS(1270), - [anon_sym_throw] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [sym_increment_operator] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_await] = ACTIONS(1270), - [anon_sym_DOT] = ACTIONS(1270), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1268), - [anon_sym_assert] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_try] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_abstract] = ACTIONS(1270), - [anon_sym_class] = ACTIONS(1270), - [anon_sym_super] = ACTIONS(1270), - [anon_sym_void] = ACTIONS(1270), - [anon_sym_var] = ACTIONS(1270), - [anon_sym_covariant] = ACTIONS(1270), - [anon_sym_Function] = ACTIONS(1270), - [anon_sym_get] = ACTIONS(1270), - [anon_sym_set] = ACTIONS(1270), - [anon_sym_new] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_final] = ACTIONS(1270), - [anon_sym_external] = ACTIONS(1270), - [anon_sym_this] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1268), + [929] = { + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(1583), + [sym_decimal_integer_literal] = ACTIONS(1585), + [sym_hex_integer_literal] = ACTIONS(1585), + [sym_octal_integer_literal] = ACTIONS(1583), + [sym_binary_integer_literal] = ACTIONS(1583), + [sym_decimal_floating_point_literal] = ACTIONS(1583), + [sym_hex_floating_point_literal] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1583), + [anon_sym_r] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_COMMA] = ACTIONS(1583), + [anon_sym_RBRACK] = ACTIONS(1583), + [anon_sym_COLON] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_throw] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(1583), + [anon_sym_PLUS_EQ] = ACTIONS(1583), + [anon_sym_DASH_EQ] = ACTIONS(1583), + [anon_sym_STAR_EQ] = ACTIONS(1583), + [anon_sym_SLASH_EQ] = ACTIONS(1583), + [anon_sym_AMP_EQ] = ACTIONS(1583), + [anon_sym_PIPE_EQ] = ACTIONS(1583), + [anon_sym_CARET_EQ] = ACTIONS(1583), + [anon_sym_PERCENT_EQ] = ACTIONS(1583), + [anon_sym_LT_LT_EQ] = ACTIONS(1583), + [anon_sym_GT_GT_EQ] = ACTIONS(1583), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1583), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [sym_increment_operator] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1585), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_QMARK_DOT] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_AT] = ACTIONS(1583), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_abstract] = ACTIONS(1585), + [anon_sym_class] = ACTIONS(1585), + [anon_sym_super] = ACTIONS(1585), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_covariant] = ACTIONS(1585), + [anon_sym_Function] = ACTIONS(1585), + [anon_sym_get] = ACTIONS(1585), + [anon_sym_set] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_final] = ACTIONS(1585), + [anon_sym_external] = ACTIONS(1585), + [anon_sym_this] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1583), [sym_comment] = ACTIONS(3), }, - [891] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [sym_decimal_integer_literal] = ACTIONS(1156), - [sym_hex_integer_literal] = ACTIONS(1156), - [sym_octal_integer_literal] = ACTIONS(1154), - [sym_binary_integer_literal] = ACTIONS(1154), - [sym_decimal_floating_point_literal] = ACTIONS(1154), - [sym_hex_floating_point_literal] = ACTIONS(1156), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1154), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1154), - [anon_sym_r] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_throw] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_QMARK_QMARK] = ACTIONS(1154), - [anon_sym_QMARK] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1154), - [anon_sym_AMP_AMP] = ACTIONS(1154), - [sym_equality_operator] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_GT_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1156), - [anon_sym_PERCENT] = ACTIONS(1154), - [anon_sym_TILDE_SLASH] = ACTIONS(1154), - [sym_increment_operator] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_is] = ACTIONS(1156), - [anon_sym_as] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_assert] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_AT] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_abstract] = ACTIONS(1156), - [anon_sym_class] = ACTIONS(1156), - [anon_sym_super] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_var] = ACTIONS(1156), - [anon_sym_covariant] = ACTIONS(1156), - [anon_sym_Function] = ACTIONS(1156), - [anon_sym_get] = ACTIONS(1156), - [anon_sym_set] = ACTIONS(1156), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_final] = ACTIONS(1156), - [anon_sym_external] = ACTIONS(1156), - [anon_sym_this] = ACTIONS(1156), + [930] = { + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1461), + [sym_decimal_integer_literal] = ACTIONS(1463), + [sym_hex_integer_literal] = ACTIONS(1463), + [sym_octal_integer_literal] = ACTIONS(1461), + [sym_binary_integer_literal] = ACTIONS(1461), + [sym_decimal_floating_point_literal] = ACTIONS(1461), + [sym_hex_floating_point_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1461), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1461), + [anon_sym_r] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_throw] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_QMARK_QMARK] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [sym_equality_operator] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_GT_GT_GT] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_TILDE_SLASH] = ACTIONS(1461), + [sym_increment_operator] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_await] = ACTIONS(1463), + [anon_sym_is] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_abstract] = ACTIONS(1463), + [anon_sym_class] = ACTIONS(1463), + [anon_sym_super] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1463), + [anon_sym_var] = ACTIONS(1463), + [anon_sym_covariant] = ACTIONS(1463), + [anon_sym_Function] = ACTIONS(1463), + [anon_sym_get] = ACTIONS(1463), + [anon_sym_set] = ACTIONS(1463), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_final] = ACTIONS(1463), + [anon_sym_external] = ACTIONS(1463), + [anon_sym_this] = ACTIONS(1463), [sym_comment] = ACTIONS(3), }, - [892] = { - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_identifier] = ACTIONS(1122), - [anon_sym_POUND] = ACTIONS(1120), - [sym_decimal_integer_literal] = ACTIONS(1122), - [sym_hex_integer_literal] = ACTIONS(1122), - [sym_octal_integer_literal] = ACTIONS(1120), - [sym_binary_integer_literal] = ACTIONS(1120), - [sym_decimal_floating_point_literal] = ACTIONS(1120), - [sym_hex_floating_point_literal] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1122), - [anon_sym_false] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1120), - [anon_sym_r] = ACTIONS(1122), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_COMMA] = ACTIONS(1120), - [anon_sym_null] = ACTIONS(1122), - [anon_sym_throw] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(1120), - [anon_sym_QMARK_QMARK] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [sym_equality_operator] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_GT] = ACTIONS(1122), - [anon_sym_GT_EQ] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_CARET] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_GT_GT_GT] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_SLASH] = ACTIONS(1122), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_TILDE_SLASH] = ACTIONS(1120), - [sym_increment_operator] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_await] = ACTIONS(1122), - [anon_sym_is] = ACTIONS(1122), - [anon_sym_as] = ACTIONS(1122), - [anon_sym_DOT_DOT] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_yield] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_try] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_abstract] = ACTIONS(1122), - [anon_sym_class] = ACTIONS(1122), - [anon_sym_super] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_var] = ACTIONS(1122), - [anon_sym_covariant] = ACTIONS(1122), - [anon_sym_Function] = ACTIONS(1122), - [anon_sym_get] = ACTIONS(1122), - [anon_sym_set] = ACTIONS(1122), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_final] = ACTIONS(1122), - [anon_sym_external] = ACTIONS(1122), - [anon_sym_this] = ACTIONS(1122), + [931] = { + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1465), + [sym_decimal_integer_literal] = ACTIONS(1467), + [sym_hex_integer_literal] = ACTIONS(1467), + [sym_octal_integer_literal] = ACTIONS(1465), + [sym_binary_integer_literal] = ACTIONS(1465), + [sym_decimal_floating_point_literal] = ACTIONS(1465), + [sym_hex_floating_point_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1465), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1465), + [anon_sym_r] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_throw] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_QMARK_QMARK] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [sym_equality_operator] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_GT_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_TILDE_SLASH] = ACTIONS(1465), + [sym_increment_operator] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_is] = ACTIONS(1467), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1467), + [anon_sym_switch] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_abstract] = ACTIONS(1467), + [anon_sym_class] = ACTIONS(1467), + [anon_sym_super] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1467), + [anon_sym_var] = ACTIONS(1467), + [anon_sym_covariant] = ACTIONS(1467), + [anon_sym_Function] = ACTIONS(1467), + [anon_sym_get] = ACTIONS(1467), + [anon_sym_set] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_final] = ACTIONS(1467), + [anon_sym_external] = ACTIONS(1467), + [anon_sym_this] = ACTIONS(1467), [sym_comment] = ACTIONS(3), }, - [893] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [sym_decimal_integer_literal] = ACTIONS(1160), - [sym_hex_integer_literal] = ACTIONS(1160), - [sym_octal_integer_literal] = ACTIONS(1158), - [sym_binary_integer_literal] = ACTIONS(1158), - [sym_decimal_floating_point_literal] = ACTIONS(1158), - [sym_hex_floating_point_literal] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1158), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1158), - [anon_sym_r] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_throw] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_QMARK_QMARK] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1160), - [anon_sym_PIPE_PIPE] = ACTIONS(1158), - [anon_sym_AMP_AMP] = ACTIONS(1158), - [sym_equality_operator] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_LT_LT] = ACTIONS(1158), - [anon_sym_GT_GT] = ACTIONS(1160), - [anon_sym_GT_GT_GT] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_PERCENT] = ACTIONS(1158), - [anon_sym_TILDE_SLASH] = ACTIONS(1158), - [sym_increment_operator] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1160), - [anon_sym_await] = ACTIONS(1160), - [anon_sym_is] = ACTIONS(1160), - [anon_sym_as] = ACTIONS(1160), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_assert] = ACTIONS(1160), - [anon_sym_switch] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_try] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(1160), - [anon_sym_super] = ACTIONS(1160), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_var] = ACTIONS(1160), - [anon_sym_covariant] = ACTIONS(1160), - [anon_sym_Function] = ACTIONS(1160), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_new] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_final] = ACTIONS(1160), - [anon_sym_external] = ACTIONS(1160), - [anon_sym_this] = ACTIONS(1160), + [932] = { + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1349), + [sym_decimal_integer_literal] = ACTIONS(1351), + [sym_hex_integer_literal] = ACTIONS(1351), + [sym_octal_integer_literal] = ACTIONS(1349), + [sym_binary_integer_literal] = ACTIONS(1349), + [sym_decimal_floating_point_literal] = ACTIONS(1349), + [sym_hex_floating_point_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1349), + [anon_sym_r] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_QMARK_QMARK] = ACTIONS(1349), + [anon_sym_QMARK] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [sym_equality_operator] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_LT_LT] = ACTIONS(1349), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_GT_GT_GT] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1349), + [anon_sym_TILDE_SLASH] = ACTIONS(1349), + [sym_increment_operator] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_is] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_super] = ACTIONS(1351), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_covariant] = ACTIONS(1351), + [anon_sym_Function] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_final] = ACTIONS(1351), + [anon_sym_external] = ACTIONS(1351), + [anon_sym_this] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, - [894] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1344), - [sym_decimal_integer_literal] = ACTIONS(1346), - [sym_hex_integer_literal] = ACTIONS(1346), - [sym_octal_integer_literal] = ACTIONS(1344), - [sym_binary_integer_literal] = ACTIONS(1344), - [sym_decimal_floating_point_literal] = ACTIONS(1344), - [sym_hex_floating_point_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1344), - [anon_sym_r] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_throw] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_QMARK_QMARK] = ACTIONS(1344), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [sym_equality_operator] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1344), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_GT_GT_GT] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1344), - [anon_sym_TILDE_SLASH] = ACTIONS(1344), - [sym_increment_operator] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_await] = ACTIONS(1346), - [anon_sym_is] = ACTIONS(1346), - [anon_sym_as] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1344), - [anon_sym_assert] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_abstract] = ACTIONS(1346), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_super] = ACTIONS(1346), - [anon_sym_void] = ACTIONS(1346), - [anon_sym_var] = ACTIONS(1346), - [anon_sym_covariant] = ACTIONS(1346), - [anon_sym_Function] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_final] = ACTIONS(1346), - [anon_sym_external] = ACTIONS(1346), - [anon_sym_this] = ACTIONS(1346), + [933] = { + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1355), + [anon_sym_POUND] = ACTIONS(1353), + [sym_decimal_integer_literal] = ACTIONS(1355), + [sym_hex_integer_literal] = ACTIONS(1355), + [sym_octal_integer_literal] = ACTIONS(1353), + [sym_binary_integer_literal] = ACTIONS(1353), + [sym_decimal_floating_point_literal] = ACTIONS(1353), + [sym_hex_floating_point_literal] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1353), + [anon_sym_r] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_throw] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_QMARK_QMARK] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [sym_equality_operator] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(1353), + [anon_sym_GT_GT] = ACTIONS(1355), + [anon_sym_GT_GT_GT] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1353), + [anon_sym_TILDE_SLASH] = ACTIONS(1353), + [sym_increment_operator] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_is] = ACTIONS(1355), + [anon_sym_as] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_class] = ACTIONS(1355), + [anon_sym_super] = ACTIONS(1355), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_covariant] = ACTIONS(1355), + [anon_sym_Function] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_new] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_final] = ACTIONS(1355), + [anon_sym_external] = ACTIONS(1355), + [anon_sym_this] = ACTIONS(1355), [sym_comment] = ACTIONS(3), }, - [895] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_POUND] = ACTIONS(1232), - [sym_decimal_integer_literal] = ACTIONS(1234), - [sym_hex_integer_literal] = ACTIONS(1234), - [sym_octal_integer_literal] = ACTIONS(1232), - [sym_binary_integer_literal] = ACTIONS(1232), - [sym_decimal_floating_point_literal] = ACTIONS(1232), - [sym_hex_floating_point_literal] = ACTIONS(1234), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1232), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1232), - [anon_sym_r] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_RBRACK] = ACTIONS(1232), - [anon_sym_COLON] = ACTIONS(1232), - [anon_sym_null] = ACTIONS(1234), - [anon_sym_throw] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1232), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [sym_increment_operator] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1232), - [anon_sym_await] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_QMARK_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_assert] = ACTIONS(1234), - [anon_sym_switch] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_AT] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_abstract] = ACTIONS(1234), - [anon_sym_class] = ACTIONS(1234), - [anon_sym_super] = ACTIONS(1234), - [anon_sym_void] = ACTIONS(1234), - [anon_sym_var] = ACTIONS(1234), - [anon_sym_covariant] = ACTIONS(1234), - [anon_sym_Function] = ACTIONS(1234), - [anon_sym_get] = ACTIONS(1234), - [anon_sym_set] = ACTIONS(1234), - [anon_sym_new] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_final] = ACTIONS(1234), - [anon_sym_external] = ACTIONS(1234), - [anon_sym_this] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), + [934] = { + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(1523), + [sym_decimal_integer_literal] = ACTIONS(1525), + [sym_hex_integer_literal] = ACTIONS(1525), + [sym_octal_integer_literal] = ACTIONS(1523), + [sym_binary_integer_literal] = ACTIONS(1523), + [sym_decimal_floating_point_literal] = ACTIONS(1523), + [sym_hex_floating_point_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1523), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1523), + [anon_sym_r] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_throw] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_QMARK_QMARK] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [sym_equality_operator] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_GT_GT_GT] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_TILDE_SLASH] = ACTIONS(1523), + [sym_increment_operator] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_is] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_abstract] = ACTIONS(1525), + [anon_sym_class] = ACTIONS(1525), + [anon_sym_super] = ACTIONS(1525), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_covariant] = ACTIONS(1525), + [anon_sym_Function] = ACTIONS(1525), + [anon_sym_get] = ACTIONS(1525), + [anon_sym_set] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_final] = ACTIONS(1525), + [anon_sym_external] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1525), [sym_comment] = ACTIONS(3), }, - [896] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1280), - [sym_decimal_integer_literal] = ACTIONS(1282), - [sym_hex_integer_literal] = ACTIONS(1282), - [sym_octal_integer_literal] = ACTIONS(1280), - [sym_binary_integer_literal] = ACTIONS(1280), - [sym_decimal_floating_point_literal] = ACTIONS(1280), - [sym_hex_floating_point_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1280), - [anon_sym_r] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1280), - [anon_sym_COLON] = ACTIONS(1280), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_throw] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_AMP_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1280), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [sym_increment_operator] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_await] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_QMARK_DOT] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_assert] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_abstract] = ACTIONS(1282), - [anon_sym_class] = ACTIONS(1282), - [anon_sym_super] = ACTIONS(1282), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_var] = ACTIONS(1282), - [anon_sym_covariant] = ACTIONS(1282), - [anon_sym_Function] = ACTIONS(1282), - [anon_sym_get] = ACTIONS(1282), - [anon_sym_set] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_final] = ACTIONS(1282), - [anon_sym_external] = ACTIONS(1282), - [anon_sym_this] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1280), + [935] = { + [ts_builtin_sym_end] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(1579), + [sym_decimal_integer_literal] = ACTIONS(1581), + [sym_hex_integer_literal] = ACTIONS(1581), + [sym_octal_integer_literal] = ACTIONS(1579), + [sym_binary_integer_literal] = ACTIONS(1579), + [sym_decimal_floating_point_literal] = ACTIONS(1579), + [sym_hex_floating_point_literal] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [anon_sym_SQUOTE] = ACTIONS(1581), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1579), + [anon_sym_r] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(1579), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_throw] = ACTIONS(1581), + [anon_sym_EQ] = ACTIONS(1579), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_AMP_EQ] = ACTIONS(1579), + [anon_sym_PIPE_EQ] = ACTIONS(1579), + [anon_sym_CARET_EQ] = ACTIONS(1579), + [anon_sym_PERCENT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [sym_increment_operator] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1581), + [anon_sym_QMARK_DOT] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_yield] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_AT] = ACTIONS(1579), + [anon_sym_enum] = ACTIONS(1581), + [anon_sym_abstract] = ACTIONS(1581), + [anon_sym_class] = ACTIONS(1581), + [anon_sym_super] = ACTIONS(1581), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_covariant] = ACTIONS(1581), + [anon_sym_Function] = ACTIONS(1581), + [anon_sym_get] = ACTIONS(1581), + [anon_sym_set] = ACTIONS(1581), + [anon_sym_new] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_final] = ACTIONS(1581), + [anon_sym_external] = ACTIONS(1581), + [anon_sym_this] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), [sym_comment] = ACTIONS(3), }, - [897] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [sym_decimal_integer_literal] = ACTIONS(1164), - [sym_hex_integer_literal] = ACTIONS(1164), - [sym_octal_integer_literal] = ACTIONS(1162), - [sym_binary_integer_literal] = ACTIONS(1162), - [sym_decimal_floating_point_literal] = ACTIONS(1162), - [sym_hex_floating_point_literal] = ACTIONS(1164), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1162), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1162), - [anon_sym_r] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_COMMA] = ACTIONS(1162), - [anon_sym_null] = ACTIONS(1164), - [anon_sym_throw] = ACTIONS(1164), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_QMARK_QMARK] = ACTIONS(1162), - [anon_sym_QMARK] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [sym_equality_operator] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_GT] = ACTIONS(1164), - [anon_sym_GT_EQ] = ACTIONS(1162), - [anon_sym_LT_EQ] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_CARET] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1162), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_GT_GT_GT] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_SLASH] = ACTIONS(1164), - [anon_sym_PERCENT] = ACTIONS(1162), - [anon_sym_TILDE_SLASH] = ACTIONS(1162), - [sym_increment_operator] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_is] = ACTIONS(1164), - [anon_sym_as] = ACTIONS(1164), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_assert] = ACTIONS(1164), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_AT] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_abstract] = ACTIONS(1164), - [anon_sym_class] = ACTIONS(1164), - [anon_sym_super] = ACTIONS(1164), - [anon_sym_void] = ACTIONS(1164), - [anon_sym_var] = ACTIONS(1164), - [anon_sym_covariant] = ACTIONS(1164), - [anon_sym_Function] = ACTIONS(1164), - [anon_sym_get] = ACTIONS(1164), - [anon_sym_set] = ACTIONS(1164), - [anon_sym_new] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_final] = ACTIONS(1164), - [anon_sym_external] = ACTIONS(1164), - [anon_sym_this] = ACTIONS(1164), + [936] = { + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1469), + [sym_decimal_integer_literal] = ACTIONS(1471), + [sym_hex_integer_literal] = ACTIONS(1471), + [sym_octal_integer_literal] = ACTIONS(1469), + [sym_binary_integer_literal] = ACTIONS(1469), + [sym_decimal_floating_point_literal] = ACTIONS(1469), + [sym_hex_floating_point_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1469), + [anon_sym_r] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_QMARK_QMARK] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [sym_equality_operator] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_GT_GT_GT] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_TILDE_SLASH] = ACTIONS(1469), + [sym_increment_operator] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_is] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_super] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_covariant] = ACTIONS(1471), + [anon_sym_Function] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_final] = ACTIONS(1471), + [anon_sym_external] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1471), [sym_comment] = ACTIONS(3), }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1483), - [sym_decimal_integer_literal] = ACTIONS(1485), - [sym_hex_integer_literal] = ACTIONS(1485), - [sym_octal_integer_literal] = ACTIONS(1483), - [sym_binary_integer_literal] = ACTIONS(1483), - [sym_decimal_floating_point_literal] = ACTIONS(1483), - [sym_hex_floating_point_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1483), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1483), - [anon_sym_r] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_throw] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_QMARK_QMARK] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [sym_equality_operator] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_GT_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_TILDE_SLASH] = ACTIONS(1483), - [sym_increment_operator] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_await] = ACTIONS(1485), - [anon_sym_is] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1485), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1485), - [anon_sym_switch] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_abstract] = ACTIONS(1485), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_super] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1485), - [anon_sym_var] = ACTIONS(1485), - [anon_sym_covariant] = ACTIONS(1485), - [anon_sym_Function] = ACTIONS(1485), - [anon_sym_get] = ACTIONS(1485), - [anon_sym_set] = ACTIONS(1485), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_final] = ACTIONS(1485), - [anon_sym_external] = ACTIONS(1485), - [anon_sym_this] = ACTIONS(1485), + [937] = { + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1477), + [sym_decimal_integer_literal] = ACTIONS(1479), + [sym_hex_integer_literal] = ACTIONS(1479), + [sym_octal_integer_literal] = ACTIONS(1477), + [sym_binary_integer_literal] = ACTIONS(1477), + [sym_decimal_floating_point_literal] = ACTIONS(1477), + [sym_hex_floating_point_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1477), + [anon_sym_r] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_QMARK_QMARK] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [sym_equality_operator] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_GT_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_TILDE_SLASH] = ACTIONS(1477), + [sym_increment_operator] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1479), + [anon_sym_is] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_abstract] = ACTIONS(1479), + [anon_sym_class] = ACTIONS(1479), + [anon_sym_super] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1479), + [anon_sym_var] = ACTIONS(1479), + [anon_sym_covariant] = ACTIONS(1479), + [anon_sym_Function] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_final] = ACTIONS(1479), + [anon_sym_external] = ACTIONS(1479), + [anon_sym_this] = ACTIONS(1479), [sym_comment] = ACTIONS(3), }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(1284), - [sym_decimal_integer_literal] = ACTIONS(1286), - [sym_hex_integer_literal] = ACTIONS(1286), - [sym_octal_integer_literal] = ACTIONS(1284), - [sym_binary_integer_literal] = ACTIONS(1284), - [sym_decimal_floating_point_literal] = ACTIONS(1284), - [sym_hex_floating_point_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1284), - [anon_sym_r] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_RBRACK] = ACTIONS(1284), - [anon_sym_COLON] = ACTIONS(1284), - [anon_sym_null] = ACTIONS(1286), - [anon_sym_throw] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [sym_increment_operator] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_await] = ACTIONS(1286), - [anon_sym_DOT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(1284), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_assert] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_AT] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_abstract] = ACTIONS(1286), - [anon_sym_class] = ACTIONS(1286), - [anon_sym_super] = ACTIONS(1286), - [anon_sym_void] = ACTIONS(1286), - [anon_sym_var] = ACTIONS(1286), - [anon_sym_covariant] = ACTIONS(1286), - [anon_sym_Function] = ACTIONS(1286), - [anon_sym_get] = ACTIONS(1286), - [anon_sym_set] = ACTIONS(1286), - [anon_sym_new] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_final] = ACTIONS(1286), - [anon_sym_external] = ACTIONS(1286), - [anon_sym_this] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1284), + [938] = { + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1265), + [sym_decimal_integer_literal] = ACTIONS(1267), + [sym_hex_integer_literal] = ACTIONS(1267), + [sym_octal_integer_literal] = ACTIONS(1265), + [sym_binary_integer_literal] = ACTIONS(1265), + [sym_decimal_floating_point_literal] = ACTIONS(1265), + [sym_hex_floating_point_literal] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1265), + [anon_sym_r] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1267), + [anon_sym_throw] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [sym_increment_operator] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_await] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_QMARK_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1265), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_abstract] = ACTIONS(1267), + [anon_sym_class] = ACTIONS(1267), + [anon_sym_super] = ACTIONS(1267), + [anon_sym_void] = ACTIONS(1267), + [anon_sym_var] = ACTIONS(1267), + [anon_sym_covariant] = ACTIONS(1267), + [anon_sym_Function] = ACTIONS(1267), + [anon_sym_get] = ACTIONS(1267), + [anon_sym_set] = ACTIONS(1267), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_final] = ACTIONS(1267), + [anon_sym_external] = ACTIONS(1267), + [anon_sym_this] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1265), [sym_comment] = ACTIONS(3), }, - [900] = { + [939] = { + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1421), + [sym_decimal_integer_literal] = ACTIONS(1423), + [sym_hex_integer_literal] = ACTIONS(1423), + [sym_octal_integer_literal] = ACTIONS(1421), + [sym_binary_integer_literal] = ACTIONS(1421), + [sym_decimal_floating_point_literal] = ACTIONS(1421), + [sym_hex_floating_point_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1421), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1421), + [anon_sym_r] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_throw] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [sym_increment_operator] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_await] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_QMARK_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_else] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_AT] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1423), + [anon_sym_abstract] = ACTIONS(1423), + [anon_sym_class] = ACTIONS(1423), + [anon_sym_super] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_covariant] = ACTIONS(1423), + [anon_sym_Function] = ACTIONS(1423), + [anon_sym_get] = ACTIONS(1423), + [anon_sym_set] = ACTIONS(1423), + [anon_sym_new] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_final] = ACTIONS(1423), + [anon_sym_external] = ACTIONS(1423), + [anon_sym_this] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), + }, + [940] = { [ts_builtin_sym_end] = ACTIONS(1224), [sym_identifier] = ACTIONS(1226), [anon_sym_POUND] = ACTIONS(1224), @@ -95581,2889 +100562,1593 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1226), [anon_sym_return] = ACTIONS(1226), [anon_sym_try] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_AT] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_abstract] = ACTIONS(1226), - [anon_sym_class] = ACTIONS(1226), - [anon_sym_super] = ACTIONS(1226), - [anon_sym_void] = ACTIONS(1226), - [anon_sym_var] = ACTIONS(1226), - [anon_sym_covariant] = ACTIONS(1226), - [anon_sym_Function] = ACTIONS(1226), - [anon_sym_get] = ACTIONS(1226), - [anon_sym_set] = ACTIONS(1226), - [anon_sym_new] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_final] = ACTIONS(1226), - [anon_sym_external] = ACTIONS(1226), - [anon_sym_this] = ACTIONS(1226), - [sym_comment] = ACTIONS(3), - }, - [901] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(1220), - [sym_decimal_integer_literal] = ACTIONS(1222), - [sym_hex_integer_literal] = ACTIONS(1222), - [sym_octal_integer_literal] = ACTIONS(1220), - [sym_binary_integer_literal] = ACTIONS(1220), - [sym_decimal_floating_point_literal] = ACTIONS(1220), - [sym_hex_floating_point_literal] = ACTIONS(1222), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1220), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1220), - [anon_sym_r] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1220), - [anon_sym_RBRACK] = ACTIONS(1220), - [anon_sym_COLON] = ACTIONS(1220), - [anon_sym_null] = ACTIONS(1222), - [anon_sym_throw] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_AMP_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1220), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_GT_EQ] = ACTIONS(1220), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1220), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [sym_increment_operator] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_TILDE] = ACTIONS(1220), - [anon_sym_await] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_QMARK_DOT] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1222), - [anon_sym_switch] = ACTIONS(1222), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_abstract] = ACTIONS(1222), - [anon_sym_class] = ACTIONS(1222), - [anon_sym_super] = ACTIONS(1222), - [anon_sym_void] = ACTIONS(1222), - [anon_sym_var] = ACTIONS(1222), - [anon_sym_covariant] = ACTIONS(1222), - [anon_sym_Function] = ACTIONS(1222), - [anon_sym_get] = ACTIONS(1222), - [anon_sym_set] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_final] = ACTIONS(1222), - [anon_sym_external] = ACTIONS(1222), - [anon_sym_this] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [sym_decimal_integer_literal] = ACTIONS(1306), - [sym_hex_integer_literal] = ACTIONS(1306), - [sym_octal_integer_literal] = ACTIONS(1304), - [sym_binary_integer_literal] = ACTIONS(1304), - [sym_decimal_floating_point_literal] = ACTIONS(1304), - [sym_hex_floating_point_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1304), - [anon_sym_r] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_null] = ACTIONS(1306), - [anon_sym_throw] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_QMARK_QMARK] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [sym_equality_operator] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_GT_GT_GT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1306), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_TILDE_SLASH] = ACTIONS(1304), - [sym_increment_operator] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_await] = ACTIONS(1306), - [anon_sym_is] = ACTIONS(1306), - [anon_sym_as] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_assert] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_try] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_abstract] = ACTIONS(1306), - [anon_sym_class] = ACTIONS(1306), - [anon_sym_super] = ACTIONS(1306), - [anon_sym_void] = ACTIONS(1306), - [anon_sym_var] = ACTIONS(1306), - [anon_sym_covariant] = ACTIONS(1306), - [anon_sym_Function] = ACTIONS(1306), - [anon_sym_get] = ACTIONS(1306), - [anon_sym_set] = ACTIONS(1306), - [anon_sym_new] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_final] = ACTIONS(1306), - [anon_sym_external] = ACTIONS(1306), - [anon_sym_this] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [903] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1364), - [sym_decimal_integer_literal] = ACTIONS(1366), - [sym_hex_integer_literal] = ACTIONS(1366), - [sym_octal_integer_literal] = ACTIONS(1364), - [sym_binary_integer_literal] = ACTIONS(1364), - [sym_decimal_floating_point_literal] = ACTIONS(1364), - [sym_hex_floating_point_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1364), - [anon_sym_r] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_null] = ACTIONS(1366), - [anon_sym_throw] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_QMARK_QMARK] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [sym_equality_operator] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1366), - [anon_sym_GT_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1366), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_TILDE_SLASH] = ACTIONS(1364), - [sym_increment_operator] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_await] = ACTIONS(1366), - [anon_sym_is] = ACTIONS(1366), - [anon_sym_as] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_assert] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_try] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_AT] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_abstract] = ACTIONS(1366), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_super] = ACTIONS(1366), - [anon_sym_void] = ACTIONS(1366), - [anon_sym_var] = ACTIONS(1366), - [anon_sym_covariant] = ACTIONS(1366), - [anon_sym_Function] = ACTIONS(1366), - [anon_sym_get] = ACTIONS(1366), - [anon_sym_set] = ACTIONS(1366), - [anon_sym_new] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_final] = ACTIONS(1366), - [anon_sym_external] = ACTIONS(1366), - [anon_sym_this] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - }, - [904] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1384), - [sym_decimal_integer_literal] = ACTIONS(1386), - [sym_hex_integer_literal] = ACTIONS(1386), - [sym_octal_integer_literal] = ACTIONS(1384), - [sym_binary_integer_literal] = ACTIONS(1384), - [sym_decimal_floating_point_literal] = ACTIONS(1384), - [sym_hex_floating_point_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1384), - [anon_sym_r] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_throw] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [sym_equality_operator] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1384), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_GT_GT_GT] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1384), - [anon_sym_TILDE_SLASH] = ACTIONS(1384), - [sym_increment_operator] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_await] = ACTIONS(1386), - [anon_sym_is] = ACTIONS(1386), - [anon_sym_as] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_try] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_abstract] = ACTIONS(1386), - [anon_sym_class] = ACTIONS(1386), - [anon_sym_super] = ACTIONS(1386), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_covariant] = ACTIONS(1386), - [anon_sym_Function] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [anon_sym_new] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_final] = ACTIONS(1386), - [anon_sym_external] = ACTIONS(1386), - [anon_sym_this] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [905] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1254), - [anon_sym_POUND] = ACTIONS(1252), - [sym_decimal_integer_literal] = ACTIONS(1254), - [sym_hex_integer_literal] = ACTIONS(1254), - [sym_octal_integer_literal] = ACTIONS(1252), - [sym_binary_integer_literal] = ACTIONS(1252), - [sym_decimal_floating_point_literal] = ACTIONS(1252), - [sym_hex_floating_point_literal] = ACTIONS(1254), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1252), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1252), - [anon_sym_r] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_RBRACK] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_null] = ACTIONS(1254), - [anon_sym_throw] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_AMP_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1252), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [sym_increment_operator] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1252), - [anon_sym_await] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_QMARK_DOT] = ACTIONS(1252), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_assert] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1254), - [anon_sym_do] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_yield] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_abstract] = ACTIONS(1254), - [anon_sym_class] = ACTIONS(1254), - [anon_sym_super] = ACTIONS(1254), - [anon_sym_void] = ACTIONS(1254), - [anon_sym_var] = ACTIONS(1254), - [anon_sym_covariant] = ACTIONS(1254), - [anon_sym_Function] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_new] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_final] = ACTIONS(1254), - [anon_sym_external] = ACTIONS(1254), - [anon_sym_this] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [906] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_POUND] = ACTIONS(1244), - [sym_decimal_integer_literal] = ACTIONS(1246), - [sym_hex_integer_literal] = ACTIONS(1246), - [sym_octal_integer_literal] = ACTIONS(1244), - [sym_binary_integer_literal] = ACTIONS(1244), - [sym_decimal_floating_point_literal] = ACTIONS(1244), - [sym_hex_floating_point_literal] = ACTIONS(1246), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1244), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1244), - [anon_sym_r] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_COLON] = ACTIONS(1244), - [anon_sym_null] = ACTIONS(1246), - [anon_sym_throw] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [sym_increment_operator] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1244), - [anon_sym_await] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_QMARK_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_assert] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1246), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_abstract] = ACTIONS(1246), - [anon_sym_class] = ACTIONS(1246), - [anon_sym_super] = ACTIONS(1246), - [anon_sym_void] = ACTIONS(1246), - [anon_sym_var] = ACTIONS(1246), - [anon_sym_covariant] = ACTIONS(1246), - [anon_sym_Function] = ACTIONS(1246), - [anon_sym_get] = ACTIONS(1246), - [anon_sym_set] = ACTIONS(1246), - [anon_sym_new] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_final] = ACTIONS(1246), - [anon_sym_external] = ACTIONS(1246), - [anon_sym_this] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), - }, - [907] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), - [anon_sym_POUND] = ACTIONS(1272), - [sym_decimal_integer_literal] = ACTIONS(1274), - [sym_hex_integer_literal] = ACTIONS(1274), - [sym_octal_integer_literal] = ACTIONS(1272), - [sym_binary_integer_literal] = ACTIONS(1272), - [sym_decimal_floating_point_literal] = ACTIONS(1272), - [sym_hex_floating_point_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1272), - [anon_sym_r] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RBRACK] = ACTIONS(1272), - [anon_sym_COLON] = ACTIONS(1272), - [anon_sym_null] = ACTIONS(1274), - [anon_sym_throw] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [sym_increment_operator] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_await] = ACTIONS(1274), - [anon_sym_DOT] = ACTIONS(1274), - [anon_sym_QMARK_DOT] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_assert] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_AT] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_abstract] = ACTIONS(1274), - [anon_sym_class] = ACTIONS(1274), - [anon_sym_super] = ACTIONS(1274), - [anon_sym_void] = ACTIONS(1274), - [anon_sym_var] = ACTIONS(1274), - [anon_sym_covariant] = ACTIONS(1274), - [anon_sym_Function] = ACTIONS(1274), - [anon_sym_get] = ACTIONS(1274), - [anon_sym_set] = ACTIONS(1274), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_final] = ACTIONS(1274), - [anon_sym_external] = ACTIONS(1274), - [anon_sym_this] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [908] = { - [sym__assignment_operator] = STATE(431), - [sym__cascade_subsection] = STATE(915), - [sym__cascade_assignment_section] = STATE(1063), - [sym_unconditional_assignable_selector] = STATE(871), - [sym_assignable_selector] = STATE(913), - [aux_sym_cascade_section_repeat1] = STATE(915), - [ts_builtin_sym_end] = ACTIONS(807), - [sym_identifier] = ACTIONS(809), - [anon_sym_POUND] = ACTIONS(807), - [sym_decimal_integer_literal] = ACTIONS(809), - [sym_hex_integer_literal] = ACTIONS(809), - [sym_octal_integer_literal] = ACTIONS(807), - [sym_binary_integer_literal] = ACTIONS(807), - [sym_decimal_floating_point_literal] = ACTIONS(807), - [sym_hex_floating_point_literal] = ACTIONS(809), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(807), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(807), - [anon_sym_r] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_null] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [sym_increment_operator] = ACTIONS(807), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_TILDE] = ACTIONS(807), - [anon_sym_await] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_assert] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_try] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(807), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_class] = ACTIONS(809), - [anon_sym_super] = ACTIONS(809), - [anon_sym_void] = ACTIONS(809), - [anon_sym_var] = ACTIONS(809), - [anon_sym_covariant] = ACTIONS(809), - [anon_sym_Function] = ACTIONS(809), - [anon_sym_get] = ACTIONS(809), - [anon_sym_set] = ACTIONS(809), - [anon_sym_new] = ACTIONS(809), - [anon_sym_const] = ACTIONS(809), - [anon_sym_final] = ACTIONS(809), - [anon_sym_external] = ACTIONS(809), - [anon_sym_this] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - }, - [909] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(1300), - [sym_decimal_integer_literal] = ACTIONS(1302), - [sym_hex_integer_literal] = ACTIONS(1302), - [sym_octal_integer_literal] = ACTIONS(1300), - [sym_binary_integer_literal] = ACTIONS(1300), - [sym_decimal_floating_point_literal] = ACTIONS(1300), - [sym_hex_floating_point_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1300), - [anon_sym_r] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_COLON] = ACTIONS(1300), - [anon_sym_null] = ACTIONS(1302), - [anon_sym_throw] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1300), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_AMP_EQ] = ACTIONS(1300), - [anon_sym_PIPE_EQ] = ACTIONS(1300), - [anon_sym_CARET_EQ] = ACTIONS(1300), - [anon_sym_PERCENT_EQ] = ACTIONS(1300), - [anon_sym_LT_LT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1300), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [sym_increment_operator] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_await] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_QMARK_DOT] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_assert] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_abstract] = ACTIONS(1302), - [anon_sym_class] = ACTIONS(1302), - [anon_sym_super] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1302), - [anon_sym_var] = ACTIONS(1302), - [anon_sym_covariant] = ACTIONS(1302), - [anon_sym_Function] = ACTIONS(1302), - [anon_sym_get] = ACTIONS(1302), - [anon_sym_set] = ACTIONS(1302), - [anon_sym_new] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_final] = ACTIONS(1302), - [anon_sym_external] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [910] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_identifier] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1471), - [sym_decimal_integer_literal] = ACTIONS(1473), - [sym_hex_integer_literal] = ACTIONS(1473), - [sym_octal_integer_literal] = ACTIONS(1471), - [sym_binary_integer_literal] = ACTIONS(1471), - [sym_decimal_floating_point_literal] = ACTIONS(1471), - [sym_hex_floating_point_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1471), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1471), - [anon_sym_r] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1473), - [anon_sym_throw] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_QMARK_QMARK] = ACTIONS(1471), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_PIPE_PIPE] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1471), - [sym_equality_operator] = ACTIONS(1471), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1471), - [anon_sym_LT_EQ] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_GT_GT_GT] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PERCENT] = ACTIONS(1471), - [anon_sym_TILDE_SLASH] = ACTIONS(1471), - [sym_increment_operator] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_is] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1473), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_yield] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_abstract] = ACTIONS(1473), - [anon_sym_class] = ACTIONS(1473), - [anon_sym_super] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1473), - [anon_sym_covariant] = ACTIONS(1473), - [anon_sym_Function] = ACTIONS(1473), - [anon_sym_get] = ACTIONS(1473), - [anon_sym_set] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_final] = ACTIONS(1473), - [anon_sym_external] = ACTIONS(1473), - [anon_sym_this] = ACTIONS(1473), - [sym_comment] = ACTIONS(3), - }, - [911] = { - [sym__assignment_operator] = STATE(431), - [sym__cascade_subsection] = STATE(915), - [sym__cascade_assignment_section] = STATE(1055), - [sym_unconditional_assignable_selector] = STATE(871), - [sym_assignable_selector] = STATE(913), - [aux_sym_cascade_section_repeat1] = STATE(915), - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(637), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(637), - [anon_sym_r] = ACTIONS(639), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_COMMA] = ACTIONS(637), - [anon_sym_null] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(2077), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [anon_sym_AMP_EQ] = ACTIONS(2077), - [anon_sym_PIPE_EQ] = ACTIONS(2077), - [anon_sym_CARET_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_LT_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2077), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [sym_increment_operator] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_await] = ACTIONS(639), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_QMARK_DOT] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(637), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_super] = ACTIONS(639), - [anon_sym_void] = ACTIONS(639), - [anon_sym_var] = ACTIONS(639), - [anon_sym_covariant] = ACTIONS(639), - [anon_sym_Function] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), - [anon_sym_new] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_external] = ACTIONS(639), - [anon_sym_this] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - }, - [912] = { - [sym_arguments] = STATE(890), - [sym_argument_part] = STATE(721), - [sym_type_arguments] = STATE(3516), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(847), - [sym_identifier] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(847), - [sym_decimal_integer_literal] = ACTIONS(849), - [sym_hex_integer_literal] = ACTIONS(849), - [sym_octal_integer_literal] = ACTIONS(847), - [sym_binary_integer_literal] = ACTIONS(847), - [sym_decimal_floating_point_literal] = ACTIONS(847), - [sym_hex_floating_point_literal] = ACTIONS(849), - [anon_sym_true] = ACTIONS(849), - [anon_sym_false] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(847), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(847), - [anon_sym_r] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_null] = ACTIONS(849), - [anon_sym_throw] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(847), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(849), - [sym_increment_operator] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_await] = ACTIONS(849), - [anon_sym_DOT] = ACTIONS(849), - [anon_sym_QMARK_DOT] = ACTIONS(847), - [anon_sym_DOT_DOT] = ACTIONS(847), - [anon_sym_assert] = ACTIONS(849), - [anon_sym_switch] = ACTIONS(849), - [anon_sym_do] = ACTIONS(849), - [anon_sym_while] = ACTIONS(849), - [anon_sym_break] = ACTIONS(849), - [anon_sym_continue] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(849), - [anon_sym_return] = ACTIONS(849), - [anon_sym_try] = ACTIONS(849), - [anon_sym_if] = ACTIONS(849), - [anon_sym_for] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(849), - [anon_sym_class] = ACTIONS(849), - [anon_sym_super] = ACTIONS(849), - [anon_sym_void] = ACTIONS(849), - [anon_sym_var] = ACTIONS(849), - [anon_sym_covariant] = ACTIONS(849), - [anon_sym_Function] = ACTIONS(849), - [anon_sym_get] = ACTIONS(849), - [anon_sym_set] = ACTIONS(849), - [anon_sym_new] = ACTIONS(849), - [anon_sym_const] = ACTIONS(849), - [anon_sym_final] = ACTIONS(849), - [anon_sym_external] = ACTIONS(849), - [anon_sym_this] = ACTIONS(849), - [sym_comment] = ACTIONS(3), - }, - [913] = { - [sym_arguments] = STATE(890), - [sym_argument_part] = STATE(912), - [sym_type_arguments] = STATE(3516), - [sym__type_args] = STATE(1911), - [aux_sym_assignable_selector_part_repeat1] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(811), - [sym_identifier] = ACTIONS(813), - [anon_sym_POUND] = ACTIONS(811), - [sym_decimal_integer_literal] = ACTIONS(813), - [sym_hex_integer_literal] = ACTIONS(813), - [sym_octal_integer_literal] = ACTIONS(811), - [sym_binary_integer_literal] = ACTIONS(811), - [sym_decimal_floating_point_literal] = ACTIONS(811), - [sym_hex_floating_point_literal] = ACTIONS(813), - [anon_sym_true] = ACTIONS(813), - [anon_sym_false] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(813), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(811), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(811), - [anon_sym_r] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_null] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_PLUS_EQ] = ACTIONS(811), - [anon_sym_DASH_EQ] = ACTIONS(811), - [anon_sym_STAR_EQ] = ACTIONS(811), - [anon_sym_SLASH_EQ] = ACTIONS(811), - [anon_sym_AMP_EQ] = ACTIONS(811), - [anon_sym_PIPE_EQ] = ACTIONS(811), - [anon_sym_CARET_EQ] = ACTIONS(811), - [anon_sym_PERCENT_EQ] = ACTIONS(811), - [anon_sym_LT_LT_EQ] = ACTIONS(811), - [anon_sym_GT_GT_EQ] = ACTIONS(811), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(811), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(813), - [sym_increment_operator] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_await] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_QMARK_DOT] = ACTIONS(811), - [anon_sym_DOT_DOT] = ACTIONS(811), - [anon_sym_assert] = ACTIONS(813), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_do] = ACTIONS(813), - [anon_sym_while] = ACTIONS(813), - [anon_sym_break] = ACTIONS(813), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_yield] = ACTIONS(813), - [anon_sym_return] = ACTIONS(813), - [anon_sym_try] = ACTIONS(813), - [anon_sym_if] = ACTIONS(813), - [anon_sym_for] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_enum] = ACTIONS(813), - [anon_sym_abstract] = ACTIONS(813), - [anon_sym_class] = ACTIONS(813), - [anon_sym_super] = ACTIONS(813), - [anon_sym_void] = ACTIONS(813), - [anon_sym_var] = ACTIONS(813), - [anon_sym_covariant] = ACTIONS(813), - [anon_sym_Function] = ACTIONS(813), - [anon_sym_get] = ACTIONS(813), - [anon_sym_set] = ACTIONS(813), - [anon_sym_new] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_final] = ACTIONS(813), - [anon_sym_external] = ACTIONS(813), - [anon_sym_this] = ACTIONS(813), - [sym_comment] = ACTIONS(3), - }, - [914] = { - [aux_sym__function_type_tails] = STATE(914), - [sym__function_type_tail] = STATE(914), - [sym__function_builtin_identifier] = STATE(3066), - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(976), - [sym_decimal_integer_literal] = ACTIONS(978), - [sym_hex_integer_literal] = ACTIONS(978), - [sym_octal_integer_literal] = ACTIONS(976), - [sym_binary_integer_literal] = ACTIONS(976), - [sym_decimal_floating_point_literal] = ACTIONS(976), - [sym_hex_floating_point_literal] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(976), - [anon_sym_r] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_null] = ACTIONS(978), - [anon_sym_throw] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_QMARK_QMARK] = ACTIONS(976), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(976), - [sym_equality_operator] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(978), - [anon_sym_GT_GT_GT] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_TILDE_SLASH] = ACTIONS(976), - [sym_increment_operator] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_await] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_assert] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_yield] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_try] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_abstract] = ACTIONS(978), - [anon_sym_class] = ACTIONS(978), - [anon_sym_super] = ACTIONS(978), - [anon_sym_void] = ACTIONS(978), - [anon_sym_var] = ACTIONS(978), - [anon_sym_covariant] = ACTIONS(978), - [anon_sym_Function] = ACTIONS(2165), - [anon_sym_get] = ACTIONS(978), - [anon_sym_set] = ACTIONS(978), - [anon_sym_new] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_final] = ACTIONS(978), - [anon_sym_external] = ACTIONS(978), - [anon_sym_this] = ACTIONS(978), - [sym_comment] = ACTIONS(3), - }, - [915] = { - [sym__cascade_subsection] = STATE(915), - [sym_unconditional_assignable_selector] = STATE(871), - [sym_assignable_selector] = STATE(913), - [aux_sym_cascade_section_repeat1] = STATE(915), - [ts_builtin_sym_end] = ACTIONS(889), - [sym_identifier] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(889), - [sym_decimal_integer_literal] = ACTIONS(891), - [sym_hex_integer_literal] = ACTIONS(891), - [sym_octal_integer_literal] = ACTIONS(889), - [sym_binary_integer_literal] = ACTIONS(889), - [sym_decimal_floating_point_literal] = ACTIONS(889), - [sym_hex_floating_point_literal] = ACTIONS(891), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(891), - [anon_sym_SQUOTE] = ACTIONS(891), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(889), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(889), - [anon_sym_r] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_null] = ACTIONS(891), - [anon_sym_throw] = ACTIONS(891), - [anon_sym_EQ] = ACTIONS(889), - [anon_sym_PLUS_EQ] = ACTIONS(889), - [anon_sym_DASH_EQ] = ACTIONS(889), - [anon_sym_STAR_EQ] = ACTIONS(889), - [anon_sym_SLASH_EQ] = ACTIONS(889), - [anon_sym_AMP_EQ] = ACTIONS(889), - [anon_sym_PIPE_EQ] = ACTIONS(889), - [anon_sym_CARET_EQ] = ACTIONS(889), - [anon_sym_PERCENT_EQ] = ACTIONS(889), - [anon_sym_LT_LT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(889), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [sym_increment_operator] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(889), - [anon_sym_await] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(2171), - [anon_sym_QMARK_DOT] = ACTIONS(2174), - [anon_sym_DOT_DOT] = ACTIONS(889), - [anon_sym_assert] = ACTIONS(891), - [anon_sym_switch] = ACTIONS(891), - [anon_sym_do] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_yield] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_try] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_AT] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_abstract] = ACTIONS(891), - [anon_sym_class] = ACTIONS(891), - [anon_sym_super] = ACTIONS(891), - [anon_sym_void] = ACTIONS(891), - [anon_sym_var] = ACTIONS(891), - [anon_sym_covariant] = ACTIONS(891), - [anon_sym_Function] = ACTIONS(891), - [anon_sym_get] = ACTIONS(891), - [anon_sym_set] = ACTIONS(891), - [anon_sym_new] = ACTIONS(891), - [anon_sym_const] = ACTIONS(891), - [anon_sym_final] = ACTIONS(891), - [anon_sym_external] = ACTIONS(891), - [anon_sym_this] = ACTIONS(891), - [sym_comment] = ACTIONS(3), - }, - [916] = { - [aux_sym__function_type_tails] = STATE(914), - [sym__function_type_tail] = STATE(914), - [sym__function_builtin_identifier] = STATE(3066), - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(972), - [sym_decimal_integer_literal] = ACTIONS(974), - [sym_hex_integer_literal] = ACTIONS(974), - [sym_octal_integer_literal] = ACTIONS(972), - [sym_binary_integer_literal] = ACTIONS(972), - [sym_decimal_floating_point_literal] = ACTIONS(972), - [sym_hex_floating_point_literal] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(972), - [anon_sym_r] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_null] = ACTIONS(974), - [anon_sym_throw] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_QMARK_QMARK] = ACTIONS(972), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [sym_equality_operator] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_GT_GT_GT] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(972), - [anon_sym_TILDE_SLASH] = ACTIONS(972), - [sym_increment_operator] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_await] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_assert] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_yield] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_try] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_AT] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_abstract] = ACTIONS(974), - [anon_sym_class] = ACTIONS(974), - [anon_sym_super] = ACTIONS(974), - [anon_sym_void] = ACTIONS(974), - [anon_sym_var] = ACTIONS(974), - [anon_sym_covariant] = ACTIONS(974), - [anon_sym_Function] = ACTIONS(2177), - [anon_sym_get] = ACTIONS(974), - [anon_sym_set] = ACTIONS(974), - [anon_sym_new] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_final] = ACTIONS(974), - [anon_sym_external] = ACTIONS(974), - [anon_sym_this] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - }, - [917] = { - [aux_sym__function_type_tails] = STATE(914), - [sym__function_type_tail] = STATE(914), - [sym__function_builtin_identifier] = STATE(3066), - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(966), - [sym_decimal_integer_literal] = ACTIONS(968), - [sym_hex_integer_literal] = ACTIONS(968), - [sym_octal_integer_literal] = ACTIONS(966), - [sym_binary_integer_literal] = ACTIONS(966), - [sym_decimal_floating_point_literal] = ACTIONS(966), - [sym_hex_floating_point_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(966), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(966), - [anon_sym_r] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_null] = ACTIONS(968), - [anon_sym_throw] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_QMARK_QMARK] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(966), - [sym_equality_operator] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(968), - [anon_sym_GT_GT_GT] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_TILDE_SLASH] = ACTIONS(966), - [sym_increment_operator] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_await] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_assert] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_abstract] = ACTIONS(968), - [anon_sym_class] = ACTIONS(968), - [anon_sym_super] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_var] = ACTIONS(968), - [anon_sym_covariant] = ACTIONS(968), - [anon_sym_Function] = ACTIONS(2177), - [anon_sym_get] = ACTIONS(968), - [anon_sym_set] = ACTIONS(968), - [anon_sym_new] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_final] = ACTIONS(968), - [anon_sym_external] = ACTIONS(968), - [anon_sym_this] = ACTIONS(968), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_abstract] = ACTIONS(1226), + [anon_sym_class] = ACTIONS(1226), + [anon_sym_super] = ACTIONS(1226), + [anon_sym_void] = ACTIONS(1226), + [anon_sym_var] = ACTIONS(1226), + [anon_sym_covariant] = ACTIONS(1226), + [anon_sym_Function] = ACTIONS(1228), + [anon_sym_get] = ACTIONS(1226), + [anon_sym_set] = ACTIONS(1226), + [anon_sym_new] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_final] = ACTIONS(1226), + [anon_sym_external] = ACTIONS(1226), + [anon_sym_this] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, - [918] = { - [sym_type_parameters] = STATE(3385), - [sym_parameter_type_list] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(983), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(983), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(983), - [anon_sym_r] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_null] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_QMARK_QMARK] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [sym_equality_operator] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_GT_GT_GT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_TILDE_SLASH] = ACTIONS(983), - [sym_increment_operator] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_super] = ACTIONS(985), - [anon_sym_void] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_covariant] = ACTIONS(985), - [anon_sym_Function] = ACTIONS(985), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(985), - [anon_sym_new] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_external] = ACTIONS(985), - [anon_sym_this] = ACTIONS(985), + [941] = { + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(1437), + [sym_decimal_integer_literal] = ACTIONS(1439), + [sym_hex_integer_literal] = ACTIONS(1439), + [sym_octal_integer_literal] = ACTIONS(1437), + [sym_binary_integer_literal] = ACTIONS(1437), + [sym_decimal_floating_point_literal] = ACTIONS(1437), + [sym_hex_floating_point_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1437), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1437), + [anon_sym_r] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [anon_sym_RBRACK] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1439), + [anon_sym_throw] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_AMP_EQ] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1437), + [anon_sym_CARET_EQ] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1437), + [anon_sym_LT_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [sym_increment_operator] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_TILDE] = ACTIONS(1437), + [anon_sym_await] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_QMARK_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1439), + [anon_sym_switch] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_AT] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_abstract] = ACTIONS(1439), + [anon_sym_class] = ACTIONS(1439), + [anon_sym_super] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1439), + [anon_sym_var] = ACTIONS(1439), + [anon_sym_covariant] = ACTIONS(1439), + [anon_sym_Function] = ACTIONS(1439), + [anon_sym_get] = ACTIONS(1439), + [anon_sym_set] = ACTIONS(1439), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_final] = ACTIONS(1439), + [anon_sym_external] = ACTIONS(1439), + [anon_sym_this] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), [sym_comment] = ACTIONS(3), }, - [919] = { - [sym_type_arguments] = STATE(945), - [sym__type_args] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(983), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(983), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(983), - [anon_sym_r] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_null] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_QMARK_QMARK] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [sym_equality_operator] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_GT_GT_GT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_TILDE_SLASH] = ACTIONS(983), - [sym_increment_operator] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_super] = ACTIONS(985), - [anon_sym_void] = ACTIONS(985), - [anon_sym_var] = ACTIONS(985), - [anon_sym_covariant] = ACTIONS(985), - [anon_sym_Function] = ACTIONS(985), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(985), - [anon_sym_new] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_external] = ACTIONS(985), - [anon_sym_this] = ACTIONS(985), + [942] = { + [ts_builtin_sym_end] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1577), + [anon_sym_POUND] = ACTIONS(1575), + [sym_decimal_integer_literal] = ACTIONS(1577), + [sym_hex_integer_literal] = ACTIONS(1577), + [sym_octal_integer_literal] = ACTIONS(1575), + [sym_binary_integer_literal] = ACTIONS(1575), + [sym_decimal_floating_point_literal] = ACTIONS(1575), + [sym_hex_floating_point_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1575), + [anon_sym_r] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_throw] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_QMARK_QMARK] = ACTIONS(1575), + [anon_sym_QMARK] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1575), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [sym_equality_operator] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_EQ] = ACTIONS(1575), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(1577), + [anon_sym_GT_GT_GT] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1577), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_TILDE_SLASH] = ACTIONS(1575), + [sym_increment_operator] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1577), + [anon_sym_is] = ACTIONS(1577), + [anon_sym_as] = ACTIONS(1577), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_yield] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_try] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_abstract] = ACTIONS(1577), + [anon_sym_class] = ACTIONS(1577), + [anon_sym_super] = ACTIONS(1577), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_covariant] = ACTIONS(1577), + [anon_sym_Function] = ACTIONS(1577), + [anon_sym_get] = ACTIONS(1577), + [anon_sym_set] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_final] = ACTIONS(1577), + [anon_sym_external] = ACTIONS(1577), + [anon_sym_this] = ACTIONS(1577), [sym_comment] = ACTIONS(3), }, - [920] = { - [sym__type_dot_identifier] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(1058), - [sym_decimal_integer_literal] = ACTIONS(1060), - [sym_hex_integer_literal] = ACTIONS(1060), - [sym_octal_integer_literal] = ACTIONS(1058), - [sym_binary_integer_literal] = ACTIONS(1058), - [sym_decimal_floating_point_literal] = ACTIONS(1058), - [sym_hex_floating_point_literal] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1058), - [anon_sym_r] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1060), - [anon_sym_throw] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_QMARK_QMARK] = ACTIONS(1058), - [anon_sym_QMARK] = ACTIONS(1060), - [anon_sym_PIPE_PIPE] = ACTIONS(1058), - [anon_sym_AMP_AMP] = ACTIONS(1058), - [sym_equality_operator] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_CARET] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_LT_LT] = ACTIONS(1058), - [anon_sym_GT_GT] = ACTIONS(1060), - [anon_sym_GT_GT_GT] = ACTIONS(1058), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_SLASH] = ACTIONS(1060), - [anon_sym_PERCENT] = ACTIONS(1058), - [anon_sym_TILDE_SLASH] = ACTIONS(1058), - [sym_increment_operator] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_await] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DOT_DOT] = ACTIONS(1058), - [anon_sym_assert] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_yield] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(1058), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_abstract] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1060), - [anon_sym_super] = ACTIONS(1060), - [anon_sym_void] = ACTIONS(1060), - [anon_sym_var] = ACTIONS(1060), - [anon_sym_covariant] = ACTIONS(1060), - [anon_sym_Function] = ACTIONS(1060), - [anon_sym_get] = ACTIONS(1060), - [anon_sym_set] = ACTIONS(1060), - [anon_sym_new] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_final] = ACTIONS(1060), - [anon_sym_external] = ACTIONS(1060), - [anon_sym_this] = ACTIONS(1060), + [943] = { + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1245), + [sym_decimal_integer_literal] = ACTIONS(1247), + [sym_hex_integer_literal] = ACTIONS(1247), + [sym_octal_integer_literal] = ACTIONS(1245), + [sym_binary_integer_literal] = ACTIONS(1245), + [sym_decimal_floating_point_literal] = ACTIONS(1245), + [sym_hex_floating_point_literal] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1245), + [anon_sym_r] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1247), + [anon_sym_throw] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_QMARK_QMARK] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [sym_equality_operator] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_GT_GT_GT] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1245), + [anon_sym_TILDE_SLASH] = ACTIONS(1245), + [sym_increment_operator] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_await] = ACTIONS(1247), + [anon_sym_is] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_assert] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_abstract] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_super] = ACTIONS(1247), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_var] = ACTIONS(1247), + [anon_sym_covariant] = ACTIONS(1247), + [anon_sym_Function] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(1247), + [anon_sym_set] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_final] = ACTIONS(1247), + [anon_sym_external] = ACTIONS(1247), + [anon_sym_this] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [921] = { - [aux_sym_logical_and_expression_repeat1] = STATE(924), - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1085), - [anon_sym_POUND] = ACTIONS(1083), - [sym_decimal_integer_literal] = ACTIONS(1085), - [sym_hex_integer_literal] = ACTIONS(1085), - [sym_octal_integer_literal] = ACTIONS(1083), - [sym_binary_integer_literal] = ACTIONS(1083), - [sym_decimal_floating_point_literal] = ACTIONS(1083), - [sym_hex_floating_point_literal] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1085), - [anon_sym_false] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), - [anon_sym_r] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1083), - [anon_sym_COMMA] = ACTIONS(1083), - [anon_sym_null] = ACTIONS(1085), - [anon_sym_throw] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_QMARK_QMARK] = ACTIONS(1083), - [anon_sym_QMARK] = ACTIONS(1085), - [anon_sym_PIPE_PIPE] = ACTIONS(1083), - [anon_sym_AMP_AMP] = ACTIONS(1083), - [sym_equality_operator] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1085), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1085), - [anon_sym_LT_LT] = ACTIONS(1083), - [anon_sym_GT_GT] = ACTIONS(1085), - [anon_sym_GT_GT_GT] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_STAR] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(1085), - [anon_sym_PERCENT] = ACTIONS(1083), - [anon_sym_TILDE_SLASH] = ACTIONS(1083), - [sym_increment_operator] = ACTIONS(1083), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_await] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1083), - [anon_sym_assert] = ACTIONS(1085), - [anon_sym_switch] = ACTIONS(1085), - [anon_sym_do] = ACTIONS(1085), - [anon_sym_while] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1085), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_yield] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1085), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_abstract] = ACTIONS(1085), - [anon_sym_class] = ACTIONS(1085), - [anon_sym_super] = ACTIONS(1085), - [anon_sym_void] = ACTIONS(1085), - [anon_sym_var] = ACTIONS(1085), - [anon_sym_covariant] = ACTIONS(1085), - [anon_sym_Function] = ACTIONS(1085), - [anon_sym_get] = ACTIONS(1085), - [anon_sym_set] = ACTIONS(1085), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1085), - [anon_sym_final] = ACTIONS(1085), - [anon_sym_external] = ACTIONS(1085), - [anon_sym_this] = ACTIONS(1085), + [944] = { + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(1555), + [sym_decimal_integer_literal] = ACTIONS(1557), + [sym_hex_integer_literal] = ACTIONS(1557), + [sym_octal_integer_literal] = ACTIONS(1555), + [sym_binary_integer_literal] = ACTIONS(1555), + [sym_decimal_floating_point_literal] = ACTIONS(1555), + [sym_hex_floating_point_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1555), + [anon_sym_r] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_COMMA] = ACTIONS(1555), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_QMARK_QMARK] = ACTIONS(1555), + [anon_sym_QMARK] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [sym_equality_operator] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_GT_GT_GT] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_TILDE_SLASH] = ACTIONS(1555), + [sym_increment_operator] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1557), + [anon_sym_is] = ACTIONS(1557), + [anon_sym_as] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_yield] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_AT] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1557), + [anon_sym_super] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_covariant] = ACTIONS(1557), + [anon_sym_Function] = ACTIONS(1557), + [anon_sym_get] = ACTIONS(1557), + [anon_sym_set] = ACTIONS(1557), + [anon_sym_new] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_final] = ACTIONS(1557), + [anon_sym_external] = ACTIONS(1557), + [anon_sym_this] = ACTIONS(1557), [sym_comment] = ACTIONS(3), }, - [922] = { - [aux_sym_logical_or_expression_repeat1] = STATE(925), - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1089), - [anon_sym_POUND] = ACTIONS(1087), - [sym_decimal_integer_literal] = ACTIONS(1089), - [sym_hex_integer_literal] = ACTIONS(1089), - [sym_octal_integer_literal] = ACTIONS(1087), - [sym_binary_integer_literal] = ACTIONS(1087), - [sym_decimal_floating_point_literal] = ACTIONS(1087), - [sym_hex_floating_point_literal] = ACTIONS(1089), - [anon_sym_true] = ACTIONS(1089), - [anon_sym_false] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1087), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1087), - [anon_sym_r] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_COMMA] = ACTIONS(1087), - [anon_sym_null] = ACTIONS(1089), - [anon_sym_throw] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_QMARK_QMARK] = ACTIONS(1087), - [anon_sym_QMARK] = ACTIONS(1089), - [anon_sym_PIPE_PIPE] = ACTIONS(1087), - [anon_sym_AMP_AMP] = ACTIONS(1087), - [sym_equality_operator] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_PIPE] = ACTIONS(1089), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_LT_LT] = ACTIONS(1087), - [anon_sym_GT_GT] = ACTIONS(1089), - [anon_sym_GT_GT_GT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1089), - [anon_sym_PERCENT] = ACTIONS(1087), - [anon_sym_TILDE_SLASH] = ACTIONS(1087), - [sym_increment_operator] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_await] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1087), - [anon_sym_assert] = ACTIONS(1089), - [anon_sym_switch] = ACTIONS(1089), - [anon_sym_do] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1089), - [anon_sym_break] = ACTIONS(1089), - [anon_sym_continue] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1089), - [anon_sym_return] = ACTIONS(1089), - [anon_sym_try] = ACTIONS(1089), - [anon_sym_if] = ACTIONS(1089), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1089), - [anon_sym_abstract] = ACTIONS(1089), - [anon_sym_class] = ACTIONS(1089), - [anon_sym_super] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1089), - [anon_sym_var] = ACTIONS(1089), - [anon_sym_covariant] = ACTIONS(1089), - [anon_sym_Function] = ACTIONS(1089), - [anon_sym_get] = ACTIONS(1089), - [anon_sym_set] = ACTIONS(1089), - [anon_sym_new] = ACTIONS(1089), - [anon_sym_const] = ACTIONS(1089), - [anon_sym_final] = ACTIONS(1089), - [anon_sym_external] = ACTIONS(1089), - [anon_sym_this] = ACTIONS(1089), + [945] = { + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(1591), + [sym_decimal_integer_literal] = ACTIONS(1593), + [sym_hex_integer_literal] = ACTIONS(1593), + [sym_octal_integer_literal] = ACTIONS(1591), + [sym_binary_integer_literal] = ACTIONS(1591), + [sym_decimal_floating_point_literal] = ACTIONS(1591), + [sym_hex_floating_point_literal] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1591), + [anon_sym_r] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_COMMA] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_throw] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_QMARK_QMARK] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_PIPE_PIPE] = ACTIONS(1591), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [sym_equality_operator] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_GT] = ACTIONS(1593), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1593), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT_LT] = ACTIONS(1591), + [anon_sym_GT_GT] = ACTIONS(1593), + [anon_sym_GT_GT_GT] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PERCENT] = ACTIONS(1591), + [anon_sym_TILDE_SLASH] = ACTIONS(1591), + [sym_increment_operator] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1593), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_is] = ACTIONS(1593), + [anon_sym_as] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1591), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1591), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_abstract] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_super] = ACTIONS(1593), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_covariant] = ACTIONS(1593), + [anon_sym_Function] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_final] = ACTIONS(1593), + [anon_sym_external] = ACTIONS(1593), + [anon_sym_this] = ACTIONS(1593), [sym_comment] = ACTIONS(3), }, - [923] = { - [aux_sym__if_null_expression] = STATE(926), - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_identifier] = ACTIONS(1097), - [anon_sym_POUND] = ACTIONS(1095), - [sym_decimal_integer_literal] = ACTIONS(1097), - [sym_hex_integer_literal] = ACTIONS(1097), - [sym_octal_integer_literal] = ACTIONS(1095), - [sym_binary_integer_literal] = ACTIONS(1095), - [sym_decimal_floating_point_literal] = ACTIONS(1095), - [sym_hex_floating_point_literal] = ACTIONS(1097), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_SQUOTE] = ACTIONS(1097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1095), - [anon_sym_r] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_null] = ACTIONS(1097), - [anon_sym_throw] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_QMARK_QMARK] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(1097), - [anon_sym_PIPE_PIPE] = ACTIONS(1095), - [anon_sym_AMP_AMP] = ACTIONS(1095), - [sym_equality_operator] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1097), - [anon_sym_LT_LT] = ACTIONS(1095), - [anon_sym_GT_GT] = ACTIONS(1097), - [anon_sym_GT_GT_GT] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_PERCENT] = ACTIONS(1095), - [anon_sym_TILDE_SLASH] = ACTIONS(1095), - [sym_increment_operator] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_await] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1095), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_switch] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1097), - [anon_sym_continue] = ACTIONS(1097), - [anon_sym_yield] = ACTIONS(1097), - [anon_sym_return] = ACTIONS(1097), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_AT] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1097), - [anon_sym_abstract] = ACTIONS(1097), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_super] = ACTIONS(1097), - [anon_sym_void] = ACTIONS(1097), - [anon_sym_var] = ACTIONS(1097), - [anon_sym_covariant] = ACTIONS(1097), - [anon_sym_Function] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_new] = ACTIONS(1097), - [anon_sym_const] = ACTIONS(1097), - [anon_sym_final] = ACTIONS(1097), - [anon_sym_external] = ACTIONS(1097), - [anon_sym_this] = ACTIONS(1097), + [946] = { + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1245), + [sym_decimal_integer_literal] = ACTIONS(1247), + [sym_hex_integer_literal] = ACTIONS(1247), + [sym_octal_integer_literal] = ACTIONS(1245), + [sym_binary_integer_literal] = ACTIONS(1245), + [sym_decimal_floating_point_literal] = ACTIONS(1245), + [sym_hex_floating_point_literal] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1245), + [anon_sym_r] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_null] = ACTIONS(1247), + [anon_sym_throw] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_QMARK_QMARK] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [sym_equality_operator] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_GT_GT_GT] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1245), + [anon_sym_TILDE_SLASH] = ACTIONS(1245), + [sym_increment_operator] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_await] = ACTIONS(1247), + [anon_sym_is] = ACTIONS(1407), + [anon_sym_as] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_assert] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_abstract] = ACTIONS(1247), + [anon_sym_class] = ACTIONS(1247), + [anon_sym_super] = ACTIONS(1247), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_var] = ACTIONS(1247), + [anon_sym_covariant] = ACTIONS(1247), + [anon_sym_Function] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(1247), + [anon_sym_set] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_final] = ACTIONS(1247), + [anon_sym_external] = ACTIONS(1247), + [anon_sym_this] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [924] = { - [aux_sym_logical_and_expression_repeat1] = STATE(924), - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(584), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), - [anon_sym_r] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_null] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [sym_equality_operator] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_GT_GT_GT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_TILDE_SLASH] = ACTIONS(584), - [sym_increment_operator] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_await] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_super] = ACTIONS(586), - [anon_sym_void] = ACTIONS(586), - [anon_sym_var] = ACTIONS(586), - [anon_sym_covariant] = ACTIONS(586), - [anon_sym_Function] = ACTIONS(586), - [anon_sym_get] = ACTIONS(586), - [anon_sym_set] = ACTIONS(586), - [anon_sym_new] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_external] = ACTIONS(586), - [anon_sym_this] = ACTIONS(586), + [947] = { + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(1551), + [sym_decimal_integer_literal] = ACTIONS(1553), + [sym_hex_integer_literal] = ACTIONS(1553), + [sym_octal_integer_literal] = ACTIONS(1551), + [sym_binary_integer_literal] = ACTIONS(1551), + [sym_decimal_floating_point_literal] = ACTIONS(1551), + [sym_hex_floating_point_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1551), + [anon_sym_r] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_QMARK_QMARK] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [sym_equality_operator] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_GT_GT_GT] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_TILDE_SLASH] = ACTIONS(1551), + [sym_increment_operator] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1553), + [anon_sym_is] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_abstract] = ACTIONS(1553), + [anon_sym_class] = ACTIONS(1553), + [anon_sym_super] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_covariant] = ACTIONS(1553), + [anon_sym_Function] = ACTIONS(1553), + [anon_sym_get] = ACTIONS(1553), + [anon_sym_set] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_final] = ACTIONS(1553), + [anon_sym_external] = ACTIONS(1553), + [anon_sym_this] = ACTIONS(1553), [sym_comment] = ACTIONS(3), }, - [925] = { - [aux_sym_logical_or_expression_repeat1] = STATE(925), - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [sym_decimal_integer_literal] = ACTIONS(590), - [sym_hex_integer_literal] = ACTIONS(590), - [sym_octal_integer_literal] = ACTIONS(588), - [sym_binary_integer_literal] = ACTIONS(588), - [sym_decimal_floating_point_literal] = ACTIONS(588), - [sym_hex_floating_point_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), - [anon_sym_r] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_null] = ACTIONS(590), - [anon_sym_throw] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_QMARK_QMARK] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(588), - [sym_equality_operator] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_GT_GT_GT] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_TILDE_SLASH] = ACTIONS(588), - [sym_increment_operator] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_switch] = ACTIONS(590), - [anon_sym_do] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_try] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_AT] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_abstract] = ACTIONS(590), - [anon_sym_class] = ACTIONS(590), - [anon_sym_super] = ACTIONS(590), - [anon_sym_void] = ACTIONS(590), - [anon_sym_var] = ACTIONS(590), - [anon_sym_covariant] = ACTIONS(590), - [anon_sym_Function] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), - [anon_sym_new] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_final] = ACTIONS(590), - [anon_sym_external] = ACTIONS(590), - [anon_sym_this] = ACTIONS(590), + [948] = { + [sym_arguments] = STATE(905), + [sym_argument_part] = STATE(949), + [sym_type_arguments] = STATE(3447), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(949), + [ts_builtin_sym_end] = ACTIONS(981), + [sym_identifier] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(981), + [sym_decimal_integer_literal] = ACTIONS(983), + [sym_hex_integer_literal] = ACTIONS(983), + [sym_octal_integer_literal] = ACTIONS(981), + [sym_binary_integer_literal] = ACTIONS(981), + [sym_decimal_floating_point_literal] = ACTIONS(981), + [sym_hex_floating_point_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(983), + [anon_sym_false] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(981), + [anon_sym_r] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_null] = ACTIONS(983), + [anon_sym_throw] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_STAR_EQ] = ACTIONS(981), + [anon_sym_SLASH_EQ] = ACTIONS(981), + [anon_sym_AMP_EQ] = ACTIONS(981), + [anon_sym_PIPE_EQ] = ACTIONS(981), + [anon_sym_CARET_EQ] = ACTIONS(981), + [anon_sym_PERCENT_EQ] = ACTIONS(981), + [anon_sym_LT_LT_EQ] = ACTIONS(981), + [anon_sym_GT_GT_EQ] = ACTIONS(981), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(981), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(983), + [sym_increment_operator] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_await] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_QMARK_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_assert] = ACTIONS(983), + [anon_sym_switch] = ACTIONS(983), + [anon_sym_do] = ACTIONS(983), + [anon_sym_while] = ACTIONS(983), + [anon_sym_break] = ACTIONS(983), + [anon_sym_continue] = ACTIONS(983), + [anon_sym_yield] = ACTIONS(983), + [anon_sym_return] = ACTIONS(983), + [anon_sym_try] = ACTIONS(983), + [anon_sym_if] = ACTIONS(983), + [anon_sym_for] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(983), + [anon_sym_abstract] = ACTIONS(983), + [anon_sym_class] = ACTIONS(983), + [anon_sym_super] = ACTIONS(983), + [anon_sym_void] = ACTIONS(983), + [anon_sym_var] = ACTIONS(983), + [anon_sym_covariant] = ACTIONS(983), + [anon_sym_Function] = ACTIONS(983), + [anon_sym_get] = ACTIONS(983), + [anon_sym_set] = ACTIONS(983), + [anon_sym_new] = ACTIONS(983), + [anon_sym_const] = ACTIONS(983), + [anon_sym_final] = ACTIONS(983), + [anon_sym_external] = ACTIONS(983), + [anon_sym_this] = ACTIONS(983), [sym_comment] = ACTIONS(3), }, - [926] = { - [aux_sym__if_null_expression] = STATE(926), - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [anon_sym_POUND] = ACTIONS(1105), - [sym_decimal_integer_literal] = ACTIONS(1107), - [sym_hex_integer_literal] = ACTIONS(1107), - [sym_octal_integer_literal] = ACTIONS(1105), - [sym_binary_integer_literal] = ACTIONS(1105), - [sym_decimal_floating_point_literal] = ACTIONS(1105), - [sym_hex_floating_point_literal] = ACTIONS(1107), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1107), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1105), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_r] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_null] = ACTIONS(1107), - [anon_sym_throw] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_QMARK_QMARK] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(1107), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [sym_equality_operator] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_GT_GT_GT] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_TILDE_SLASH] = ACTIONS(1105), - [sym_increment_operator] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(1107), - [anon_sym_DOT_DOT] = ACTIONS(1105), - [anon_sym_assert] = ACTIONS(1107), - [anon_sym_switch] = ACTIONS(1107), - [anon_sym_do] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_abstract] = ACTIONS(1107), - [anon_sym_class] = ACTIONS(1107), - [anon_sym_super] = ACTIONS(1107), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_covariant] = ACTIONS(1107), - [anon_sym_Function] = ACTIONS(1107), - [anon_sym_get] = ACTIONS(1107), - [anon_sym_set] = ACTIONS(1107), - [anon_sym_new] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_final] = ACTIONS(1107), - [anon_sym_external] = ACTIONS(1107), - [anon_sym_this] = ACTIONS(1107), + [949] = { + [sym_arguments] = STATE(905), + [sym_argument_part] = STATE(754), + [sym_type_arguments] = STATE(3447), + [sym__type_args] = STATE(2492), + [aux_sym_assignable_selector_part_repeat1] = STATE(754), + [ts_builtin_sym_end] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(971), + [sym_decimal_integer_literal] = ACTIONS(973), + [sym_hex_integer_literal] = ACTIONS(973), + [sym_octal_integer_literal] = ACTIONS(971), + [sym_binary_integer_literal] = ACTIONS(971), + [sym_decimal_floating_point_literal] = ACTIONS(971), + [sym_hex_floating_point_literal] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(971), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(971), + [anon_sym_r] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_null] = ACTIONS(973), + [anon_sym_throw] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_AMP_EQ] = ACTIONS(971), + [anon_sym_PIPE_EQ] = ACTIONS(971), + [anon_sym_CARET_EQ] = ACTIONS(971), + [anon_sym_PERCENT_EQ] = ACTIONS(971), + [anon_sym_LT_LT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(971), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(973), + [sym_increment_operator] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_await] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_QMARK_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_assert] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_try] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(971), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_abstract] = ACTIONS(973), + [anon_sym_class] = ACTIONS(973), + [anon_sym_super] = ACTIONS(973), + [anon_sym_void] = ACTIONS(973), + [anon_sym_var] = ACTIONS(973), + [anon_sym_covariant] = ACTIONS(973), + [anon_sym_Function] = ACTIONS(973), + [anon_sym_get] = ACTIONS(973), + [anon_sym_set] = ACTIONS(973), + [anon_sym_new] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_final] = ACTIONS(973), + [anon_sym_external] = ACTIONS(973), + [anon_sym_this] = ACTIONS(973), [sym_comment] = ACTIONS(3), }, - [927] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [sym_decimal_integer_literal] = ACTIONS(1136), - [sym_hex_integer_literal] = ACTIONS(1136), - [sym_octal_integer_literal] = ACTIONS(1134), - [sym_binary_integer_literal] = ACTIONS(1134), - [sym_decimal_floating_point_literal] = ACTIONS(1134), - [sym_hex_floating_point_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1136), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1134), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1134), - [anon_sym_r] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_null] = ACTIONS(1136), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_QMARK_QMARK] = ACTIONS(1134), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1134), - [sym_equality_operator] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_GT_GT_GT] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1136), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_TILDE_SLASH] = ACTIONS(1134), - [sym_increment_operator] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(1136), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_assert] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_abstract] = ACTIONS(1136), - [anon_sym_class] = ACTIONS(1136), - [anon_sym_super] = ACTIONS(1136), - [anon_sym_void] = ACTIONS(1136), - [anon_sym_var] = ACTIONS(1136), - [anon_sym_covariant] = ACTIONS(1136), - [anon_sym_Function] = ACTIONS(1136), - [anon_sym_get] = ACTIONS(1136), - [anon_sym_set] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1136), - [anon_sym_const] = ACTIONS(1136), - [anon_sym_final] = ACTIONS(1136), - [anon_sym_external] = ACTIONS(1136), - [anon_sym_this] = ACTIONS(1136), + [950] = { + [sym__cascade_subsection] = STATE(950), + [sym_unconditional_assignable_selector] = STATE(939), + [sym_assignable_selector] = STATE(948), + [aux_sym_cascade_section_repeat1] = STATE(950), + [ts_builtin_sym_end] = ACTIONS(1017), + [sym_identifier] = ACTIONS(1019), + [anon_sym_POUND] = ACTIONS(1017), + [sym_decimal_integer_literal] = ACTIONS(1019), + [sym_hex_integer_literal] = ACTIONS(1019), + [sym_octal_integer_literal] = ACTIONS(1017), + [sym_binary_integer_literal] = ACTIONS(1017), + [sym_decimal_floating_point_literal] = ACTIONS(1017), + [sym_hex_floating_point_literal] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1017), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1017), + [anon_sym_r] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1019), + [anon_sym_throw] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [sym_increment_operator] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1017), + [anon_sym_await] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(2240), + [anon_sym_QMARK_DOT] = ACTIONS(2243), + [anon_sym_DOT_DOT] = ACTIONS(1017), + [anon_sym_assert] = ACTIONS(1019), + [anon_sym_switch] = ACTIONS(1019), + [anon_sym_do] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_yield] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_try] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(1017), + [anon_sym_enum] = ACTIONS(1019), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_class] = ACTIONS(1019), + [anon_sym_super] = ACTIONS(1019), + [anon_sym_void] = ACTIONS(1019), + [anon_sym_var] = ACTIONS(1019), + [anon_sym_covariant] = ACTIONS(1019), + [anon_sym_Function] = ACTIONS(1019), + [anon_sym_get] = ACTIONS(1019), + [anon_sym_set] = ACTIONS(1019), + [anon_sym_new] = ACTIONS(1019), + [anon_sym_const] = ACTIONS(1019), + [anon_sym_final] = ACTIONS(1019), + [anon_sym_external] = ACTIONS(1019), + [anon_sym_this] = ACTIONS(1019), [sym_comment] = ACTIONS(3), }, - [928] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [sym_decimal_integer_literal] = ACTIONS(1164), - [sym_hex_integer_literal] = ACTIONS(1164), - [sym_octal_integer_literal] = ACTIONS(1162), - [sym_binary_integer_literal] = ACTIONS(1162), - [sym_decimal_floating_point_literal] = ACTIONS(1162), - [sym_hex_floating_point_literal] = ACTIONS(1164), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1162), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1162), - [anon_sym_r] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_COMMA] = ACTIONS(1162), - [anon_sym_null] = ACTIONS(1164), - [anon_sym_throw] = ACTIONS(1164), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_QMARK_QMARK] = ACTIONS(1162), - [anon_sym_QMARK] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1162), - [anon_sym_AMP_AMP] = ACTIONS(1162), - [sym_equality_operator] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_CARET] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1162), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_GT_GT_GT] = ACTIONS(1162), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_SLASH] = ACTIONS(1164), - [anon_sym_PERCENT] = ACTIONS(1162), - [anon_sym_TILDE_SLASH] = ACTIONS(1162), - [sym_increment_operator] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1164), - [anon_sym_await] = ACTIONS(1164), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_assert] = ACTIONS(1164), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_AT] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_abstract] = ACTIONS(1164), - [anon_sym_class] = ACTIONS(1164), - [anon_sym_super] = ACTIONS(1164), - [anon_sym_void] = ACTIONS(1164), - [anon_sym_var] = ACTIONS(1164), - [anon_sym_covariant] = ACTIONS(1164), - [anon_sym_Function] = ACTIONS(1164), - [anon_sym_get] = ACTIONS(1164), - [anon_sym_set] = ACTIONS(1164), - [anon_sym_new] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_final] = ACTIONS(1164), - [anon_sym_external] = ACTIONS(1164), - [anon_sym_this] = ACTIONS(1164), + [951] = { + [aux_sym__function_type_tails] = STATE(953), + [sym__function_type_tail] = STATE(953), + [sym__function_builtin_identifier] = STATE(3095), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1045), + [anon_sym_POUND] = ACTIONS(1043), + [sym_decimal_integer_literal] = ACTIONS(1045), + [sym_hex_integer_literal] = ACTIONS(1045), + [sym_octal_integer_literal] = ACTIONS(1043), + [sym_binary_integer_literal] = ACTIONS(1043), + [sym_decimal_floating_point_literal] = ACTIONS(1043), + [sym_hex_floating_point_literal] = ACTIONS(1045), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1045), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1043), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1043), + [anon_sym_r] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_null] = ACTIONS(1045), + [anon_sym_throw] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_QMARK_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [sym_equality_operator] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1043), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_GT_GT_GT] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1043), + [anon_sym_TILDE_SLASH] = ACTIONS(1043), + [sym_increment_operator] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1043), + [anon_sym_assert] = ACTIONS(1045), + [anon_sym_switch] = ACTIONS(1045), + [anon_sym_do] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_abstract] = ACTIONS(1045), + [anon_sym_class] = ACTIONS(1045), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_void] = ACTIONS(1045), + [anon_sym_var] = ACTIONS(1045), + [anon_sym_covariant] = ACTIONS(1045), + [anon_sym_Function] = ACTIONS(2246), + [anon_sym_get] = ACTIONS(1045), + [anon_sym_set] = ACTIONS(1045), + [anon_sym_new] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_final] = ACTIONS(1045), + [anon_sym_external] = ACTIONS(1045), + [anon_sym_this] = ACTIONS(1045), [sym_comment] = ACTIONS(3), }, - [929] = { - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_identifier] = ACTIONS(1122), - [anon_sym_POUND] = ACTIONS(1120), - [sym_decimal_integer_literal] = ACTIONS(1122), - [sym_hex_integer_literal] = ACTIONS(1122), - [sym_octal_integer_literal] = ACTIONS(1120), - [sym_binary_integer_literal] = ACTIONS(1120), - [sym_decimal_floating_point_literal] = ACTIONS(1120), - [sym_hex_floating_point_literal] = ACTIONS(1122), - [anon_sym_true] = ACTIONS(1122), - [anon_sym_false] = ACTIONS(1122), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_DQUOTE] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1120), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1120), - [anon_sym_r] = ACTIONS(1122), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_COMMA] = ACTIONS(1120), - [anon_sym_null] = ACTIONS(1122), - [anon_sym_throw] = ACTIONS(1122), - [anon_sym_LPAREN] = ACTIONS(1120), - [anon_sym_QMARK_QMARK] = ACTIONS(1120), - [anon_sym_QMARK] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1120), - [anon_sym_AMP_AMP] = ACTIONS(1120), - [sym_equality_operator] = ACTIONS(1120), - [anon_sym_LT] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_CARET] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_GT_GT_GT] = ACTIONS(1120), - [anon_sym_PLUS] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1122), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_SLASH] = ACTIONS(1122), - [anon_sym_PERCENT] = ACTIONS(1120), - [anon_sym_TILDE_SLASH] = ACTIONS(1120), - [sym_increment_operator] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_TILDE] = ACTIONS(1122), - [anon_sym_await] = ACTIONS(1122), - [anon_sym_DOT_DOT] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_yield] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_try] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_AT] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_abstract] = ACTIONS(1122), - [anon_sym_class] = ACTIONS(1122), - [anon_sym_super] = ACTIONS(1122), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_var] = ACTIONS(1122), - [anon_sym_covariant] = ACTIONS(1122), - [anon_sym_Function] = ACTIONS(1122), - [anon_sym_get] = ACTIONS(1122), - [anon_sym_set] = ACTIONS(1122), - [anon_sym_new] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_final] = ACTIONS(1122), - [anon_sym_external] = ACTIONS(1122), - [anon_sym_this] = ACTIONS(1122), + [952] = { + [aux_sym__function_type_tails] = STATE(953), + [sym__function_type_tail] = STATE(953), + [sym__function_builtin_identifier] = STATE(3095), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1037), + [sym_decimal_integer_literal] = ACTIONS(1039), + [sym_hex_integer_literal] = ACTIONS(1039), + [sym_octal_integer_literal] = ACTIONS(1037), + [sym_binary_integer_literal] = ACTIONS(1037), + [sym_decimal_floating_point_literal] = ACTIONS(1037), + [sym_hex_floating_point_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1039), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1037), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1037), + [anon_sym_r] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_null] = ACTIONS(1039), + [anon_sym_throw] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_QMARK_QMARK] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1037), + [sym_equality_operator] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_GT_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1039), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_TILDE_SLASH] = ACTIONS(1037), + [sym_increment_operator] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_assert] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_try] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_super] = ACTIONS(1039), + [anon_sym_void] = ACTIONS(1039), + [anon_sym_var] = ACTIONS(1039), + [anon_sym_covariant] = ACTIONS(1039), + [anon_sym_Function] = ACTIONS(2246), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_new] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_final] = ACTIONS(1039), + [anon_sym_external] = ACTIONS(1039), + [anon_sym_this] = ACTIONS(1039), [sym_comment] = ACTIONS(3), }, - [930] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(1228), - [sym_decimal_integer_literal] = ACTIONS(1230), - [sym_hex_integer_literal] = ACTIONS(1230), - [sym_octal_integer_literal] = ACTIONS(1228), - [sym_binary_integer_literal] = ACTIONS(1228), - [sym_decimal_floating_point_literal] = ACTIONS(1228), - [sym_hex_floating_point_literal] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1228), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1228), - [anon_sym_r] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1228), - [anon_sym_null] = ACTIONS(1230), - [anon_sym_throw] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_QMARK_QMARK] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1230), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [sym_equality_operator] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_PIPE] = ACTIONS(1230), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1230), - [anon_sym_GT_GT_GT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1230), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_TILDE_SLASH] = ACTIONS(1228), - [sym_increment_operator] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1230), - [anon_sym_do] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_try] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_abstract] = ACTIONS(1230), - [anon_sym_class] = ACTIONS(1230), - [anon_sym_super] = ACTIONS(1230), - [anon_sym_void] = ACTIONS(1230), - [anon_sym_var] = ACTIONS(1230), - [anon_sym_covariant] = ACTIONS(1230), - [anon_sym_Function] = ACTIONS(1230), - [anon_sym_get] = ACTIONS(1230), - [anon_sym_set] = ACTIONS(1230), - [anon_sym_new] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_final] = ACTIONS(1230), - [anon_sym_external] = ACTIONS(1230), - [anon_sym_this] = ACTIONS(1230), + [953] = { + [aux_sym__function_type_tails] = STATE(953), + [sym__function_type_tail] = STATE(953), + [sym__function_builtin_identifier] = STATE(3095), + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(1030), + [sym_decimal_integer_literal] = ACTIONS(1032), + [sym_hex_integer_literal] = ACTIONS(1032), + [sym_octal_integer_literal] = ACTIONS(1030), + [sym_binary_integer_literal] = ACTIONS(1030), + [sym_decimal_floating_point_literal] = ACTIONS(1030), + [sym_hex_floating_point_literal] = ACTIONS(1032), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1030), + [anon_sym_r] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1032), + [anon_sym_throw] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_QMARK_QMARK] = ACTIONS(1030), + [anon_sym_QMARK] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [sym_equality_operator] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1030), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_GT_GT_GT] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1030), + [anon_sym_TILDE_SLASH] = ACTIONS(1030), + [sym_increment_operator] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_TILDE] = ACTIONS(1032), + [anon_sym_await] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_assert] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1032), + [anon_sym_class] = ACTIONS(1032), + [anon_sym_super] = ACTIONS(1032), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_var] = ACTIONS(1032), + [anon_sym_covariant] = ACTIONS(1032), + [anon_sym_Function] = ACTIONS(2248), + [anon_sym_get] = ACTIONS(1032), + [anon_sym_set] = ACTIONS(1032), + [anon_sym_new] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_final] = ACTIONS(1032), + [anon_sym_external] = ACTIONS(1032), + [anon_sym_this] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [sym_decimal_integer_literal] = ACTIONS(1398), - [sym_hex_integer_literal] = ACTIONS(1398), - [sym_octal_integer_literal] = ACTIONS(1396), - [sym_binary_integer_literal] = ACTIONS(1396), - [sym_decimal_floating_point_literal] = ACTIONS(1396), - [sym_hex_floating_point_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1396), - [anon_sym_r] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_throw] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1396), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [sym_equality_operator] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_GT_GT_GT] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_TILDE_SLASH] = ACTIONS(1396), - [sym_increment_operator] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_await] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_abstract] = ACTIONS(1398), - [anon_sym_class] = ACTIONS(1398), - [anon_sym_super] = ACTIONS(1398), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_covariant] = ACTIONS(1398), - [anon_sym_Function] = ACTIONS(1398), - [anon_sym_get] = ACTIONS(1398), - [anon_sym_set] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_final] = ACTIONS(1398), - [anon_sym_external] = ACTIONS(1398), - [anon_sym_this] = ACTIONS(1398), + [954] = { + [sym_type_parameters] = STATE(3551), + [sym_parameter_type_list] = STATE(983), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1057), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1057), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1057), + [anon_sym_r] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_QMARK_QMARK] = ACTIONS(1057), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [sym_equality_operator] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_GT_GT_GT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_TILDE_SLASH] = ACTIONS(1057), + [sym_increment_operator] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_super] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_var] = ACTIONS(1059), + [anon_sym_covariant] = ACTIONS(1059), + [anon_sym_Function] = ACTIONS(1059), + [anon_sym_get] = ACTIONS(1059), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_const] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_external] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(1059), [sym_comment] = ACTIONS(3), }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [sym_decimal_integer_literal] = ACTIONS(1140), - [sym_hex_integer_literal] = ACTIONS(1140), - [sym_octal_integer_literal] = ACTIONS(1138), - [sym_binary_integer_literal] = ACTIONS(1138), - [sym_decimal_floating_point_literal] = ACTIONS(1138), - [sym_hex_floating_point_literal] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1140), - [anon_sym_SQUOTE] = ACTIONS(1140), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1138), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1138), - [anon_sym_r] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_COMMA] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(1140), - [anon_sym_throw] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_QMARK_QMARK] = ACTIONS(1138), - [anon_sym_QMARK] = ACTIONS(1140), - [anon_sym_PIPE_PIPE] = ACTIONS(1138), - [anon_sym_AMP_AMP] = ACTIONS(1138), - [sym_equality_operator] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_PIPE] = ACTIONS(1140), - [anon_sym_CARET] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_LT_LT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1140), - [anon_sym_GT_GT_GT] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(1140), - [anon_sym_PERCENT] = ACTIONS(1138), - [anon_sym_TILDE_SLASH] = ACTIONS(1138), - [sym_increment_operator] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_await] = ACTIONS(1140), - [anon_sym_DOT_DOT] = ACTIONS(1138), - [anon_sym_assert] = ACTIONS(1140), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_try] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_super] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1140), - [anon_sym_var] = ACTIONS(1140), - [anon_sym_covariant] = ACTIONS(1140), - [anon_sym_Function] = ACTIONS(1140), - [anon_sym_get] = ACTIONS(1140), - [anon_sym_set] = ACTIONS(1140), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_external] = ACTIONS(1140), - [anon_sym_this] = ACTIONS(1140), + [955] = { + [sym_type_arguments] = STATE(977), + [sym__type_args] = STATE(975), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1057), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1057), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1057), + [anon_sym_r] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_null] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_QMARK_QMARK] = ACTIONS(1057), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_PIPE_PIPE] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1057), + [sym_equality_operator] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_GT_GT_GT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1057), + [anon_sym_TILDE_SLASH] = ACTIONS(1057), + [sym_increment_operator] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_super] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_var] = ACTIONS(1059), + [anon_sym_covariant] = ACTIONS(1059), + [anon_sym_Function] = ACTIONS(1059), + [anon_sym_get] = ACTIONS(1059), + [anon_sym_set] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_const] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_external] = ACTIONS(1059), + [anon_sym_this] = ACTIONS(1059), [sym_comment] = ACTIONS(3), }, - [933] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_POUND] = ACTIONS(1236), - [sym_decimal_integer_literal] = ACTIONS(1238), - [sym_hex_integer_literal] = ACTIONS(1238), - [sym_octal_integer_literal] = ACTIONS(1236), - [sym_binary_integer_literal] = ACTIONS(1236), - [sym_decimal_floating_point_literal] = ACTIONS(1236), - [sym_hex_floating_point_literal] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1236), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1236), - [anon_sym_r] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_null] = ACTIONS(1238), - [anon_sym_throw] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_QMARK_QMARK] = ACTIONS(1236), - [anon_sym_QMARK] = ACTIONS(1238), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [sym_equality_operator] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1236), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_GT_GT_GT] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_TILDE_SLASH] = ACTIONS(1236), - [sym_increment_operator] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_assert] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_do] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_abstract] = ACTIONS(1238), - [anon_sym_class] = ACTIONS(1238), - [anon_sym_super] = ACTIONS(1238), - [anon_sym_void] = ACTIONS(1238), - [anon_sym_var] = ACTIONS(1238), - [anon_sym_covariant] = ACTIONS(1238), - [anon_sym_Function] = ACTIONS(1238), - [anon_sym_get] = ACTIONS(1238), - [anon_sym_set] = ACTIONS(1238), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_final] = ACTIONS(1238), - [anon_sym_external] = ACTIONS(1238), - [anon_sym_this] = ACTIONS(1238), + [956] = { + [sym__type_dot_identifier] = STATE(965), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1111), + [sym_decimal_integer_literal] = ACTIONS(1113), + [sym_hex_integer_literal] = ACTIONS(1113), + [sym_octal_integer_literal] = ACTIONS(1111), + [sym_binary_integer_literal] = ACTIONS(1111), + [sym_decimal_floating_point_literal] = ACTIONS(1111), + [sym_hex_floating_point_literal] = ACTIONS(1113), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1111), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1111), + [anon_sym_r] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_null] = ACTIONS(1113), + [anon_sym_throw] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_QMARK_QMARK] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [sym_equality_operator] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1113), + [anon_sym_GT_GT_GT] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1111), + [anon_sym_TILDE_SLASH] = ACTIONS(1111), + [sym_increment_operator] = ACTIONS(1111), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_await] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(1111), + [anon_sym_assert] = ACTIONS(1113), + [anon_sym_switch] = ACTIONS(1113), + [anon_sym_do] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1111), + [anon_sym_enum] = ACTIONS(1113), + [anon_sym_abstract] = ACTIONS(1113), + [anon_sym_class] = ACTIONS(1113), + [anon_sym_super] = ACTIONS(1113), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_var] = ACTIONS(1113), + [anon_sym_covariant] = ACTIONS(1113), + [anon_sym_Function] = ACTIONS(1113), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1113), + [anon_sym_new] = ACTIONS(1113), + [anon_sym_const] = ACTIONS(1113), + [anon_sym_final] = ACTIONS(1113), + [anon_sym_external] = ACTIONS(1113), + [anon_sym_this] = ACTIONS(1113), [sym_comment] = ACTIONS(3), }, - [934] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [sym_decimal_integer_literal] = ACTIONS(1314), - [sym_hex_integer_literal] = ACTIONS(1314), - [sym_octal_integer_literal] = ACTIONS(1312), - [sym_binary_integer_literal] = ACTIONS(1312), - [sym_decimal_floating_point_literal] = ACTIONS(1312), - [sym_hex_floating_point_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1312), - [anon_sym_r] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_null] = ACTIONS(1314), - [anon_sym_throw] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_QMARK_QMARK] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [sym_equality_operator] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1314), - [anon_sym_GT_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_TILDE_SLASH] = ACTIONS(1312), - [sym_increment_operator] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_abstract] = ACTIONS(1314), - [anon_sym_class] = ACTIONS(1314), - [anon_sym_super] = ACTIONS(1314), - [anon_sym_void] = ACTIONS(1314), - [anon_sym_var] = ACTIONS(1314), - [anon_sym_covariant] = ACTIONS(1314), - [anon_sym_Function] = ACTIONS(1314), - [anon_sym_get] = ACTIONS(1314), - [anon_sym_set] = ACTIONS(1314), - [anon_sym_new] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_final] = ACTIONS(1314), - [anon_sym_external] = ACTIONS(1314), - [anon_sym_this] = ACTIONS(1314), + [957] = { + [aux_sym_logical_or_expression_repeat1] = STATE(957), + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(574), + [sym_hex_integer_literal] = ACTIONS(574), + [sym_octal_integer_literal] = ACTIONS(572), + [sym_binary_integer_literal] = ACTIONS(572), + [sym_decimal_floating_point_literal] = ACTIONS(572), + [sym_hex_floating_point_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(572), + [anon_sym_r] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_null] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_QMARK_QMARK] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(572), + [sym_equality_operator] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(574), + [anon_sym_GT_GT_GT] = ACTIONS(572), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(574), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_TILDE_SLASH] = ACTIONS(572), + [sym_increment_operator] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_assert] = ACTIONS(574), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_super] = ACTIONS(574), + [anon_sym_void] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [anon_sym_covariant] = ACTIONS(574), + [anon_sym_Function] = ACTIONS(574), + [anon_sym_get] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_external] = ACTIONS(574), + [anon_sym_this] = ACTIONS(574), [sym_comment] = ACTIONS(3), }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_POUND] = ACTIONS(1248), - [sym_decimal_integer_literal] = ACTIONS(1250), - [sym_hex_integer_literal] = ACTIONS(1250), - [sym_octal_integer_literal] = ACTIONS(1248), - [sym_binary_integer_literal] = ACTIONS(1248), - [sym_decimal_floating_point_literal] = ACTIONS(1248), - [sym_hex_floating_point_literal] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1248), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1248), - [anon_sym_r] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [anon_sym_null] = ACTIONS(1250), - [anon_sym_throw] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_QMARK_QMARK] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [sym_equality_operator] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_GT_GT_GT] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_TILDE_SLASH] = ACTIONS(1248), - [sym_increment_operator] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_await] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_assert] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1250), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_abstract] = ACTIONS(1250), - [anon_sym_class] = ACTIONS(1250), - [anon_sym_super] = ACTIONS(1250), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_var] = ACTIONS(1250), - [anon_sym_covariant] = ACTIONS(1250), - [anon_sym_Function] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_new] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_final] = ACTIONS(1250), - [anon_sym_external] = ACTIONS(1250), - [anon_sym_this] = ACTIONS(1250), + [958] = { + [aux_sym__if_null_expression] = STATE(961), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1125), + [sym_decimal_integer_literal] = ACTIONS(1127), + [sym_hex_integer_literal] = ACTIONS(1127), + [sym_octal_integer_literal] = ACTIONS(1125), + [sym_binary_integer_literal] = ACTIONS(1125), + [sym_decimal_floating_point_literal] = ACTIONS(1125), + [sym_hex_floating_point_literal] = ACTIONS(1127), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1125), + [anon_sym_r] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1125), + [anon_sym_COMMA] = ACTIONS(1125), + [anon_sym_null] = ACTIONS(1127), + [anon_sym_throw] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_QMARK_QMARK] = ACTIONS(1125), + [anon_sym_QMARK] = ACTIONS(1127), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_AMP_AMP] = ACTIONS(1125), + [sym_equality_operator] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1127), + [anon_sym_GT_GT_GT] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1125), + [anon_sym_TILDE_SLASH] = ACTIONS(1125), + [sym_increment_operator] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_await] = ACTIONS(1127), + [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_assert] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_yield] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_try] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1125), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_abstract] = ACTIONS(1127), + [anon_sym_class] = ACTIONS(1127), + [anon_sym_super] = ACTIONS(1127), + [anon_sym_void] = ACTIONS(1127), + [anon_sym_var] = ACTIONS(1127), + [anon_sym_covariant] = ACTIONS(1127), + [anon_sym_Function] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_final] = ACTIONS(1127), + [anon_sym_external] = ACTIONS(1127), + [anon_sym_this] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [sym_decimal_integer_literal] = ACTIONS(1152), - [sym_hex_integer_literal] = ACTIONS(1152), - [sym_octal_integer_literal] = ACTIONS(1150), - [sym_binary_integer_literal] = ACTIONS(1150), - [sym_decimal_floating_point_literal] = ACTIONS(1150), - [sym_hex_floating_point_literal] = ACTIONS(1152), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1150), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1150), - [anon_sym_r] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1152), - [anon_sym_throw] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_QMARK_QMARK] = ACTIONS(1150), - [anon_sym_QMARK] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [sym_equality_operator] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_CARET] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_GT_GT_GT] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1152), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_TILDE_SLASH] = ACTIONS(1150), - [sym_increment_operator] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1152), - [anon_sym_await] = ACTIONS(1152), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_assert] = ACTIONS(1152), - [anon_sym_switch] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_class] = ACTIONS(1152), - [anon_sym_super] = ACTIONS(1152), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_var] = ACTIONS(1152), - [anon_sym_covariant] = ACTIONS(1152), - [anon_sym_Function] = ACTIONS(1152), - [anon_sym_get] = ACTIONS(1152), - [anon_sym_set] = ACTIONS(1152), - [anon_sym_new] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_final] = ACTIONS(1152), - [anon_sym_external] = ACTIONS(1152), - [anon_sym_this] = ACTIONS(1152), + [959] = { + [aux_sym_logical_or_expression_repeat1] = STATE(957), + [ts_builtin_sym_end] = ACTIONS(1121), + [sym_identifier] = ACTIONS(1123), + [anon_sym_POUND] = ACTIONS(1121), + [sym_decimal_integer_literal] = ACTIONS(1123), + [sym_hex_integer_literal] = ACTIONS(1123), + [sym_octal_integer_literal] = ACTIONS(1121), + [sym_binary_integer_literal] = ACTIONS(1121), + [sym_decimal_floating_point_literal] = ACTIONS(1121), + [sym_hex_floating_point_literal] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1123), + [anon_sym_false] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1121), + [anon_sym_DQUOTE] = ACTIONS(1123), + [anon_sym_SQUOTE] = ACTIONS(1123), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1121), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1121), + [anon_sym_r] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_COMMA] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_QMARK_QMARK] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_PIPE_PIPE] = ACTIONS(1121), + [anon_sym_AMP_AMP] = ACTIONS(1121), + [sym_equality_operator] = ACTIONS(1121), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_CARET] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_LT] = ACTIONS(1121), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_GT_GT_GT] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_SLASH] = ACTIONS(1123), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_TILDE_SLASH] = ACTIONS(1121), + [sym_increment_operator] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_await] = ACTIONS(1123), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_assert] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_yield] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_try] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1121), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_abstract] = ACTIONS(1123), + [anon_sym_class] = ACTIONS(1123), + [anon_sym_super] = ACTIONS(1123), + [anon_sym_void] = ACTIONS(1123), + [anon_sym_var] = ACTIONS(1123), + [anon_sym_covariant] = ACTIONS(1123), + [anon_sym_Function] = ACTIONS(1123), + [anon_sym_get] = ACTIONS(1123), + [anon_sym_set] = ACTIONS(1123), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_final] = ACTIONS(1123), + [anon_sym_external] = ACTIONS(1123), + [anon_sym_this] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [sym_decimal_integer_literal] = ACTIONS(1156), - [sym_hex_integer_literal] = ACTIONS(1156), - [sym_octal_integer_literal] = ACTIONS(1154), - [sym_binary_integer_literal] = ACTIONS(1154), - [sym_decimal_floating_point_literal] = ACTIONS(1154), - [sym_hex_floating_point_literal] = ACTIONS(1156), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1154), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1154), - [anon_sym_r] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_throw] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_QMARK_QMARK] = ACTIONS(1154), - [anon_sym_QMARK] = ACTIONS(1156), - [anon_sym_PIPE_PIPE] = ACTIONS(1154), - [anon_sym_AMP_AMP] = ACTIONS(1154), - [sym_equality_operator] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1156), - [anon_sym_GT_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_SLASH] = ACTIONS(1156), - [anon_sym_PERCENT] = ACTIONS(1154), - [anon_sym_TILDE_SLASH] = ACTIONS(1154), - [sym_increment_operator] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_assert] = ACTIONS(1156), - [anon_sym_switch] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_AT] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_abstract] = ACTIONS(1156), - [anon_sym_class] = ACTIONS(1156), - [anon_sym_super] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_var] = ACTIONS(1156), - [anon_sym_covariant] = ACTIONS(1156), - [anon_sym_Function] = ACTIONS(1156), - [anon_sym_get] = ACTIONS(1156), - [anon_sym_set] = ACTIONS(1156), - [anon_sym_new] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_final] = ACTIONS(1156), - [anon_sym_external] = ACTIONS(1156), - [anon_sym_this] = ACTIONS(1156), + [960] = { + [aux_sym_logical_and_expression_repeat1] = STATE(962), + [ts_builtin_sym_end] = ACTIONS(1117), + [sym_identifier] = ACTIONS(1119), + [anon_sym_POUND] = ACTIONS(1117), + [sym_decimal_integer_literal] = ACTIONS(1119), + [sym_hex_integer_literal] = ACTIONS(1119), + [sym_octal_integer_literal] = ACTIONS(1117), + [sym_binary_integer_literal] = ACTIONS(1117), + [sym_decimal_floating_point_literal] = ACTIONS(1117), + [sym_hex_floating_point_literal] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1119), + [anon_sym_false] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1117), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1117), + [anon_sym_r] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1117), + [anon_sym_null] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_QMARK_QMARK] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1119), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_AMP_AMP] = ACTIONS(1117), + [sym_equality_operator] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_CARET] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1119), + [anon_sym_GT_GT_GT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_SLASH] = ACTIONS(1119), + [anon_sym_PERCENT] = ACTIONS(1117), + [anon_sym_TILDE_SLASH] = ACTIONS(1117), + [sym_increment_operator] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_assert] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1119), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1119), + [anon_sym_continue] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1119), + [anon_sym_return] = ACTIONS(1119), + [anon_sym_try] = ACTIONS(1119), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_for] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1119), + [anon_sym_abstract] = ACTIONS(1119), + [anon_sym_class] = ACTIONS(1119), + [anon_sym_super] = ACTIONS(1119), + [anon_sym_void] = ACTIONS(1119), + [anon_sym_var] = ACTIONS(1119), + [anon_sym_covariant] = ACTIONS(1119), + [anon_sym_Function] = ACTIONS(1119), + [anon_sym_get] = ACTIONS(1119), + [anon_sym_set] = ACTIONS(1119), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_const] = ACTIONS(1119), + [anon_sym_final] = ACTIONS(1119), + [anon_sym_external] = ACTIONS(1119), + [anon_sym_this] = ACTIONS(1119), [sym_comment] = ACTIONS(3), }, - [938] = { + [961] = { + [aux_sym__if_null_expression] = STATE(961), [ts_builtin_sym_end] = ACTIONS(1158), [sym_identifier] = ACTIONS(1160), [anon_sym_POUND] = ACTIONS(1158), @@ -98486,7 +102171,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(1160), [anon_sym_throw] = ACTIONS(1160), [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_QMARK_QMARK] = ACTIONS(1158), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), [anon_sym_QMARK] = ACTIONS(1160), [anon_sym_PIPE_PIPE] = ACTIONS(1158), [anon_sym_AMP_AMP] = ACTIONS(1158), @@ -98538,7 +102223,1208 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1160), [sym_comment] = ACTIONS(3), }, - [939] = { + [962] = { + [aux_sym_logical_and_expression_repeat1] = STATE(962), + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(578), + [sym_hex_integer_literal] = ACTIONS(578), + [sym_octal_integer_literal] = ACTIONS(576), + [sym_binary_integer_literal] = ACTIONS(576), + [sym_decimal_floating_point_literal] = ACTIONS(576), + [sym_hex_floating_point_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(576), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), + [anon_sym_r] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_null] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_QMARK_QMARK] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(2263), + [sym_equality_operator] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_GT_GT_GT] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(578), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_TILDE_SLASH] = ACTIONS(576), + [sym_increment_operator] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_await] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_assert] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [anon_sym_break] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_if] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_super] = ACTIONS(578), + [anon_sym_void] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [anon_sym_covariant] = ACTIONS(578), + [anon_sym_Function] = ACTIONS(578), + [anon_sym_get] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [anon_sym_const] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_external] = ACTIONS(578), + [anon_sym_this] = ACTIONS(578), + [sym_comment] = ACTIONS(3), + }, + [963] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym__unary_expression] = STATE(2310), + [sym_unary_expression] = STATE(2310), + [sym__postfix_expression] = STATE(2310), + [sym_postfix_expression] = STATE(2310), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_for] = ACTIONS(2266), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [964] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym__unary_expression] = STATE(2310), + [sym_unary_expression] = STATE(2310), + [sym__postfix_expression] = STATE(2310), + [sym_postfix_expression] = STATE(2310), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [965] = { + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(1409), + [sym_decimal_integer_literal] = ACTIONS(1411), + [sym_hex_integer_literal] = ACTIONS(1411), + [sym_octal_integer_literal] = ACTIONS(1409), + [sym_binary_integer_literal] = ACTIONS(1409), + [sym_decimal_floating_point_literal] = ACTIONS(1409), + [sym_hex_floating_point_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1409), + [anon_sym_r] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_throw] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_QMARK_QMARK] = ACTIONS(1409), + [anon_sym_QMARK] = ACTIONS(1411), + [anon_sym_PIPE_PIPE] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [sym_equality_operator] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1409), + [anon_sym_GT_GT] = ACTIONS(1411), + [anon_sym_GT_GT_GT] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1411), + [anon_sym_PERCENT] = ACTIONS(1409), + [anon_sym_TILDE_SLASH] = ACTIONS(1409), + [sym_increment_operator] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_try] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_abstract] = ACTIONS(1411), + [anon_sym_class] = ACTIONS(1411), + [anon_sym_super] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_covariant] = ACTIONS(1411), + [anon_sym_Function] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1411), + [anon_sym_set] = ACTIONS(1411), + [anon_sym_new] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_final] = ACTIONS(1411), + [anon_sym_external] = ACTIONS(1411), + [anon_sym_this] = ACTIONS(1411), + [sym_comment] = ACTIONS(3), + }, + [966] = { + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_POUND] = ACTIONS(1465), + [sym_decimal_integer_literal] = ACTIONS(1467), + [sym_hex_integer_literal] = ACTIONS(1467), + [sym_octal_integer_literal] = ACTIONS(1465), + [sym_binary_integer_literal] = ACTIONS(1465), + [sym_decimal_floating_point_literal] = ACTIONS(1465), + [sym_hex_floating_point_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1465), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1465), + [anon_sym_r] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1467), + [anon_sym_throw] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_QMARK_QMARK] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1467), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [sym_equality_operator] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_GT_GT_GT] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_TILDE_SLASH] = ACTIONS(1465), + [sym_increment_operator] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_await] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1467), + [anon_sym_switch] = ACTIONS(1467), + [anon_sym_do] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_abstract] = ACTIONS(1467), + [anon_sym_class] = ACTIONS(1467), + [anon_sym_super] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1467), + [anon_sym_var] = ACTIONS(1467), + [anon_sym_covariant] = ACTIONS(1467), + [anon_sym_Function] = ACTIONS(1467), + [anon_sym_get] = ACTIONS(1467), + [anon_sym_set] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_final] = ACTIONS(1467), + [anon_sym_external] = ACTIONS(1467), + [anon_sym_this] = ACTIONS(1467), + [sym_comment] = ACTIONS(3), + }, + [967] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym__unary_expression] = STATE(2310), + [sym_unary_expression] = STATE(2310), + [sym__postfix_expression] = STATE(2310), + [sym_postfix_expression] = STATE(2310), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [968] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym__unary_expression] = STATE(2310), + [sym_unary_expression] = STATE(2310), + [sym__postfix_expression] = STATE(2310), + [sym_postfix_expression] = STATE(2310), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(528), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [969] = { + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(1519), + [sym_decimal_integer_literal] = ACTIONS(1521), + [sym_hex_integer_literal] = ACTIONS(1521), + [sym_octal_integer_literal] = ACTIONS(1519), + [sym_binary_integer_literal] = ACTIONS(1519), + [sym_decimal_floating_point_literal] = ACTIONS(1519), + [sym_hex_floating_point_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1519), + [anon_sym_r] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_throw] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_QMARK_QMARK] = ACTIONS(1519), + [anon_sym_QMARK] = ACTIONS(1521), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [sym_equality_operator] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_LT_LT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_GT_GT_GT] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1519), + [anon_sym_TILDE_SLASH] = ACTIONS(1519), + [sym_increment_operator] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_await] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1519), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_abstract] = ACTIONS(1521), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_super] = ACTIONS(1521), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_covariant] = ACTIONS(1521), + [anon_sym_Function] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1521), + [anon_sym_set] = ACTIONS(1521), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_final] = ACTIONS(1521), + [anon_sym_external] = ACTIONS(1521), + [anon_sym_this] = ACTIONS(1521), + [sym_comment] = ACTIONS(3), + }, + [970] = { + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(1523), + [sym_decimal_integer_literal] = ACTIONS(1525), + [sym_hex_integer_literal] = ACTIONS(1525), + [sym_octal_integer_literal] = ACTIONS(1523), + [sym_binary_integer_literal] = ACTIONS(1523), + [sym_decimal_floating_point_literal] = ACTIONS(1523), + [sym_hex_floating_point_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1523), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1523), + [anon_sym_r] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_throw] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_QMARK_QMARK] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [sym_equality_operator] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_GT_GT_GT] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_TILDE_SLASH] = ACTIONS(1523), + [sym_increment_operator] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1525), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_abstract] = ACTIONS(1525), + [anon_sym_class] = ACTIONS(1525), + [anon_sym_super] = ACTIONS(1525), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_covariant] = ACTIONS(1525), + [anon_sym_Function] = ACTIONS(1525), + [anon_sym_get] = ACTIONS(1525), + [anon_sym_set] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_final] = ACTIONS(1525), + [anon_sym_external] = ACTIONS(1525), + [anon_sym_this] = ACTIONS(1525), + [sym_comment] = ACTIONS(3), + }, + [971] = { + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1515), + [sym_decimal_integer_literal] = ACTIONS(1517), + [sym_hex_integer_literal] = ACTIONS(1517), + [sym_octal_integer_literal] = ACTIONS(1515), + [sym_binary_integer_literal] = ACTIONS(1515), + [sym_decimal_floating_point_literal] = ACTIONS(1515), + [sym_hex_floating_point_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1515), + [anon_sym_r] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_throw] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_QMARK_QMARK] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [sym_equality_operator] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_GT_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_TILDE_SLASH] = ACTIONS(1515), + [sym_increment_operator] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_abstract] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_super] = ACTIONS(1517), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_covariant] = ACTIONS(1517), + [anon_sym_Function] = ACTIONS(1517), + [anon_sym_get] = ACTIONS(1517), + [anon_sym_set] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_final] = ACTIONS(1517), + [anon_sym_external] = ACTIONS(1517), + [anon_sym_this] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + }, + [972] = { + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1477), + [sym_decimal_integer_literal] = ACTIONS(1479), + [sym_hex_integer_literal] = ACTIONS(1479), + [sym_octal_integer_literal] = ACTIONS(1477), + [sym_binary_integer_literal] = ACTIONS(1477), + [sym_decimal_floating_point_literal] = ACTIONS(1477), + [sym_hex_floating_point_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1477), + [anon_sym_r] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_QMARK_QMARK] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [sym_equality_operator] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_GT_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_TILDE_SLASH] = ACTIONS(1477), + [sym_increment_operator] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_abstract] = ACTIONS(1479), + [anon_sym_class] = ACTIONS(1479), + [anon_sym_super] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1479), + [anon_sym_var] = ACTIONS(1479), + [anon_sym_covariant] = ACTIONS(1479), + [anon_sym_Function] = ACTIONS(1479), + [anon_sym_get] = ACTIONS(1479), + [anon_sym_set] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_final] = ACTIONS(1479), + [anon_sym_external] = ACTIONS(1479), + [anon_sym_this] = ACTIONS(1479), + [sym_comment] = ACTIONS(3), + }, + [973] = { + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1349), + [sym_decimal_integer_literal] = ACTIONS(1351), + [sym_hex_integer_literal] = ACTIONS(1351), + [sym_octal_integer_literal] = ACTIONS(1349), + [sym_binary_integer_literal] = ACTIONS(1349), + [sym_decimal_floating_point_literal] = ACTIONS(1349), + [sym_hex_floating_point_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1349), + [anon_sym_r] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_throw] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_QMARK_QMARK] = ACTIONS(1349), + [anon_sym_QMARK] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1349), + [sym_equality_operator] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_LT_LT] = ACTIONS(1349), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_GT_GT_GT] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1349), + [anon_sym_TILDE_SLASH] = ACTIONS(1349), + [sym_increment_operator] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_await] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_abstract] = ACTIONS(1351), + [anon_sym_class] = ACTIONS(1351), + [anon_sym_super] = ACTIONS(1351), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_covariant] = ACTIONS(1351), + [anon_sym_Function] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1351), + [anon_sym_set] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_final] = ACTIONS(1351), + [anon_sym_external] = ACTIONS(1351), + [anon_sym_this] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + }, + [974] = { + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1493), + [sym_decimal_integer_literal] = ACTIONS(1495), + [sym_hex_integer_literal] = ACTIONS(1495), + [sym_octal_integer_literal] = ACTIONS(1493), + [sym_binary_integer_literal] = ACTIONS(1493), + [sym_decimal_floating_point_literal] = ACTIONS(1493), + [sym_hex_floating_point_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1493), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1493), + [anon_sym_r] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1495), + [anon_sym_throw] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_QMARK_QMARK] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [sym_equality_operator] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_GT_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_TILDE_SLASH] = ACTIONS(1493), + [sym_increment_operator] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1495), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_do] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_abstract] = ACTIONS(1495), + [anon_sym_class] = ACTIONS(1495), + [anon_sym_super] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1495), + [anon_sym_var] = ACTIONS(1495), + [anon_sym_covariant] = ACTIONS(1495), + [anon_sym_Function] = ACTIONS(1495), + [anon_sym_get] = ACTIONS(1495), + [anon_sym_set] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_final] = ACTIONS(1495), + [anon_sym_external] = ACTIONS(1495), + [anon_sym_this] = ACTIONS(1495), + [sym_comment] = ACTIONS(3), + }, + [975] = { + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1453), + [sym_decimal_integer_literal] = ACTIONS(1455), + [sym_hex_integer_literal] = ACTIONS(1455), + [sym_octal_integer_literal] = ACTIONS(1453), + [sym_binary_integer_literal] = ACTIONS(1453), + [sym_decimal_floating_point_literal] = ACTIONS(1453), + [sym_hex_floating_point_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1453), + [anon_sym_r] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1455), + [anon_sym_throw] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_QMARK_QMARK] = ACTIONS(1453), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [sym_equality_operator] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_GT_GT_GT] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1453), + [anon_sym_TILDE_SLASH] = ACTIONS(1453), + [sym_increment_operator] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_AT] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_abstract] = ACTIONS(1455), + [anon_sym_class] = ACTIONS(1455), + [anon_sym_super] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1455), + [anon_sym_var] = ACTIONS(1455), + [anon_sym_covariant] = ACTIONS(1455), + [anon_sym_Function] = ACTIONS(1455), + [anon_sym_get] = ACTIONS(1455), + [anon_sym_set] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_final] = ACTIONS(1455), + [anon_sym_external] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + }, + [976] = { + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1457), + [sym_decimal_integer_literal] = ACTIONS(1459), + [sym_hex_integer_literal] = ACTIONS(1459), + [sym_octal_integer_literal] = ACTIONS(1457), + [sym_binary_integer_literal] = ACTIONS(1457), + [sym_decimal_floating_point_literal] = ACTIONS(1457), + [sym_hex_floating_point_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1457), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1457), + [anon_sym_r] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1459), + [anon_sym_throw] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_QMARK_QMARK] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [sym_equality_operator] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_GT_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_TILDE_SLASH] = ACTIONS(1457), + [sym_increment_operator] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1459), + [anon_sym_switch] = ACTIONS(1459), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_abstract] = ACTIONS(1459), + [anon_sym_class] = ACTIONS(1459), + [anon_sym_super] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1459), + [anon_sym_var] = ACTIONS(1459), + [anon_sym_covariant] = ACTIONS(1459), + [anon_sym_Function] = ACTIONS(1459), + [anon_sym_get] = ACTIONS(1459), + [anon_sym_set] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_final] = ACTIONS(1459), + [anon_sym_external] = ACTIONS(1459), + [anon_sym_this] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + }, + [977] = { + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1355), + [anon_sym_POUND] = ACTIONS(1353), + [sym_decimal_integer_literal] = ACTIONS(1355), + [sym_hex_integer_literal] = ACTIONS(1355), + [sym_octal_integer_literal] = ACTIONS(1353), + [sym_binary_integer_literal] = ACTIONS(1353), + [sym_decimal_floating_point_literal] = ACTIONS(1353), + [sym_hex_floating_point_literal] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1353), + [anon_sym_r] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_throw] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_QMARK_QMARK] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [sym_equality_operator] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(1353), + [anon_sym_GT_GT] = ACTIONS(1355), + [anon_sym_GT_GT_GT] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1353), + [anon_sym_TILDE_SLASH] = ACTIONS(1353), + [sym_increment_operator] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_yield] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1355), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1355), + [anon_sym_abstract] = ACTIONS(1355), + [anon_sym_class] = ACTIONS(1355), + [anon_sym_super] = ACTIONS(1355), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_covariant] = ACTIONS(1355), + [anon_sym_Function] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1355), + [anon_sym_set] = ACTIONS(1355), + [anon_sym_new] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_final] = ACTIONS(1355), + [anon_sym_external] = ACTIONS(1355), + [anon_sym_this] = ACTIONS(1355), + [sym_comment] = ACTIONS(3), + }, + [978] = { [ts_builtin_sym_end] = ACTIONS(1224), [sym_identifier] = ACTIONS(1226), [anon_sym_POUND] = ACTIONS(1224), @@ -98603,7 +103489,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_void] = ACTIONS(1226), [anon_sym_var] = ACTIONS(1226), [anon_sym_covariant] = ACTIONS(1226), - [anon_sym_Function] = ACTIONS(1226), + [anon_sym_Function] = ACTIONS(1228), [anon_sym_get] = ACTIONS(1226), [anon_sym_set] = ACTIONS(1226), [anon_sym_new] = ACTIONS(1226), @@ -98613,1522 +103499,1251 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [sym_decimal_integer_literal] = ACTIONS(1442), - [sym_hex_integer_literal] = ACTIONS(1442), - [sym_octal_integer_literal] = ACTIONS(1440), - [sym_binary_integer_literal] = ACTIONS(1440), - [sym_decimal_floating_point_literal] = ACTIONS(1440), - [sym_hex_floating_point_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1440), - [anon_sym_r] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_QMARK_QMARK] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [sym_equality_operator] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1442), - [anon_sym_GT_GT_GT] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_TILDE_SLASH] = ACTIONS(1440), - [sym_increment_operator] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_await] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_abstract] = ACTIONS(1442), - [anon_sym_class] = ACTIONS(1442), - [anon_sym_super] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [anon_sym_covariant] = ACTIONS(1442), - [anon_sym_Function] = ACTIONS(1444), - [anon_sym_get] = ACTIONS(1442), - [anon_sym_set] = ACTIONS(1442), - [anon_sym_new] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_final] = ACTIONS(1442), - [anon_sym_external] = ACTIONS(1442), - [anon_sym_this] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [sym_decimal_integer_literal] = ACTIONS(1306), - [sym_hex_integer_literal] = ACTIONS(1306), - [sym_octal_integer_literal] = ACTIONS(1304), - [sym_binary_integer_literal] = ACTIONS(1304), - [sym_decimal_floating_point_literal] = ACTIONS(1304), - [sym_hex_floating_point_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1304), - [anon_sym_r] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_null] = ACTIONS(1306), - [anon_sym_throw] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_QMARK_QMARK] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [sym_equality_operator] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_GT_GT_GT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1306), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_TILDE_SLASH] = ACTIONS(1304), - [sym_increment_operator] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_await] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_assert] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_try] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_abstract] = ACTIONS(1306), - [anon_sym_class] = ACTIONS(1306), - [anon_sym_super] = ACTIONS(1306), - [anon_sym_void] = ACTIONS(1306), - [anon_sym_var] = ACTIONS(1306), - [anon_sym_covariant] = ACTIONS(1306), - [anon_sym_Function] = ACTIONS(1306), - [anon_sym_get] = ACTIONS(1306), - [anon_sym_set] = ACTIONS(1306), - [anon_sym_new] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_final] = ACTIONS(1306), - [anon_sym_external] = ACTIONS(1306), - [anon_sym_this] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [942] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [sym_decimal_integer_literal] = ACTIONS(1148), - [sym_hex_integer_literal] = ACTIONS(1148), - [sym_octal_integer_literal] = ACTIONS(1146), - [sym_binary_integer_literal] = ACTIONS(1146), - [sym_decimal_floating_point_literal] = ACTIONS(1146), - [sym_hex_floating_point_literal] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(1148), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1146), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1146), - [anon_sym_r] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_throw] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_QMARK_QMARK] = ACTIONS(1146), - [anon_sym_QMARK] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [sym_equality_operator] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_GT_GT_GT] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_PERCENT] = ACTIONS(1146), - [anon_sym_TILDE_SLASH] = ACTIONS(1146), - [sym_increment_operator] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_TILDE] = ACTIONS(1148), - [anon_sym_await] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1146), - [anon_sym_assert] = ACTIONS(1148), - [anon_sym_switch] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_super] = ACTIONS(1148), - [anon_sym_void] = ACTIONS(1148), - [anon_sym_var] = ACTIONS(1148), - [anon_sym_covariant] = ACTIONS(1148), - [anon_sym_Function] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_new] = ACTIONS(1148), - [anon_sym_const] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_external] = ACTIONS(1148), - [anon_sym_this] = ACTIONS(1148), - [sym_comment] = ACTIONS(3), - }, - [943] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1364), - [sym_decimal_integer_literal] = ACTIONS(1366), - [sym_hex_integer_literal] = ACTIONS(1366), - [sym_octal_integer_literal] = ACTIONS(1364), - [sym_binary_integer_literal] = ACTIONS(1364), - [sym_decimal_floating_point_literal] = ACTIONS(1364), - [sym_hex_floating_point_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1364), - [anon_sym_r] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_null] = ACTIONS(1366), - [anon_sym_throw] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_QMARK_QMARK] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [sym_equality_operator] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1364), - [anon_sym_GT_GT] = ACTIONS(1366), - [anon_sym_GT_GT_GT] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1366), - [anon_sym_PERCENT] = ACTIONS(1364), - [anon_sym_TILDE_SLASH] = ACTIONS(1364), - [sym_increment_operator] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_await] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_assert] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_try] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_AT] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_abstract] = ACTIONS(1366), - [anon_sym_class] = ACTIONS(1366), - [anon_sym_super] = ACTIONS(1366), - [anon_sym_void] = ACTIONS(1366), - [anon_sym_var] = ACTIONS(1366), - [anon_sym_covariant] = ACTIONS(1366), - [anon_sym_Function] = ACTIONS(1366), - [anon_sym_get] = ACTIONS(1366), - [anon_sym_set] = ACTIONS(1366), - [anon_sym_new] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_final] = ACTIONS(1366), - [anon_sym_external] = ACTIONS(1366), - [anon_sym_this] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1348), - [sym_decimal_integer_literal] = ACTIONS(1350), - [sym_hex_integer_literal] = ACTIONS(1350), - [sym_octal_integer_literal] = ACTIONS(1348), - [sym_binary_integer_literal] = ACTIONS(1348), - [sym_decimal_floating_point_literal] = ACTIONS(1348), - [sym_hex_floating_point_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1348), - [anon_sym_r] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_null] = ACTIONS(1350), - [anon_sym_throw] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_QMARK_QMARK] = ACTIONS(1348), - [anon_sym_QMARK] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1348), - [anon_sym_AMP_AMP] = ACTIONS(1348), - [sym_equality_operator] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1348), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_GT_GT_GT] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1348), - [anon_sym_TILDE_SLASH] = ACTIONS(1348), - [sym_increment_operator] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_abstract] = ACTIONS(1350), - [anon_sym_class] = ACTIONS(1350), - [anon_sym_super] = ACTIONS(1350), - [anon_sym_void] = ACTIONS(1350), - [anon_sym_var] = ACTIONS(1350), - [anon_sym_covariant] = ACTIONS(1350), - [anon_sym_Function] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_final] = ACTIONS(1350), - [anon_sym_external] = ACTIONS(1350), - [anon_sym_this] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - }, - [945] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1344), - [sym_decimal_integer_literal] = ACTIONS(1346), - [sym_hex_integer_literal] = ACTIONS(1346), - [sym_octal_integer_literal] = ACTIONS(1344), - [sym_binary_integer_literal] = ACTIONS(1344), - [sym_decimal_floating_point_literal] = ACTIONS(1344), - [sym_hex_floating_point_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1344), - [anon_sym_r] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_null] = ACTIONS(1346), - [anon_sym_throw] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_QMARK_QMARK] = ACTIONS(1344), - [anon_sym_QMARK] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1344), - [anon_sym_AMP_AMP] = ACTIONS(1344), - [sym_equality_operator] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_LT_LT] = ACTIONS(1344), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_GT_GT_GT] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1344), - [anon_sym_TILDE_SLASH] = ACTIONS(1344), - [sym_increment_operator] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_await] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1344), - [anon_sym_assert] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_AT] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_abstract] = ACTIONS(1346), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_super] = ACTIONS(1346), - [anon_sym_void] = ACTIONS(1346), - [anon_sym_var] = ACTIONS(1346), - [anon_sym_covariant] = ACTIONS(1346), - [anon_sym_Function] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_new] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_final] = ACTIONS(1346), - [anon_sym_external] = ACTIONS(1346), - [anon_sym_this] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [sym_decimal_integer_literal] = ACTIONS(1326), - [sym_hex_integer_literal] = ACTIONS(1326), - [sym_octal_integer_literal] = ACTIONS(1324), - [sym_binary_integer_literal] = ACTIONS(1324), - [sym_decimal_floating_point_literal] = ACTIONS(1324), - [sym_hex_floating_point_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1324), - [anon_sym_r] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_null] = ACTIONS(1326), - [anon_sym_throw] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_QMARK_QMARK] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [sym_equality_operator] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1324), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_GT_GT_GT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_TILDE_SLASH] = ACTIONS(1324), - [sym_increment_operator] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_assert] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_try] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_abstract] = ACTIONS(1326), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_super] = ACTIONS(1326), - [anon_sym_void] = ACTIONS(1326), - [anon_sym_var] = ACTIONS(1326), - [anon_sym_covariant] = ACTIONS(1326), - [anon_sym_Function] = ACTIONS(1326), - [anon_sym_get] = ACTIONS(1326), - [anon_sym_set] = ACTIONS(1326), - [anon_sym_new] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_final] = ACTIONS(1326), - [anon_sym_external] = ACTIONS(1326), - [anon_sym_this] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [947] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym__unary_expression] = STATE(2273), - [sym_unary_expression] = STATE(2273), - [sym__postfix_expression] = STATE(2273), - [sym_postfix_expression] = STATE(2273), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [948] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym__unary_expression] = STATE(2273), - [sym_unary_expression] = STATE(2273), - [sym__postfix_expression] = STATE(2273), - [sym_postfix_expression] = STATE(2273), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [949] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym__unary_expression] = STATE(2273), - [sym_unary_expression] = STATE(2273), - [sym__postfix_expression] = STATE(2273), - [sym_postfix_expression] = STATE(2273), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_for] = ACTIONS(2198), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [950] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym__unary_expression] = STATE(2273), - [sym_unary_expression] = STATE(2273), - [sym__postfix_expression] = STATE(2273), - [sym_postfix_expression] = STATE(2273), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(528), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [951] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym__unary_expression] = STATE(2273), - [sym_unary_expression] = STATE(2273), - [sym__postfix_expression] = STATE(2273), - [sym_postfix_expression] = STATE(2273), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [979] = { + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1507), + [sym_decimal_integer_literal] = ACTIONS(1509), + [sym_hex_integer_literal] = ACTIONS(1509), + [sym_octal_integer_literal] = ACTIONS(1507), + [sym_binary_integer_literal] = ACTIONS(1507), + [sym_decimal_floating_point_literal] = ACTIONS(1507), + [sym_hex_floating_point_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1507), + [anon_sym_r] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_throw] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_QMARK_QMARK] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [sym_equality_operator] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_GT_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_TILDE_SLASH] = ACTIONS(1507), + [sym_increment_operator] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1509), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_abstract] = ACTIONS(1509), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_super] = ACTIONS(1509), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_covariant] = ACTIONS(1509), + [anon_sym_Function] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_final] = ACTIONS(1509), + [anon_sym_external] = ACTIONS(1509), + [anon_sym_this] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + }, + [980] = { + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1469), + [sym_decimal_integer_literal] = ACTIONS(1471), + [sym_hex_integer_literal] = ACTIONS(1471), + [sym_octal_integer_literal] = ACTIONS(1469), + [sym_binary_integer_literal] = ACTIONS(1469), + [sym_decimal_floating_point_literal] = ACTIONS(1469), + [sym_hex_floating_point_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1469), + [anon_sym_r] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1471), + [anon_sym_throw] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_QMARK_QMARK] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [sym_equality_operator] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_GT_GT_GT] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_TILDE_SLASH] = ACTIONS(1469), + [sym_increment_operator] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_await] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_class] = ACTIONS(1471), + [anon_sym_super] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1471), + [anon_sym_var] = ACTIONS(1471), + [anon_sym_covariant] = ACTIONS(1471), + [anon_sym_Function] = ACTIONS(1471), + [anon_sym_get] = ACTIONS(1471), + [anon_sym_set] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_final] = ACTIONS(1471), + [anon_sym_external] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + }, + [981] = { + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(1551), + [sym_decimal_integer_literal] = ACTIONS(1553), + [sym_hex_integer_literal] = ACTIONS(1553), + [sym_octal_integer_literal] = ACTIONS(1551), + [sym_binary_integer_literal] = ACTIONS(1551), + [sym_decimal_floating_point_literal] = ACTIONS(1551), + [sym_hex_floating_point_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1551), + [anon_sym_r] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_throw] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_QMARK_QMARK] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [sym_equality_operator] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_GT_GT_GT] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_TILDE_SLASH] = ACTIONS(1551), + [sym_increment_operator] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_TILDE] = ACTIONS(1553), + [anon_sym_await] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_abstract] = ACTIONS(1553), + [anon_sym_class] = ACTIONS(1553), + [anon_sym_super] = ACTIONS(1553), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_covariant] = ACTIONS(1553), + [anon_sym_Function] = ACTIONS(1553), + [anon_sym_get] = ACTIONS(1553), + [anon_sym_set] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_final] = ACTIONS(1553), + [anon_sym_external] = ACTIONS(1553), + [anon_sym_this] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + }, + [982] = { + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(1591), + [sym_decimal_integer_literal] = ACTIONS(1593), + [sym_hex_integer_literal] = ACTIONS(1593), + [sym_octal_integer_literal] = ACTIONS(1591), + [sym_binary_integer_literal] = ACTIONS(1591), + [sym_decimal_floating_point_literal] = ACTIONS(1591), + [sym_hex_floating_point_literal] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1591), + [anon_sym_r] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_COMMA] = ACTIONS(1591), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_throw] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_QMARK_QMARK] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_PIPE_PIPE] = ACTIONS(1591), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [sym_equality_operator] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1593), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_LT_LT] = ACTIONS(1591), + [anon_sym_GT_GT] = ACTIONS(1593), + [anon_sym_GT_GT_GT] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1593), + [anon_sym_PERCENT] = ACTIONS(1591), + [anon_sym_TILDE_SLASH] = ACTIONS(1591), + [sym_increment_operator] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_TILDE] = ACTIONS(1593), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1591), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_AT] = ACTIONS(1591), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_abstract] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_super] = ACTIONS(1593), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_covariant] = ACTIONS(1593), + [anon_sym_Function] = ACTIONS(1593), + [anon_sym_get] = ACTIONS(1593), + [anon_sym_set] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_final] = ACTIONS(1593), + [anon_sym_external] = ACTIONS(1593), + [anon_sym_this] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + }, + [983] = { + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(1555), + [sym_decimal_integer_literal] = ACTIONS(1557), + [sym_hex_integer_literal] = ACTIONS(1557), + [sym_octal_integer_literal] = ACTIONS(1555), + [sym_binary_integer_literal] = ACTIONS(1555), + [sym_decimal_floating_point_literal] = ACTIONS(1555), + [sym_hex_floating_point_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1555), + [anon_sym_r] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_COMMA] = ACTIONS(1555), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_QMARK_QMARK] = ACTIONS(1555), + [anon_sym_QMARK] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [sym_equality_operator] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_GT_GT_GT] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_TILDE_SLASH] = ACTIONS(1555), + [sym_increment_operator] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1557), + [anon_sym_await] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_yield] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_AT] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1557), + [anon_sym_super] = ACTIONS(1557), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_covariant] = ACTIONS(1557), + [anon_sym_Function] = ACTIONS(1557), + [anon_sym_get] = ACTIONS(1557), + [anon_sym_set] = ACTIONS(1557), + [anon_sym_new] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_final] = ACTIONS(1557), + [anon_sym_external] = ACTIONS(1557), + [anon_sym_this] = ACTIONS(1557), + [sym_comment] = ACTIONS(3), + }, + [984] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym__unary_expression] = STATE(2310), + [sym_unary_expression] = STATE(2310), + [sym__postfix_expression] = STATE(2310), + [sym_postfix_expression] = STATE(2310), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_await] = ACTIONS(528), - [anon_sym_for] = ACTIONS(2202), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [952] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym__unary_expression] = STATE(2273), - [sym_unary_expression] = STATE(2273), - [sym__postfix_expression] = STATE(2273), - [sym_postfix_expression] = STATE(2273), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [985] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym__unary_expression] = STATE(2310), + [sym_unary_expression] = STATE(2310), + [sym__postfix_expression] = STATE(2310), + [sym_postfix_expression] = STATE(2310), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_await] = ACTIONS(528), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [953] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym__unary_expression] = STATE(2273), - [sym_unary_expression] = STATE(2273), - [sym__postfix_expression] = STATE(2273), - [sym_postfix_expression] = STATE(2273), - [sym_prefix_operator] = STATE(2640), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2833), - [sym_formal_parameter_list] = STATE(2833), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1736), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [954] = { - [sym__literal] = STATE(1002), - [sym_symbol_literal] = STATE(1002), - [sym_true] = STATE(1002), - [sym_false] = STATE(1002), - [sym_string_literal] = STATE(1002), - [sym__string_literal_double_quotes] = STATE(1364), - [sym__string_literal_single_quotes] = STATE(1364), - [sym__string_literal_double_quotes_multiple] = STATE(1364), - [sym__string_literal_single_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_double_quotes] = STATE(1364), - [sym__raw_string_literal_single_quotes] = STATE(1364), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1364), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1364), - [sym_list_literal] = STATE(1002), - [sym_set_or_map_literal] = STATE(1002), - [sym_null_literal] = STATE(1002), - [sym_assignable_expression] = STATE(3370), - [sym_function_expression] = STATE(1002), - [sym__unary_expression] = STATE(1335), - [sym_unary_expression] = STATE(1335), - [sym__postfix_expression] = STATE(1335), - [sym_postfix_expression] = STATE(1335), - [sym_prefix_operator] = STATE(2662), - [sym_minus_operator] = STATE(2856), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2856), - [sym_await_expression] = STATE(1338), - [sym_new_expression] = STATE(1002), - [sym_const_object_expression] = STATE(1002), - [sym__primary] = STATE(1002), - [sym_constructor_invocation] = STATE(1016), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3304), - [sym__formal_parameter_part] = STATE(2817), - [sym_formal_parameter_list] = STATE(2817), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2610), - [sym__const_builtin] = STATE(2546), - [sym_this] = STATE(1002), - [sym_super] = STATE(3108), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [sym_decimal_integer_literal] = ACTIONS(1930), - [sym_hex_integer_literal] = ACTIONS(1930), - [sym_octal_integer_literal] = ACTIONS(1932), - [sym_binary_integer_literal] = ACTIONS(1932), - [sym_decimal_floating_point_literal] = ACTIONS(1932), - [sym_hex_floating_point_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1654), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1656), - [anon_sym_r] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1850), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [955] = { - [sym__literal] = STATE(102), - [sym_symbol_literal] = STATE(102), - [sym_true] = STATE(102), - [sym_false] = STATE(102), - [sym_string_literal] = STATE(102), - [sym__string_literal_double_quotes] = STATE(270), - [sym__string_literal_single_quotes] = STATE(270), - [sym__string_literal_double_quotes_multiple] = STATE(270), - [sym__string_literal_single_quotes_multiple] = STATE(270), - [sym__raw_string_literal_double_quotes] = STATE(270), - [sym__raw_string_literal_single_quotes] = STATE(270), - [sym__raw_string_literal_double_quotes_multiple] = STATE(270), - [sym__raw_string_literal_single_quotes_multiple] = STATE(270), - [sym_list_literal] = STATE(102), - [sym_set_or_map_literal] = STATE(102), - [sym_null_literal] = STATE(102), - [sym_assignable_expression] = STATE(3397), - [sym_function_expression] = STATE(102), - [sym__unary_expression] = STATE(293), - [sym_unary_expression] = STATE(293), - [sym__postfix_expression] = STATE(293), - [sym_postfix_expression] = STATE(293), - [sym_prefix_operator] = STATE(2653), - [sym_minus_operator] = STATE(2797), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2797), - [sym_await_expression] = STATE(303), - [sym_new_expression] = STATE(102), - [sym_const_object_expression] = STATE(102), - [sym__primary] = STATE(102), - [sym_constructor_invocation] = STATE(105), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3286), - [sym__formal_parameter_part] = STATE(2889), - [sym_formal_parameter_list] = STATE(2889), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2599), - [sym__const_builtin] = STATE(2595), - [sym_this] = STATE(102), - [sym_super] = STATE(3315), - [sym_identifier] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [sym_decimal_integer_literal] = ACTIONS(2069), - [sym_hex_integer_literal] = ACTIONS(2069), - [sym_octal_integer_literal] = ACTIONS(2071), - [sym_binary_integer_literal] = ACTIONS(2071), - [sym_decimal_floating_point_literal] = ACTIONS(2071), - [sym_hex_floating_point_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1708), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1710), - [anon_sym_r] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1724), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_this] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - }, - [956] = { - [sym__literal] = STATE(334), - [sym_symbol_literal] = STATE(334), - [sym_true] = STATE(334), - [sym_false] = STATE(334), - [sym_string_literal] = STATE(334), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(334), - [sym_set_or_map_literal] = STATE(334), - [sym_null_literal] = STATE(334), - [sym_assignable_expression] = STATE(3456), - [sym_function_expression] = STATE(334), - [sym__unary_expression] = STATE(869), - [sym_unary_expression] = STATE(869), - [sym__postfix_expression] = STATE(869), - [sym_postfix_expression] = STATE(869), - [sym_prefix_operator] = STATE(2645), - [sym_minus_operator] = STATE(2778), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2778), - [sym_await_expression] = STATE(898), - [sym_new_expression] = STATE(334), - [sym_const_object_expression] = STATE(334), - [sym__primary] = STATE(334), - [sym_constructor_invocation] = STATE(331), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(334), - [sym_super] = STATE(3203), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(2022), - [sym_hex_integer_literal] = ACTIONS(2022), - [sym_octal_integer_literal] = ACTIONS(2024), - [sym_binary_integer_literal] = ACTIONS(2024), - [sym_decimal_floating_point_literal] = ACTIONS(2024), - [sym_hex_floating_point_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - }, - [957] = { - [sym__literal] = STATE(1498), - [sym_symbol_literal] = STATE(1498), - [sym_true] = STATE(1498), - [sym_false] = STATE(1498), - [sym_string_literal] = STATE(1498), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1498), - [sym_set_or_map_literal] = STATE(1498), - [sym_null_literal] = STATE(1498), - [sym_assignable_expression] = STATE(3489), - [sym_function_expression] = STATE(1498), - [sym__unary_expression] = STATE(2136), - [sym_unary_expression] = STATE(2136), - [sym__postfix_expression] = STATE(2136), - [sym_postfix_expression] = STATE(2136), - [sym_prefix_operator] = STATE(2655), - [sym_minus_operator] = STATE(2799), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2799), - [sym_await_expression] = STATE(2143), - [sym_new_expression] = STATE(1498), - [sym_const_object_expression] = STATE(1498), - [sym__primary] = STATE(1498), - [sym_constructor_invocation] = STATE(1531), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1498), - [sym_super] = STATE(3084), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2010), - [sym_hex_integer_literal] = ACTIONS(2010), - [sym_octal_integer_literal] = ACTIONS(2012), - [sym_binary_integer_literal] = ACTIONS(2012), - [sym_decimal_floating_point_literal] = ACTIONS(2012), - [sym_hex_floating_point_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - }, - [958] = { - [sym__literal] = STATE(1492), - [sym_symbol_literal] = STATE(1492), - [sym_true] = STATE(1492), - [sym_false] = STATE(1492), - [sym_string_literal] = STATE(1492), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1492), - [sym_set_or_map_literal] = STATE(1492), - [sym_null_literal] = STATE(1492), - [sym_assignable_expression] = STATE(3499), - [sym_function_expression] = STATE(1492), - [sym__unary_expression] = STATE(1821), - [sym_unary_expression] = STATE(1821), - [sym__postfix_expression] = STATE(1821), - [sym_postfix_expression] = STATE(1821), - [sym_prefix_operator] = STATE(2657), - [sym_minus_operator] = STATE(2812), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2812), - [sym_await_expression] = STATE(1864), - [sym_new_expression] = STATE(1492), - [sym_const_object_expression] = STATE(1492), - [sym__primary] = STATE(1492), - [sym_constructor_invocation] = STATE(1497), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3284), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1492), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2018), - [sym_hex_integer_literal] = ACTIONS(2018), - [sym_octal_integer_literal] = ACTIONS(2020), - [sym_binary_integer_literal] = ACTIONS(2020), - [sym_decimal_floating_point_literal] = ACTIONS(2020), - [sym_hex_floating_point_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [959] = { - [sym__literal] = STATE(1508), - [sym_symbol_literal] = STATE(1508), - [sym_true] = STATE(1508), - [sym_false] = STATE(1508), - [sym_string_literal] = STATE(1508), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1508), - [sym_set_or_map_literal] = STATE(1508), - [sym_null_literal] = STATE(1508), - [sym_assignable_expression] = STATE(3496), - [sym_function_expression] = STATE(1508), - [sym__unary_expression] = STATE(2107), - [sym_unary_expression] = STATE(2107), - [sym__postfix_expression] = STATE(2107), - [sym_postfix_expression] = STATE(2107), - [sym_prefix_operator] = STATE(2643), - [sym_minus_operator] = STATE(2771), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2771), - [sym_await_expression] = STATE(2125), - [sym_new_expression] = STATE(1508), - [sym_const_object_expression] = STATE(1508), - [sym__primary] = STATE(1508), - [sym_constructor_invocation] = STATE(1540), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1508), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(2014), - [sym_hex_integer_literal] = ACTIONS(2014), - [sym_octal_integer_literal] = ACTIONS(2016), - [sym_binary_integer_literal] = ACTIONS(2016), - [sym_decimal_floating_point_literal] = ACTIONS(2016), - [sym_hex_floating_point_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [960] = { - [sym__literal] = STATE(992), - [sym_symbol_literal] = STATE(992), - [sym_true] = STATE(992), - [sym_false] = STATE(992), - [sym_string_literal] = STATE(992), - [sym__string_literal_double_quotes] = STATE(1129), - [sym__string_literal_single_quotes] = STATE(1129), - [sym__string_literal_double_quotes_multiple] = STATE(1129), - [sym__string_literal_single_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_double_quotes] = STATE(1129), - [sym__raw_string_literal_single_quotes] = STATE(1129), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1129), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1129), - [sym_list_literal] = STATE(992), - [sym_set_or_map_literal] = STATE(992), - [sym_null_literal] = STATE(992), - [sym_assignable_expression] = STATE(3513), - [sym_function_expression] = STATE(992), - [sym__unary_expression] = STATE(1376), - [sym_unary_expression] = STATE(1376), - [sym__postfix_expression] = STATE(1376), - [sym_postfix_expression] = STATE(1376), - [sym_prefix_operator] = STATE(2635), - [sym_minus_operator] = STATE(2859), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2859), - [sym_await_expression] = STATE(1406), - [sym_new_expression] = STATE(992), - [sym_const_object_expression] = STATE(992), - [sym__primary] = STATE(992), - [sym_constructor_invocation] = STATE(1007), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3283), - [sym__formal_parameter_part] = STATE(2779), - [sym_formal_parameter_list] = STATE(2779), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2564), - [sym__const_builtin] = STATE(2575), - [sym_this] = STATE(992), - [sym_super] = STATE(3129), - [sym_identifier] = ACTIONS(857), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [986] = { + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1309), + [sym_decimal_integer_literal] = ACTIONS(1311), + [sym_hex_integer_literal] = ACTIONS(1311), + [sym_octal_integer_literal] = ACTIONS(1309), + [sym_binary_integer_literal] = ACTIONS(1309), + [sym_decimal_floating_point_literal] = ACTIONS(1309), + [sym_hex_floating_point_literal] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1309), + [anon_sym_r] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1311), + [anon_sym_throw] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_QMARK_QMARK] = ACTIONS(1309), + [anon_sym_QMARK] = ACTIONS(1311), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [sym_equality_operator] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_LT_LT] = ACTIONS(1309), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_GT_GT_GT] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1309), + [anon_sym_TILDE_SLASH] = ACTIONS(1309), + [sym_increment_operator] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_await] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_yield] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_abstract] = ACTIONS(1311), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_super] = ACTIONS(1311), + [anon_sym_void] = ACTIONS(1311), + [anon_sym_var] = ACTIONS(1311), + [anon_sym_covariant] = ACTIONS(1311), + [anon_sym_Function] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(1311), + [anon_sym_set] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_final] = ACTIONS(1311), + [anon_sym_external] = ACTIONS(1311), + [anon_sym_this] = ACTIONS(1311), + [sym_comment] = ACTIONS(3), + }, + [987] = { + [ts_builtin_sym_end] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1577), + [anon_sym_POUND] = ACTIONS(1575), + [sym_decimal_integer_literal] = ACTIONS(1577), + [sym_hex_integer_literal] = ACTIONS(1577), + [sym_octal_integer_literal] = ACTIONS(1575), + [sym_binary_integer_literal] = ACTIONS(1575), + [sym_decimal_floating_point_literal] = ACTIONS(1575), + [sym_hex_floating_point_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1575), + [anon_sym_r] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_throw] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_QMARK_QMARK] = ACTIONS(1575), + [anon_sym_QMARK] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1575), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [sym_equality_operator] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_LT_LT] = ACTIONS(1575), + [anon_sym_GT_GT] = ACTIONS(1577), + [anon_sym_GT_GT_GT] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1577), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_TILDE_SLASH] = ACTIONS(1575), + [sym_increment_operator] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1577), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_yield] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_try] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_abstract] = ACTIONS(1577), + [anon_sym_class] = ACTIONS(1577), + [anon_sym_super] = ACTIONS(1577), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_covariant] = ACTIONS(1577), + [anon_sym_Function] = ACTIONS(1577), + [anon_sym_get] = ACTIONS(1577), + [anon_sym_set] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_final] = ACTIONS(1577), + [anon_sym_external] = ACTIONS(1577), + [anon_sym_this] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [988] = { + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(1461), + [sym_decimal_integer_literal] = ACTIONS(1463), + [sym_hex_integer_literal] = ACTIONS(1463), + [sym_octal_integer_literal] = ACTIONS(1461), + [sym_binary_integer_literal] = ACTIONS(1461), + [sym_decimal_floating_point_literal] = ACTIONS(1461), + [sym_hex_floating_point_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1461), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1461), + [anon_sym_r] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1463), + [anon_sym_throw] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_QMARK_QMARK] = ACTIONS(1461), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [sym_equality_operator] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_GT_GT_GT] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_TILDE_SLASH] = ACTIONS(1461), + [sym_increment_operator] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_await] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_abstract] = ACTIONS(1463), + [anon_sym_class] = ACTIONS(1463), + [anon_sym_super] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1463), + [anon_sym_var] = ACTIONS(1463), + [anon_sym_covariant] = ACTIONS(1463), + [anon_sym_Function] = ACTIONS(1463), + [anon_sym_get] = ACTIONS(1463), + [anon_sym_set] = ACTIONS(1463), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_final] = ACTIONS(1463), + [anon_sym_external] = ACTIONS(1463), + [anon_sym_this] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + }, + [989] = { + [sym__literal] = STATE(1538), + [sym_symbol_literal] = STATE(1538), + [sym_true] = STATE(1538), + [sym_false] = STATE(1538), + [sym_string_literal] = STATE(1538), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1538), + [sym_set_or_map_literal] = STATE(1538), + [sym_null_literal] = STATE(1538), + [sym_assignable_expression] = STATE(3437), + [sym_function_expression] = STATE(1538), + [sym__unary_expression] = STATE(2130), + [sym_unary_expression] = STATE(2130), + [sym__postfix_expression] = STATE(2130), + [sym_postfix_expression] = STATE(2130), + [sym_prefix_operator] = STATE(2685), + [sym_minus_operator] = STATE(2911), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2911), + [sym_await_expression] = STATE(2134), + [sym_new_expression] = STATE(1538), + [sym_const_object_expression] = STATE(1538), + [sym__primary] = STATE(1538), + [sym_constructor_invocation] = STATE(1570), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1538), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(2099), + [sym_hex_integer_literal] = ACTIONS(2099), + [sym_octal_integer_literal] = ACTIONS(2101), + [sym_binary_integer_literal] = ACTIONS(2101), + [sym_decimal_floating_point_literal] = ACTIONS(2101), + [sym_hex_floating_point_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1798), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [990] = { + [sym__literal] = STATE(1554), + [sym_symbol_literal] = STATE(1554), + [sym_true] = STATE(1554), + [sym_false] = STATE(1554), + [sym_string_literal] = STATE(1554), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1554), + [sym_set_or_map_literal] = STATE(1554), + [sym_null_literal] = STATE(1554), + [sym_assignable_expression] = STATE(3476), + [sym_function_expression] = STATE(1554), + [sym__unary_expression] = STATE(1937), + [sym_unary_expression] = STATE(1937), + [sym__postfix_expression] = STATE(1937), + [sym_postfix_expression] = STATE(1937), + [sym_prefix_operator] = STATE(2681), + [sym_minus_operator] = STATE(2915), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2915), + [sym_await_expression] = STATE(1945), + [sym_new_expression] = STATE(1554), + [sym_const_object_expression] = STATE(1554), + [sym__primary] = STATE(1554), + [sym_constructor_invocation] = STATE(1550), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3333), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1554), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1967), + [sym_hex_integer_literal] = ACTIONS(1967), + [sym_octal_integer_literal] = ACTIONS(1969), + [sym_binary_integer_literal] = ACTIONS(1969), + [sym_decimal_floating_point_literal] = ACTIONS(1969), + [sym_hex_floating_point_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1780), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [991] = { + [sym__literal] = STATE(1543), + [sym_symbol_literal] = STATE(1543), + [sym_true] = STATE(1543), + [sym_false] = STATE(1543), + [sym_string_literal] = STATE(1543), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1543), + [sym_set_or_map_literal] = STATE(1543), + [sym_null_literal] = STATE(1543), + [sym_assignable_expression] = STATE(3417), + [sym_function_expression] = STATE(1543), + [sym__unary_expression] = STATE(1815), + [sym_unary_expression] = STATE(1815), + [sym__postfix_expression] = STATE(1815), + [sym_postfix_expression] = STATE(1815), + [sym_prefix_operator] = STATE(2700), + [sym_minus_operator] = STATE(2914), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2914), + [sym_await_expression] = STATE(1827), + [sym_new_expression] = STATE(1543), + [sym_const_object_expression] = STATE(1543), + [sym__primary] = STATE(1543), + [sym_constructor_invocation] = STATE(1525), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3357), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1543), + [sym_super] = STATE(3264), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2007), + [sym_hex_integer_literal] = ACTIONS(2007), + [sym_octal_integer_literal] = ACTIONS(2009), + [sym_binary_integer_literal] = ACTIONS(2009), + [sym_decimal_floating_point_literal] = ACTIONS(2009), + [sym_hex_floating_point_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [992] = { + [sym__literal] = STATE(371), + [sym_symbol_literal] = STATE(371), + [sym_true] = STATE(371), + [sym_false] = STATE(371), + [sym_string_literal] = STATE(371), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(371), + [sym_set_or_map_literal] = STATE(371), + [sym_null_literal] = STATE(371), + [sym_assignable_expression] = STATE(3472), + [sym_function_expression] = STATE(371), + [sym__unary_expression] = STATE(842), + [sym_unary_expression] = STATE(842), + [sym__postfix_expression] = STATE(842), + [sym_postfix_expression] = STATE(842), + [sym_prefix_operator] = STATE(2691), + [sym_minus_operator] = STATE(2818), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2818), + [sym_await_expression] = STATE(835), + [sym_new_expression] = STATE(371), + [sym_const_object_expression] = STATE(371), + [sym__primary] = STATE(371), + [sym_constructor_invocation] = STATE(375), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(371), + [sym_super] = STATE(3266), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2047), + [sym_hex_integer_literal] = ACTIONS(2047), + [sym_octal_integer_literal] = ACTIONS(2049), + [sym_binary_integer_literal] = ACTIONS(2049), + [sym_decimal_floating_point_literal] = ACTIONS(2049), + [sym_hex_floating_point_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1834), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + }, + [993] = { + [sym__literal] = STATE(105), + [sym_symbol_literal] = STATE(105), + [sym_true] = STATE(105), + [sym_false] = STATE(105), + [sym_string_literal] = STATE(105), + [sym__string_literal_double_quotes] = STATE(335), + [sym__string_literal_single_quotes] = STATE(335), + [sym__string_literal_double_quotes_multiple] = STATE(335), + [sym__string_literal_single_quotes_multiple] = STATE(335), + [sym__raw_string_literal_double_quotes] = STATE(335), + [sym__raw_string_literal_single_quotes] = STATE(335), + [sym__raw_string_literal_double_quotes_multiple] = STATE(335), + [sym__raw_string_literal_single_quotes_multiple] = STATE(335), + [sym_list_literal] = STATE(105), + [sym_set_or_map_literal] = STATE(105), + [sym_null_literal] = STATE(105), + [sym_assignable_expression] = STATE(3540), + [sym_function_expression] = STATE(105), + [sym__unary_expression] = STATE(284), + [sym_unary_expression] = STATE(284), + [sym__postfix_expression] = STATE(284), + [sym_postfix_expression] = STATE(284), + [sym_prefix_operator] = STATE(2702), + [sym_minus_operator] = STATE(2833), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2833), + [sym_await_expression] = STATE(327), + [sym_new_expression] = STATE(105), + [sym_const_object_expression] = STATE(105), + [sym__primary] = STATE(105), + [sym_constructor_invocation] = STATE(104), + [sym_type_arguments] = STATE(3481), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3347), + [sym__formal_parameter_part] = STATE(2824), + [sym_formal_parameter_list] = STATE(2824), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2606), + [sym__const_builtin] = STATE(2593), + [sym_this] = STATE(105), + [sym_super] = STATE(3376), + [sym_identifier] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1722), + [sym_decimal_integer_literal] = ACTIONS(2083), + [sym_hex_integer_literal] = ACTIONS(2083), + [sym_octal_integer_literal] = ACTIONS(2085), + [sym_binary_integer_literal] = ACTIONS(2085), + [sym_decimal_floating_point_literal] = ACTIONS(2085), + [sym_hex_floating_point_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1740), + [anon_sym_r] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_this] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + }, + [994] = { + [sym__literal] = STATE(1524), + [sym_symbol_literal] = STATE(1524), + [sym_true] = STATE(1524), + [sym_false] = STATE(1524), + [sym_string_literal] = STATE(1524), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1524), + [sym_set_or_map_literal] = STATE(1524), + [sym_null_literal] = STATE(1524), + [sym_assignable_expression] = STATE(3394), + [sym_function_expression] = STATE(1524), + [sym__unary_expression] = STATE(2070), + [sym_unary_expression] = STATE(2070), + [sym__postfix_expression] = STATE(2070), + [sym_postfix_expression] = STATE(2070), + [sym_prefix_operator] = STATE(2688), + [sym_minus_operator] = STATE(2890), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2890), + [sym_await_expression] = STATE(2100), + [sym_new_expression] = STATE(1524), + [sym_const_object_expression] = STATE(1524), + [sym__primary] = STATE(1524), + [sym_constructor_invocation] = STATE(1561), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1524), + [sym_super] = STATE(3264), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2039), + [sym_hex_integer_literal] = ACTIONS(2039), + [sym_octal_integer_literal] = ACTIONS(2041), + [sym_binary_integer_literal] = ACTIONS(2041), + [sym_decimal_floating_point_literal] = ACTIONS(2041), + [sym_hex_floating_point_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [995] = { + [sym__literal] = STATE(1043), + [sym_symbol_literal] = STATE(1043), + [sym_true] = STATE(1043), + [sym_false] = STATE(1043), + [sym_string_literal] = STATE(1043), + [sym__string_literal_double_quotes] = STATE(1190), + [sym__string_literal_single_quotes] = STATE(1190), + [sym__string_literal_double_quotes_multiple] = STATE(1190), + [sym__string_literal_single_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_double_quotes] = STATE(1190), + [sym__raw_string_literal_single_quotes] = STATE(1190), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1190), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1190), + [sym_list_literal] = STATE(1043), + [sym_set_or_map_literal] = STATE(1043), + [sym_null_literal] = STATE(1043), + [sym_assignable_expression] = STATE(3392), + [sym_function_expression] = STATE(1043), + [sym__unary_expression] = STATE(1481), + [sym_unary_expression] = STATE(1481), + [sym__postfix_expression] = STATE(1481), + [sym_postfix_expression] = STATE(1481), + [sym_prefix_operator] = STATE(2706), + [sym_minus_operator] = STATE(2912), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2912), + [sym_await_expression] = STATE(1449), + [sym_new_expression] = STATE(1043), + [sym_const_object_expression] = STATE(1043), + [sym__primary] = STATE(1043), + [sym_constructor_invocation] = STATE(1047), + [sym_type_arguments] = STATE(3468), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3329), + [sym__formal_parameter_part] = STATE(2925), + [sym_formal_parameter_list] = STATE(2925), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2644), + [sym__const_builtin] = STATE(2616), + [sym_this] = STATE(1043), + [sym_super] = STATE(3294), + [sym_identifier] = ACTIONS(807), [anon_sym_POUND] = ACTIONS(113), - [sym_decimal_integer_literal] = ACTIONS(1970), - [sym_hex_integer_literal] = ACTIONS(1970), - [sym_octal_integer_literal] = ACTIONS(1972), - [sym_binary_integer_literal] = ACTIONS(1972), - [sym_decimal_floating_point_literal] = ACTIONS(1972), - [sym_hex_floating_point_literal] = ACTIONS(1970), + [sym_decimal_integer_literal] = ACTIONS(2095), + [sym_hex_integer_literal] = ACTIONS(2095), + [sym_octal_integer_literal] = ACTIONS(2097), + [sym_binary_integer_literal] = ACTIONS(2097), + [sym_decimal_floating_point_literal] = ACTIONS(2097), + [sym_hex_floating_point_literal] = ACTIONS(2095), [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(502), @@ -100142,148 +104757,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1632), + [sym_increment_operator] = ACTIONS(1806), [anon_sym_BANG] = ACTIONS(45), [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1634), + [anon_sym_await] = ACTIONS(1808), [anon_sym_super] = ACTIONS(81), [anon_sym_new] = ACTIONS(101), - [anon_sym_const] = ACTIONS(861), + [anon_sym_const] = ACTIONS(811), [anon_sym_this] = ACTIONS(109), [sym_comment] = ACTIONS(3), }, - [961] = { - [sym__literal] = STATE(1496), - [sym_symbol_literal] = STATE(1496), - [sym_true] = STATE(1496), - [sym_false] = STATE(1496), - [sym_string_literal] = STATE(1496), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1496), - [sym_set_or_map_literal] = STATE(1496), - [sym_null_literal] = STATE(1496), - [sym_assignable_expression] = STATE(3405), - [sym_function_expression] = STATE(1496), - [sym__unary_expression] = STATE(2276), - [sym_unary_expression] = STATE(2276), - [sym__postfix_expression] = STATE(2276), - [sym_postfix_expression] = STATE(2276), - [sym_prefix_operator] = STATE(2651), - [sym_minus_operator] = STATE(2887), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2887), - [sym_await_expression] = STATE(2241), - [sym_new_expression] = STATE(1496), - [sym_const_object_expression] = STATE(1496), - [sym__primary] = STATE(1496), - [sym_constructor_invocation] = STATE(1520), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3289), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1496), - [sym_super] = STATE(3084), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(1938), - [sym_hex_integer_literal] = ACTIONS(1938), - [sym_octal_integer_literal] = ACTIONS(1940), - [sym_binary_integer_literal] = ACTIONS(1940), - [sym_decimal_floating_point_literal] = ACTIONS(1940), - [sym_hex_floating_point_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - }, - [962] = { - [sym__literal] = STATE(1500), - [sym_symbol_literal] = STATE(1500), - [sym_true] = STATE(1500), - [sym_false] = STATE(1500), - [sym_string_literal] = STATE(1500), - [sym__string_literal_double_quotes] = STATE(1833), - [sym__string_literal_single_quotes] = STATE(1833), - [sym__string_literal_double_quotes_multiple] = STATE(1833), - [sym__string_literal_single_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_double_quotes] = STATE(1833), - [sym__raw_string_literal_single_quotes] = STATE(1833), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1833), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1833), - [sym_list_literal] = STATE(1500), - [sym_set_or_map_literal] = STATE(1500), - [sym_null_literal] = STATE(1500), - [sym_assignable_expression] = STATE(3347), - [sym_function_expression] = STATE(1500), - [sym__unary_expression] = STATE(2273), - [sym_unary_expression] = STATE(2273), - [sym__postfix_expression] = STATE(2273), - [sym_postfix_expression] = STATE(2273), - [sym_prefix_operator] = STATE(2642), - [sym_minus_operator] = STATE(2857), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2857), - [sym_await_expression] = STATE(2250), - [sym_new_expression] = STATE(1500), - [sym_const_object_expression] = STATE(1500), - [sym__primary] = STATE(1500), - [sym_constructor_invocation] = STATE(1532), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3100), - [sym__formal_parameter_part] = STATE(2830), - [sym_formal_parameter_list] = STATE(2830), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2620), - [sym__const_builtin] = STATE(2629), - [sym_this] = STATE(1500), - [sym_super] = STATE(3269), - [sym_identifier] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [sym_decimal_integer_literal] = ACTIONS(1898), - [sym_hex_integer_literal] = ACTIONS(1898), - [sym_octal_integer_literal] = ACTIONS(1900), - [sym_binary_integer_literal] = ACTIONS(1900), - [sym_decimal_floating_point_literal] = ACTIONS(1900), - [sym_hex_floating_point_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_r] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_null] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), + [996] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym__unary_expression] = STATE(2310), + [sym_unary_expression] = STATE(2310), + [sym__postfix_expression] = STATE(2310), + [sym_postfix_expression] = STATE(2310), + [sym_prefix_operator] = STATE(2701), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2837), + [sym_formal_parameter_list] = STATE(2837), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), [anon_sym_LT] = ACTIONS(39), [anon_sym_DASH] = ACTIONS(41), [sym_increment_operator] = ACTIONS(43), @@ -100291,377 +104836,529 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(47), [anon_sym_await] = ACTIONS(528), [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - }, - [963] = { - [sym__literal] = STATE(1512), - [sym_symbol_literal] = STATE(1512), - [sym_true] = STATE(1512), - [sym_false] = STATE(1512), - [sym_string_literal] = STATE(1512), - [sym__string_literal_double_quotes] = STATE(1865), - [sym__string_literal_single_quotes] = STATE(1865), - [sym__string_literal_double_quotes_multiple] = STATE(1865), - [sym__string_literal_single_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_double_quotes] = STATE(1865), - [sym__raw_string_literal_single_quotes] = STATE(1865), - [sym__raw_string_literal_double_quotes_multiple] = STATE(1865), - [sym__raw_string_literal_single_quotes_multiple] = STATE(1865), - [sym_list_literal] = STATE(1512), - [sym_set_or_map_literal] = STATE(1512), - [sym_null_literal] = STATE(1512), - [sym_assignable_expression] = STATE(3340), - [sym_function_expression] = STATE(1512), - [sym__unary_expression] = STATE(1894), - [sym_unary_expression] = STATE(1894), - [sym__postfix_expression] = STATE(1894), - [sym_postfix_expression] = STATE(1894), - [sym_prefix_operator] = STATE(2656), - [sym_minus_operator] = STATE(2861), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2861), - [sym_await_expression] = STATE(1905), - [sym_new_expression] = STATE(1512), - [sym_const_object_expression] = STATE(1512), - [sym__primary] = STATE(1512), - [sym_constructor_invocation] = STATE(1491), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3291), - [sym__formal_parameter_part] = STATE(2793), - [sym_formal_parameter_list] = STATE(2793), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2592), - [sym__const_builtin] = STATE(2614), - [sym_this] = STATE(1512), - [sym_super] = STATE(3084), - [sym_identifier] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1936), - [sym_decimal_integer_literal] = ACTIONS(2073), - [sym_hex_integer_literal] = ACTIONS(2073), - [sym_octal_integer_literal] = ACTIONS(2075), - [sym_binary_integer_literal] = ACTIONS(2075), - [sym_decimal_floating_point_literal] = ACTIONS(2075), - [sym_hex_floating_point_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1954), - [anon_sym_r] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - }, - [964] = { - [sym__literal] = STATE(330), - [sym_symbol_literal] = STATE(330), - [sym_true] = STATE(330), - [sym_false] = STATE(330), - [sym_string_literal] = STATE(330), - [sym__string_literal_double_quotes] = STATE(817), - [sym__string_literal_single_quotes] = STATE(817), - [sym__string_literal_double_quotes_multiple] = STATE(817), - [sym__string_literal_single_quotes_multiple] = STATE(817), - [sym__raw_string_literal_double_quotes] = STATE(817), - [sym__raw_string_literal_single_quotes] = STATE(817), - [sym__raw_string_literal_double_quotes_multiple] = STATE(817), - [sym__raw_string_literal_single_quotes_multiple] = STATE(817), - [sym_list_literal] = STATE(330), - [sym_set_or_map_literal] = STATE(330), - [sym_null_literal] = STATE(330), - [sym_assignable_expression] = STATE(3367), - [sym_function_expression] = STATE(330), - [sym__unary_expression] = STATE(764), - [sym_unary_expression] = STATE(764), - [sym__postfix_expression] = STATE(764), - [sym_postfix_expression] = STATE(764), - [sym_prefix_operator] = STATE(2636), - [sym_minus_operator] = STATE(2796), - [sym_negation_operator] = STATE(2965), - [sym_tilde_operator] = STATE(2796), - [sym_await_expression] = STATE(767), - [sym_new_expression] = STATE(330), - [sym_const_object_expression] = STATE(330), - [sym__primary] = STATE(330), - [sym_constructor_invocation] = STATE(332), - [sym_type_parameters] = STATE(3220), - [sym__type_name] = STATE(3285), - [sym__formal_parameter_part] = STATE(2853), - [sym_formal_parameter_list] = STATE(2853), - [sym__strict_formal_parameter_list] = STATE(2553), - [sym__new_builtin] = STATE(2556), - [sym__const_builtin] = STATE(2604), - [sym_this] = STATE(330), - [sym_super] = STATE(3203), - [sym_identifier] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1976), - [sym_decimal_integer_literal] = ACTIONS(1978), - [sym_hex_integer_literal] = ACTIONS(1978), - [sym_octal_integer_literal] = ACTIONS(1980), - [sym_binary_integer_literal] = ACTIONS(1980), - [sym_decimal_floating_point_literal] = ACTIONS(1980), - [sym_hex_floating_point_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1994), - [anon_sym_r] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(41), - [sym_increment_operator] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_await] = ACTIONS(1830), - [anon_sym_super] = ACTIONS(81), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - }, - [965] = { - [sym__annotation] = STATE(2669), - [sym_marker_annotation] = STATE(2669), - [sym_annotation] = STATE(2669), - [sym_import_or_export] = STATE(965), - [sym_library_import] = STATE(1053), - [sym_library_export] = STATE(1053), - [sym_import_specification] = STATE(1065), - [aux_sym__metadata] = STATE(2669), - [sym__export] = STATE(2482), - [sym__import] = STATE(2501), - [aux_sym_program_repeat1] = STATE(965), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2208), - [anon_sym_POUND] = ACTIONS(2206), - [sym_decimal_integer_literal] = ACTIONS(2208), - [sym_hex_integer_literal] = ACTIONS(2208), - [sym_octal_integer_literal] = ACTIONS(2206), - [sym_binary_integer_literal] = ACTIONS(2206), - [sym_decimal_floating_point_literal] = ACTIONS(2206), - [sym_hex_floating_point_literal] = ACTIONS(2208), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2206), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2206), - [anon_sym_r] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2208), - [sym_increment_operator] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_TILDE] = ACTIONS(2206), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_assert] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_super] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_covariant] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_Function] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_final] = ACTIONS(2208), - [anon_sym_external] = ACTIONS(2208), - [anon_sym_this] = ACTIONS(2208), - [sym_comment] = ACTIONS(3), - }, - [966] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2219), - [sym_decimal_integer_literal] = ACTIONS(2221), - [sym_hex_integer_literal] = ACTIONS(2221), - [sym_octal_integer_literal] = ACTIONS(2219), - [sym_binary_integer_literal] = ACTIONS(2219), - [sym_decimal_floating_point_literal] = ACTIONS(2219), - [sym_hex_floating_point_literal] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2219), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2219), - [anon_sym_r] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_null] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2221), - [sym_increment_operator] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_assert] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_super] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_covariant] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_factory] = ACTIONS(2221), - [anon_sym_Function] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_operator] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_final] = ACTIONS(2221), - [anon_sym_external] = ACTIONS(2221), - [anon_sym_this] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2219), - [sym_comment] = ACTIONS(3), - [sym__automatic_semicolon] = ACTIONS(2223), - }, - [967] = { - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(2225), - [sym_decimal_integer_literal] = ACTIONS(2227), - [sym_hex_integer_literal] = ACTIONS(2227), - [sym_octal_integer_literal] = ACTIONS(2225), - [sym_binary_integer_literal] = ACTIONS(2225), - [sym_decimal_floating_point_literal] = ACTIONS(2225), - [sym_hex_floating_point_literal] = ACTIONS(2227), - [anon_sym_true] = ACTIONS(2227), - [anon_sym_false] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2225), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2225), - [anon_sym_r] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_null] = ACTIONS(2227), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2227), - [sym_increment_operator] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_assert] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_abstract] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_super] = ACTIONS(2227), - [anon_sym_void] = ACTIONS(2227), - [anon_sym_var] = ACTIONS(2227), - [anon_sym_covariant] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_factory] = ACTIONS(2227), - [anon_sym_Function] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_operator] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_final] = ACTIONS(2227), - [anon_sym_external] = ACTIONS(2227), - [anon_sym_this] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2225), - [sym_comment] = ACTIONS(3), - }, - [968] = { - [aux_sym__if_null_expression] = STATE(1268), - [sym_shift_operator] = STATE(574), - [sym_additive_operator] = STATE(575), - [sym_multiplicative_operator] = STATE(576), - [sym_cascade_section] = STATE(1195), - [aux_sym__expression_repeat1] = STATE(1195), - [aux_sym_logical_or_expression_repeat1] = STATE(1269), - [aux_sym_logical_and_expression_repeat1] = STATE(1272), - [aux_sym_bitwise_or_expression_repeat1] = STATE(1289), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(1267), - [aux_sym_bitwise_and_expression_repeat1] = STATE(1251), - [aux_sym_shift_expression_repeat1] = STATE(1222), - [aux_sym_additive_expression_repeat1] = STATE(1221), - [aux_sym_multiplicative_expression_repeat1] = STATE(1220), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [997] = { + [sym__literal] = STATE(1050), + [sym_symbol_literal] = STATE(1050), + [sym_true] = STATE(1050), + [sym_false] = STATE(1050), + [sym_string_literal] = STATE(1050), + [sym__string_literal_double_quotes] = STATE(1340), + [sym__string_literal_single_quotes] = STATE(1340), + [sym__string_literal_double_quotes_multiple] = STATE(1340), + [sym__string_literal_single_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_double_quotes] = STATE(1340), + [sym__raw_string_literal_single_quotes] = STATE(1340), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1340), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1340), + [sym_list_literal] = STATE(1050), + [sym_set_or_map_literal] = STATE(1050), + [sym_null_literal] = STATE(1050), + [sym_assignable_expression] = STATE(3438), + [sym_function_expression] = STATE(1050), + [sym__unary_expression] = STATE(1336), + [sym_unary_expression] = STATE(1336), + [sym__postfix_expression] = STATE(1336), + [sym_postfix_expression] = STATE(1336), + [sym_prefix_operator] = STATE(2698), + [sym_minus_operator] = STATE(2835), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2835), + [sym_await_expression] = STATE(1402), + [sym_new_expression] = STATE(1050), + [sym_const_object_expression] = STATE(1050), + [sym__primary] = STATE(1050), + [sym_constructor_invocation] = STATE(1042), + [sym_type_arguments] = STATE(3449), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3359), + [sym__formal_parameter_part] = STATE(2820), + [sym_formal_parameter_list] = STATE(2820), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2628), + [sym__const_builtin] = STATE(2629), + [sym_this] = STATE(1050), + [sym_super] = STATE(3167), + [sym_identifier] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1670), + [sym_decimal_integer_literal] = ACTIONS(2091), + [sym_hex_integer_literal] = ACTIONS(2091), + [sym_octal_integer_literal] = ACTIONS(2093), + [sym_binary_integer_literal] = ACTIONS(2093), + [sym_decimal_floating_point_literal] = ACTIONS(2093), + [sym_hex_floating_point_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1688), + [anon_sym_r] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_this] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + }, + [998] = { + [sym__literal] = STATE(383), + [sym_symbol_literal] = STATE(383), + [sym_true] = STATE(383), + [sym_false] = STATE(383), + [sym_string_literal] = STATE(383), + [sym__string_literal_double_quotes] = STATE(883), + [sym__string_literal_single_quotes] = STATE(883), + [sym__string_literal_double_quotes_multiple] = STATE(883), + [sym__string_literal_single_quotes_multiple] = STATE(883), + [sym__raw_string_literal_double_quotes] = STATE(883), + [sym__raw_string_literal_single_quotes] = STATE(883), + [sym__raw_string_literal_double_quotes_multiple] = STATE(883), + [sym__raw_string_literal_single_quotes_multiple] = STATE(883), + [sym_list_literal] = STATE(383), + [sym_set_or_map_literal] = STATE(383), + [sym_null_literal] = STATE(383), + [sym_assignable_expression] = STATE(3525), + [sym_function_expression] = STATE(383), + [sym__unary_expression] = STATE(915), + [sym_unary_expression] = STATE(915), + [sym__postfix_expression] = STATE(915), + [sym_postfix_expression] = STATE(915), + [sym_prefix_operator] = STATE(2679), + [sym_minus_operator] = STATE(2859), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2859), + [sym_await_expression] = STATE(910), + [sym_new_expression] = STATE(383), + [sym_const_object_expression] = STATE(383), + [sym__primary] = STATE(383), + [sym_constructor_invocation] = STATE(376), + [sym_type_arguments] = STATE(3470), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3335), + [sym__formal_parameter_part] = STATE(2929), + [sym_formal_parameter_list] = STATE(2929), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2674), + [sym__const_builtin] = STATE(2670), + [sym_this] = STATE(383), + [sym_super] = STATE(3266), + [sym_identifier] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2045), + [sym_decimal_integer_literal] = ACTIONS(2079), + [sym_hex_integer_literal] = ACTIONS(2079), + [sym_octal_integer_literal] = ACTIONS(2081), + [sym_binary_integer_literal] = ACTIONS(2081), + [sym_decimal_floating_point_literal] = ACTIONS(2081), + [sym_hex_floating_point_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2061), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2063), + [anon_sym_r] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1824), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_this] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + }, + [999] = { + [sym__literal] = STATE(1527), + [sym_symbol_literal] = STATE(1527), + [sym_true] = STATE(1527), + [sym_false] = STATE(1527), + [sym_string_literal] = STATE(1527), + [sym__string_literal_double_quotes] = STATE(1796), + [sym__string_literal_single_quotes] = STATE(1796), + [sym__string_literal_double_quotes_multiple] = STATE(1796), + [sym__string_literal_single_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_double_quotes] = STATE(1796), + [sym__raw_string_literal_single_quotes] = STATE(1796), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1796), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1796), + [sym_list_literal] = STATE(1527), + [sym_set_or_map_literal] = STATE(1527), + [sym_null_literal] = STATE(1527), + [sym_assignable_expression] = STATE(3399), + [sym_function_expression] = STATE(1527), + [sym__unary_expression] = STATE(2310), + [sym_unary_expression] = STATE(2310), + [sym__postfix_expression] = STATE(2310), + [sym_postfix_expression] = STATE(2310), + [sym_prefix_operator] = STATE(2684), + [sym_minus_operator] = STATE(2822), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2822), + [sym_await_expression] = STATE(2290), + [sym_new_expression] = STATE(1527), + [sym_const_object_expression] = STATE(1527), + [sym__primary] = STATE(1527), + [sym_constructor_invocation] = STATE(1565), + [sym_type_arguments] = STATE(3498), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3310), + [sym__formal_parameter_part] = STATE(2916), + [sym_formal_parameter_list] = STATE(2916), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2624), + [sym__const_builtin] = STATE(2623), + [sym_this] = STATE(1527), + [sym_super] = STATE(3246), + [sym_identifier] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(1965), + [sym_decimal_integer_literal] = ACTIONS(1999), + [sym_hex_integer_literal] = ACTIONS(1999), + [sym_octal_integer_literal] = ACTIONS(2001), + [sym_binary_integer_literal] = ACTIONS(2001), + [sym_decimal_floating_point_literal] = ACTIONS(2001), + [sym_hex_floating_point_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1981), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1983), + [anon_sym_r] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1786), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_this] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [1000] = { + [sym__literal] = STATE(1529), + [sym_symbol_literal] = STATE(1529), + [sym_true] = STATE(1529), + [sym_false] = STATE(1529), + [sym_string_literal] = STATE(1529), + [sym__string_literal_double_quotes] = STATE(1867), + [sym__string_literal_single_quotes] = STATE(1867), + [sym__string_literal_double_quotes_multiple] = STATE(1867), + [sym__string_literal_single_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_double_quotes] = STATE(1867), + [sym__raw_string_literal_single_quotes] = STATE(1867), + [sym__raw_string_literal_double_quotes_multiple] = STATE(1867), + [sym__raw_string_literal_single_quotes_multiple] = STATE(1867), + [sym_list_literal] = STATE(1529), + [sym_set_or_map_literal] = STATE(1529), + [sym_null_literal] = STATE(1529), + [sym_assignable_expression] = STATE(3549), + [sym_function_expression] = STATE(1529), + [sym__unary_expression] = STATE(2302), + [sym_unary_expression] = STATE(2302), + [sym__postfix_expression] = STATE(2302), + [sym_postfix_expression] = STATE(2302), + [sym_prefix_operator] = STATE(2705), + [sym_minus_operator] = STATE(2930), + [sym_negation_operator] = STATE(3008), + [sym_tilde_operator] = STATE(2930), + [sym_await_expression] = STATE(2274), + [sym_new_expression] = STATE(1529), + [sym_const_object_expression] = STATE(1529), + [sym__primary] = STATE(1529), + [sym_constructor_invocation] = STATE(1579), + [sym_type_arguments] = STATE(3465), + [sym__type_args] = STATE(2492), + [sym_type_parameters] = STATE(3289), + [sym__type_name] = STATE(3356), + [sym__formal_parameter_part] = STATE(2876), + [sym_formal_parameter_list] = STATE(2876), + [sym__strict_formal_parameter_list] = STATE(2625), + [sym__new_builtin] = STATE(2590), + [sym__const_builtin] = STATE(2649), + [sym_this] = STATE(1529), + [sym_super] = STATE(3264), + [sym_identifier] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2005), + [sym_decimal_integer_literal] = ACTIONS(2087), + [sym_hex_integer_literal] = ACTIONS(2087), + [sym_octal_integer_literal] = ACTIONS(2089), + [sym_binary_integer_literal] = ACTIONS(2089), + [sym_decimal_floating_point_literal] = ACTIONS(2089), + [sym_hex_floating_point_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2021), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2023), + [anon_sym_r] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_DASH] = ACTIONS(41), + [sym_increment_operator] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_await] = ACTIONS(1702), + [anon_sym_super] = ACTIONS(81), + [anon_sym_new] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_this] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + }, + [1001] = { + [sym__annotation] = STATE(2710), + [sym_marker_annotation] = STATE(2710), + [sym_annotation] = STATE(2710), + [sym_import_or_export] = STATE(1001), + [sym_library_import] = STATE(1097), + [sym_library_export] = STATE(1097), + [sym_import_specification] = STATE(1096), + [aux_sym__metadata] = STATE(2710), + [sym__export] = STATE(2523), + [sym__import] = STATE(2517), + [aux_sym_program_repeat1] = STATE(1001), + [ts_builtin_sym_end] = ACTIONS(2278), + [sym_identifier] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(2278), + [sym_decimal_integer_literal] = ACTIONS(2280), + [sym_hex_integer_literal] = ACTIONS(2280), + [sym_octal_integer_literal] = ACTIONS(2278), + [sym_binary_integer_literal] = ACTIONS(2278), + [sym_decimal_floating_point_literal] = ACTIONS(2278), + [sym_hex_floating_point_literal] = ACTIONS(2280), + [anon_sym_true] = ACTIONS(2280), + [anon_sym_false] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2280), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2278), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2278), + [anon_sym_r] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_null] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2280), + [sym_increment_operator] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_TILDE] = ACTIONS(2278), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_assert] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2282), + [anon_sym_enum] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_super] = ACTIONS(2280), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_covariant] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_Function] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_final] = ACTIONS(2280), + [anon_sym_external] = ACTIONS(2280), + [anon_sym_this] = ACTIONS(2280), + [sym_comment] = ACTIONS(3), + }, + [1002] = { + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2291), + [sym_decimal_integer_literal] = ACTIONS(2293), + [sym_hex_integer_literal] = ACTIONS(2293), + [sym_octal_integer_literal] = ACTIONS(2291), + [sym_binary_integer_literal] = ACTIONS(2291), + [sym_decimal_floating_point_literal] = ACTIONS(2291), + [sym_hex_floating_point_literal] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2291), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2291), + [anon_sym_r] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_null] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2293), + [sym_increment_operator] = ACTIONS(2291), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_assert] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_case] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_AT] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_super] = ACTIONS(2293), + [anon_sym_void] = ACTIONS(2293), + [anon_sym_var] = ACTIONS(2293), + [anon_sym_covariant] = ACTIONS(2293), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_factory] = ACTIONS(2293), + [anon_sym_Function] = ACTIONS(2293), + [anon_sym_get] = ACTIONS(2293), + [anon_sym_import] = ACTIONS(2293), + [anon_sym_operator] = ACTIONS(2293), + [anon_sym_set] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_final] = ACTIONS(2293), + [anon_sym_external] = ACTIONS(2293), + [anon_sym_this] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym__automatic_semicolon] = ACTIONS(2295), + }, + [1003] = { + [ts_builtin_sym_end] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(2297), + [sym_decimal_integer_literal] = ACTIONS(2299), + [sym_hex_integer_literal] = ACTIONS(2299), + [sym_octal_integer_literal] = ACTIONS(2297), + [sym_binary_integer_literal] = ACTIONS(2297), + [sym_decimal_floating_point_literal] = ACTIONS(2297), + [sym_hex_floating_point_literal] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(2299), + [anon_sym_false] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2297), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2297), + [anon_sym_r] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_null] = ACTIONS(2299), + [anon_sym_throw] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2299), + [sym_increment_operator] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_assert] = ACTIONS(2299), + [anon_sym_switch] = ACTIONS(2299), + [anon_sym_case] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_do] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_else] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_abstract] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_super] = ACTIONS(2299), + [anon_sym_void] = ACTIONS(2299), + [anon_sym_var] = ACTIONS(2299), + [anon_sym_covariant] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2299), + [anon_sym_factory] = ACTIONS(2299), + [anon_sym_Function] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_operator] = ACTIONS(2299), + [anon_sym_set] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_final] = ACTIONS(2299), + [anon_sym_external] = ACTIONS(2299), + [anon_sym_this] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2297), + [sym_comment] = ACTIONS(3), + }, + [1004] = { + [aux_sym__if_null_expression] = STATE(1270), + [sym_shift_operator] = STATE(664), + [sym_additive_operator] = STATE(666), + [sym_multiplicative_operator] = STATE(602), + [sym_cascade_section] = STATE(1267), + [aux_sym__expression_repeat1] = STATE(1267), + [aux_sym_logical_or_expression_repeat1] = STATE(1300), + [aux_sym_logical_and_expression_repeat1] = STATE(1299), + [aux_sym_bitwise_or_expression_repeat1] = STATE(1297), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(1294), + [aux_sym_bitwise_and_expression_repeat1] = STATE(1269), + [aux_sym_shift_expression_repeat1] = STATE(1255), + [aux_sym_additive_expression_repeat1] = STATE(1258), + [aux_sym_multiplicative_expression_repeat1] = STATE(1259), [anon_sym_LBRACE] = ACTIONS(534), [anon_sym_LBRACK] = ACTIONS(534), [anon_sym_COMMA] = ACTIONS(534), @@ -100679,18 +105376,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_GT_EQ] = ACTIONS(534), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(534), [anon_sym_LPAREN] = ACTIONS(534), - [anon_sym_QMARK_QMARK] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2235), - [sym_equality_operator] = ACTIONS(2237), + [anon_sym_QMARK_QMARK] = ACTIONS(2301), + [anon_sym_QMARK] = ACTIONS(2303), + [anon_sym_PIPE_PIPE] = ACTIONS(2305), + [anon_sym_AMP_AMP] = ACTIONS(2307), + [sym_equality_operator] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(536), [anon_sym_GT] = ACTIONS(536), [anon_sym_GT_EQ] = ACTIONS(534), [anon_sym_LT_EQ] = ACTIONS(534), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_CARET] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2315), [anon_sym_LT_LT] = ACTIONS(554), [anon_sym_GT_GT] = ACTIONS(554), [anon_sym_GT_GT_GT] = ACTIONS(554), @@ -100706,7 +105403,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(536), [anon_sym_DOT] = ACTIONS(536), [anon_sym_QMARK_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2317), [anon_sym_async] = ACTIONS(536), [anon_sym_EQ_GT] = ACTIONS(534), [anon_sym_async_STAR] = ACTIONS(534), @@ -100714,21 +105411,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(534), [sym_comment] = ACTIONS(3), }, - [969] = { - [aux_sym__if_null_expression] = STATE(1265), - [sym_shift_operator] = STATE(572), - [sym_additive_operator] = STATE(571), + [1005] = { + [aux_sym__if_null_expression] = STATE(1292), + [sym_shift_operator] = STATE(653), + [sym_additive_operator] = STATE(679), [sym_multiplicative_operator] = STATE(686), - [sym_cascade_section] = STATE(1202), - [aux_sym__expression_repeat1] = STATE(1202), - [aux_sym_logical_or_expression_repeat1] = STATE(1255), - [aux_sym_logical_and_expression_repeat1] = STATE(1281), - [aux_sym_bitwise_or_expression_repeat1] = STATE(1298), - [aux_sym_bitwise_xor_expression_repeat1] = STATE(1297), - [aux_sym_bitwise_and_expression_repeat1] = STATE(1296), - [aux_sym_shift_expression_repeat1] = STATE(1194), - [aux_sym_additive_expression_repeat1] = STATE(1196), - [aux_sym_multiplicative_expression_repeat1] = STATE(1199), + [sym_cascade_section] = STATE(1260), + [aux_sym__expression_repeat1] = STATE(1260), + [aux_sym_logical_or_expression_repeat1] = STATE(1283), + [aux_sym_logical_and_expression_repeat1] = STATE(1284), + [aux_sym_bitwise_or_expression_repeat1] = STATE(1285), + [aux_sym_bitwise_xor_expression_repeat1] = STATE(1286), + [aux_sym_bitwise_and_expression_repeat1] = STATE(1287), + [aux_sym_shift_expression_repeat1] = STATE(1257), + [aux_sym_additive_expression_repeat1] = STATE(1256), + [aux_sym_multiplicative_expression_repeat1] = STATE(1254), [anon_sym_RBRACE] = ACTIONS(534), [anon_sym_LBRACK] = ACTIONS(534), [anon_sym_COMMA] = ACTIONS(534), @@ -100749,18 +105446,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK_EQ] = ACTIONS(534), [anon_sym_LPAREN] = ACTIONS(534), [anon_sym_RPAREN] = ACTIONS(534), - [anon_sym_QMARK_QMARK] = ACTIONS(2248), - [anon_sym_QMARK] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2252), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [sym_equality_operator] = ACTIONS(2256), + [anon_sym_QMARK_QMARK] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(2322), + [anon_sym_PIPE_PIPE] = ACTIONS(2324), + [anon_sym_AMP_AMP] = ACTIONS(2326), + [sym_equality_operator] = ACTIONS(2328), [anon_sym_LT] = ACTIONS(536), [anon_sym_GT] = ACTIONS(536), [anon_sym_GT_EQ] = ACTIONS(534), [anon_sym_LT_EQ] = ACTIONS(534), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2262), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_CARET] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2334), [anon_sym_LT_LT] = ACTIONS(554), [anon_sym_GT_GT] = ACTIONS(554), [anon_sym_GT_GT_GT] = ACTIONS(554), @@ -100776,7 +105473,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(534), [anon_sym_DOT] = ACTIONS(536), [anon_sym_QMARK_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT] = ACTIONS(2264), + [anon_sym_DOT_DOT] = ACTIONS(2336), [anon_sym_else] = ACTIONS(534), [anon_sym_SEMI] = ACTIONS(534), [sym_comment] = ACTIONS(3), @@ -100784,43 +105481,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static uint16_t ts_small_parse_table[] = { - [0] = 23, + [0] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2239), 1, + ACTIONS(2320), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2322), 1, + anon_sym_QMARK, + ACTIONS(2324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2326), 1, + anon_sym_AMP_AMP, + ACTIONS(2328), 1, + sym_equality_operator, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2334), 1, anon_sym_AMP, - ACTIONS(2267), 1, - sym_equality_operator, - STATE(574), 1, + STATE(653), 1, sym_shift_operator, - STATE(575), 1, + STATE(679), 1, sym_additive_operator, - STATE(576), 1, + STATE(686), 1, sym_multiplicative_operator, - STATE(1220), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1257), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, - aux_sym__if_null_expression, - STATE(1269), 1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -100832,20 +105537,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(579), 9, + ACTIONS(598), 5, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(577), 28, - anon_sym_LBRACE, + ACTIONS(596), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100859,63 +105562,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [110] = 27, + [118] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, - sym_shift_operator, - STATE(686), 1, + STATE(602), 1, sym_multiplicative_operator, - STATE(1194), 1, + STATE(664), 1, + sym_shift_operator, + STATE(666), 1, + sym_additive_operator, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, + STATE(1258), 1, aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1259), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, + STATE(1270), 1, + aux_sym__if_null_expression, + STATE(1294), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -100927,18 +105628,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(571), 5, + ACTIONS(582), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(569), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(580), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100952,61 +105653,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [228] = 27, + [236] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(574), 1, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, sym_shift_operator, - STATE(575), 1, + STATE(666), 1, sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, + STATE(1270), 1, aux_sym__if_null_expression, - STATE(1269), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1294), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101018,7 +105719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(602), 7, + ACTIONS(590), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101026,7 +105727,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(600), 26, + ACTIONS(588), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -101053,51 +105754,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [346] = 27, + [354] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, + STATE(653), 1, sym_shift_operator, + STATE(679), 1, + sym_additive_operator, STATE(686), 1, sym_multiplicative_operator, - STATE(1194), 1, - aux_sym_shift_expression_repeat1, - STATE(1196), 1, - aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, + STATE(1256), 1, + aux_sym_additive_expression_repeat1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101109,13 +105810,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(602), 5, + ACTIONS(586), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(600), 28, + ACTIONS(584), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -101144,51 +105845,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [464] = 27, + [472] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(574), 1, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, sym_shift_operator, - STATE(575), 1, + STATE(666), 1, sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, + STATE(1270), 1, aux_sym__if_null_expression, - STATE(1269), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1294), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101200,7 +105901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(575), 7, + ACTIONS(594), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -101208,7 +105909,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(573), 26, + ACTIONS(592), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -101235,51 +105936,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [582] = 27, + [590] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, + STATE(653), 1, sym_shift_operator, + STATE(679), 1, + sym_additive_operator, STATE(686), 1, sym_multiplicative_operator, - STATE(1194), 1, - aux_sym_shift_expression_repeat1, - STATE(1196), 1, - aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, + STATE(1256), 1, + aux_sym_additive_expression_repeat1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101291,13 +105992,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(594), 5, + ACTIONS(582), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(592), 28, + ACTIONS(580), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -101326,51 +106027,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [700] = 27, + [708] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(574), 1, + STATE(653), 1, sym_shift_operator, - STATE(575), 1, + STATE(679), 1, sym_additive_operator, - STATE(576), 1, + STATE(686), 1, sym_multiplicative_operator, - STATE(1220), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1257), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, - aux_sym__if_null_expression, - STATE(1269), 1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101382,18 +106083,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(590), 7, + ACTIONS(574), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(588), 26, - anon_sym_LBRACE, + ACTIONS(572), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101407,61 +106108,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [818] = 27, + [826] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, + STATE(653), 1, sym_shift_operator, + STATE(679), 1, + sym_additive_operator, STATE(686), 1, sym_multiplicative_operator, - STATE(1194), 1, - aux_sym_shift_expression_repeat1, - STATE(1196), 1, - aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, + STATE(1256), 1, + aux_sym_additive_expression_repeat1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101473,13 +106174,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(590), 5, + ACTIONS(578), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(588), 28, + ACTIONS(576), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -101508,51 +106209,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [936] = 27, + [944] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, - anon_sym_QMARK, - ACTIONS(2252), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, - anon_sym_AMP_AMP, - ACTIONS(2256), 1, - sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, + ACTIONS(2339), 1, + sym_equality_operator, + STATE(653), 1, sym_shift_operator, + STATE(679), 1, + sym_additive_operator, STATE(686), 1, sym_multiplicative_operator, - STATE(1194), 1, - aux_sym_shift_expression_repeat1, - STATE(1196), 1, - aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, + STATE(1256), 1, + aux_sym_additive_expression_repeat1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101564,13 +106257,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(586), 5, + ACTIONS(567), 7, anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(584), 28, + ACTIONS(565), 30, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -101590,6 +106285,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, @@ -101599,43 +106296,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [1054] = 23, + [1054] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2258), 1, + ACTIONS(2320), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2322), 1, + anon_sym_QMARK, + ACTIONS(2324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2326), 1, + anon_sym_AMP_AMP, + ACTIONS(2328), 1, + sym_equality_operator, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2334), 1, anon_sym_AMP, - ACTIONS(2270), 1, - sym_equality_operator, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, + STATE(653), 1, sym_shift_operator, + STATE(679), 1, + sym_additive_operator, STATE(686), 1, sym_multiplicative_operator, - STATE(1194), 1, - aux_sym_shift_expression_repeat1, - STATE(1196), 1, - aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, + STATE(1256), 1, + aux_sym_additive_expression_repeat1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101647,15 +106352,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(579), 7, + ACTIONS(610), 5, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(577), 30, + ACTIONS(608), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -101675,8 +106378,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, @@ -101686,51 +106387,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [1164] = 27, + [1172] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(574), 1, + STATE(653), 1, sym_shift_operator, - STATE(575), 1, + STATE(679), 1, sym_additive_operator, - STATE(576), 1, + STATE(686), 1, sym_multiplicative_operator, - STATE(1220), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1257), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, - aux_sym__if_null_expression, - STATE(1269), 1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101742,18 +106443,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(586), 7, + ACTIONS(606), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(584), 26, - anon_sym_LBRACE, + ACTIONS(604), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101767,61 +106468,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [1282] = 27, + [1290] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(574), 1, + STATE(653), 1, sym_shift_operator, - STATE(575), 1, + STATE(679), 1, sym_additive_operator, - STATE(576), 1, + STATE(686), 1, sym_multiplicative_operator, - STATE(1220), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1257), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, - aux_sym__if_null_expression, - STATE(1269), 1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101833,18 +106534,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(594), 7, + ACTIONS(602), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(592), 26, - anon_sym_LBRACE, + ACTIONS(600), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101858,61 +106559,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [1400] = 27, + [1408] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, - sym_shift_operator, - STATE(686), 1, + STATE(602), 1, sym_multiplicative_operator, - STATE(1194), 1, + STATE(664), 1, + sym_shift_operator, + STATE(666), 1, + sym_additive_operator, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, + STATE(1258), 1, aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1259), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, + STATE(1270), 1, + aux_sym__if_null_expression, + STATE(1294), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -101924,18 +106625,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(606), 5, + ACTIONS(586), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(604), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(584), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101949,61 +106650,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [1518] = 27, + [1526] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, - sym_shift_operator, - STATE(686), 1, + STATE(602), 1, sym_multiplicative_operator, - STATE(1194), 1, + STATE(664), 1, + sym_shift_operator, + STATE(666), 1, + sym_additive_operator, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, + STATE(1258), 1, aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1259), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, + STATE(1270), 1, + aux_sym__if_null_expression, + STATE(1294), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102015,18 +106716,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(567), 5, + ACTIONS(598), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(565), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(596), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102040,61 +106741,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [1636] = 27, + [1644] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, - sym_shift_operator, - STATE(686), 1, + STATE(602), 1, sym_multiplicative_operator, - STATE(1194), 1, + STATE(664), 1, + sym_shift_operator, + STATE(666), 1, + sym_additive_operator, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, + STATE(1258), 1, aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1259), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, + STATE(1270), 1, + aux_sym__if_null_expression, + STATE(1294), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102106,18 +106807,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(575), 5, + ACTIONS(602), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(573), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(600), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102131,61 +106832,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [1754] = 27, + [1762] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, + STATE(653), 1, sym_shift_operator, + STATE(679), 1, + sym_additive_operator, STATE(686), 1, sym_multiplicative_operator, - STATE(1194), 1, - aux_sym_shift_expression_repeat1, - STATE(1196), 1, - aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, + STATE(1256), 1, + aux_sym_additive_expression_repeat1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102197,13 +106898,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(598), 5, + ACTIONS(594), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(596), 28, + ACTIONS(592), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -102232,51 +106933,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [1872] = 27, + [1880] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2334), 1, anon_sym_AMP, - STATE(574), 1, + STATE(653), 1, sym_shift_operator, - STATE(575), 1, + STATE(679), 1, sym_additive_operator, - STATE(576), 1, + STATE(686), 1, sym_multiplicative_operator, - STATE(1220), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1257), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, - aux_sym__if_null_expression, - STATE(1269), 1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102288,18 +106989,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(571), 7, + ACTIONS(590), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(569), 26, - anon_sym_LBRACE, + ACTIONS(588), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102313,61 +107014,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [1990] = 27, + [1998] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, - sym_shift_operator, - STATE(686), 1, + STATE(602), 1, sym_multiplicative_operator, - STATE(1194), 1, + STATE(664), 1, + sym_shift_operator, + STATE(666), 1, + sym_additive_operator, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, + STATE(1258), 1, aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1259), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, + STATE(1270), 1, + aux_sym__if_null_expression, + STATE(1294), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102379,18 +107080,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(610), 5, + ACTIONS(606), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(608), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(604), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102404,61 +107105,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [2108] = 27, + [2116] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(574), 1, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, sym_shift_operator, - STATE(575), 1, + STATE(666), 1, sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, + STATE(1270), 1, aux_sym__if_null_expression, - STATE(1269), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1294), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102470,7 +107171,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(606), 7, + ACTIONS(574), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102478,7 +107179,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(604), 26, + ACTIONS(572), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -102505,51 +107206,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [2226] = 27, + [2234] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(574), 1, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, sym_shift_operator, - STATE(575), 1, + STATE(666), 1, sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, + STATE(1270), 1, aux_sym__if_null_expression, - STATE(1269), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1294), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102561,7 +107262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(567), 7, + ACTIONS(610), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102569,7 +107270,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(565), 26, + ACTIONS(608), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -102596,51 +107297,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [2344] = 27, + [2352] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, + ACTIONS(2301), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2303), 1, anon_sym_QMARK, - ACTIONS(2233), 1, + ACTIONS(2305), 1, anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, + ACTIONS(2307), 1, anon_sym_AMP_AMP, - ACTIONS(2237), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(574), 1, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, sym_shift_operator, - STATE(575), 1, + STATE(666), 1, sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, + STATE(1270), 1, aux_sym__if_null_expression, - STATE(1269), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1294), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102652,7 +107353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(598), 7, + ACTIONS(578), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102660,7 +107361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(596), 26, + ACTIONS(576), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -102687,51 +107388,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [2462] = 27, + [2470] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2229), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, - anon_sym_QMARK, - ACTIONS(2233), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2235), 1, - anon_sym_AMP_AMP, - ACTIONS(2237), 1, - sym_equality_operator, - ACTIONS(2239), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2241), 1, + ACTIONS(2313), 1, anon_sym_CARET, - ACTIONS(2243), 1, + ACTIONS(2315), 1, anon_sym_AMP, - STATE(574), 1, + ACTIONS(2342), 1, + sym_equality_operator, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, sym_shift_operator, - STATE(575), 1, + STATE(666), 1, sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1268), 1, + STATE(1270), 1, aux_sym__if_null_expression, - STATE(1269), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1272), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1289), 1, + STATE(1294), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1299), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1300), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, @@ -102743,15 +107436,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(610), 7, + ACTIONS(567), 9, anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(608), 26, + ACTIONS(565), 28, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -102768,6 +107463,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, @@ -102778,47 +107475,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [2580] = 19, + [2580] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(625), 1, - sym_increment_operator, - ACTIONS(2273), 1, - anon_sym_LBRACK, - ACTIONS(2276), 1, - anon_sym_LPAREN, - ACTIONS(2279), 1, - anon_sym_BANG, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2285), 1, - anon_sym_QMARK_DOT, - STATE(1312), 1, + STATE(563), 1, + sym__assignment_operator, + STATE(1130), 1, sym_assignable_selector, - STATE(1330), 1, - sym_argument_part, - STATE(1367), 1, - sym_arguments, - STATE(1384), 1, + STATE(1349), 1, + sym__cascade_assignment_section, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, + STATE(1429), 1, + sym_arguments, + STATE(2492), 1, sym__type_args, - STATE(2584), 1, - aux_sym_assignable_selector_part_repeat1, - STATE(3490), 1, + STATE(3483), 1, sym_type_arguments, - STATE(1041), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(2512), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - ACTIONS(614), 15, + STATE(1115), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + STATE(1129), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(686), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -102831,11 +107515,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(612), 28, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(684), 30, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102848,240 +107535,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [2681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1178), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1180), 45, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_static, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_factory, - anon_sym_Function, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_external, - anon_sym_this, - sym_identifier, - [2750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2288), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2290), 45, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_static, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_factory, - anon_sym_Function, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_external, - anon_sym_this, - sym_identifier, - [2819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1174), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1176), 45, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_static, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_factory, - anon_sym_Function, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_external, - anon_sym_this, - sym_identifier, - [2888] = 12, + [2667] = 12, ACTIONS(3), 1, sym_comment, - STATE(441), 1, + STATE(403), 1, sym__assignment_operator, - STATE(1091), 1, + STATE(1135), 1, sym_assignable_selector, - STATE(1367), 1, - sym_arguments, - STATE(1384), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1448), 1, + STATE(1390), 1, + sym_arguments, + STATE(1491), 1, sym__cascade_assignment_section, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3490), 1, + STATE(3487), 1, sym_type_arguments, - STATE(997), 2, + STATE(1033), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - STATE(1044), 2, + STATE(1104), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - ACTIONS(683), 18, + ACTIONS(614), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -103100,7 +107592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(681), 32, + ACTIONS(612), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -103133,54 +107625,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [2975] = 12, + [2754] = 14, ACTIONS(3), 1, sym_comment, - STATE(441), 1, + ACTIONS(2345), 1, + anon_sym_EQ, + STATE(527), 1, sym__assignment_operator, - STATE(1091), 1, + STATE(1130), 1, sym_assignable_selector, - STATE(1367), 1, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1429), 1, sym_arguments, - STATE(1373), 1, + STATE(1789), 1, sym__cascade_assignment_section, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3490), 1, + STATE(3483), 1, sym_type_arguments, - STATE(1051), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - STATE(1085), 2, + STATE(1038), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(639), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(637), 32, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, + STATE(1112), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2347), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103193,8 +107663,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(612), 18, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -103203,49 +107676,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [3062] = 20, + ACTIONS(614), 19, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + [2845] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(685), 1, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(2273), 1, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(2349), 1, anon_sym_LBRACK, - ACTIONS(2276), 1, + ACTIONS(2352), 1, anon_sym_LPAREN, - ACTIONS(2279), 1, + ACTIONS(2355), 1, anon_sym_BANG, - ACTIONS(2282), 1, + ACTIONS(2357), 1, anon_sym_DOT, - ACTIONS(2285), 1, + ACTIONS(2360), 1, anon_sym_QMARK_DOT, - STATE(1330), 1, - sym_argument_part, - STATE(1367), 1, - sym_arguments, - STATE(1370), 1, - sym_assignable_selector, - STATE(1384), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, + STATE(1379), 1, + sym_assignable_selector, + STATE(1994), 1, + sym_arguments, + STATE(1996), 1, + sym_argument_part, + STATE(2492), 1, sym__type_args, - STATE(2552), 1, + STATE(2657), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3490), 1, + STATE(3506), 1, sym_type_arguments, - STATE(1041), 2, + STATE(1611), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2351), 2, + STATE(2385), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(625), 13, + ACTIONS(629), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103259,7 +107753,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, sym_increment_operator, - ACTIONS(614), 14, + ACTIONS(622), 14, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_GT, @@ -103274,7 +107768,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(612), 16, + ACTIONS(620), 16, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -103291,10 +107785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [3165] = 3, + [2948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 16, + ACTIONS(2363), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -103311,7 +107805,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2294), 45, + ACTIONS(2365), 45, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -103357,10 +107851,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [3234] = 3, + [3017] = 12, + ACTIONS(3), 1, + sym_comment, + STATE(403), 1, + sym__assignment_operator, + STATE(1135), 1, + sym_assignable_selector, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1390), 1, + sym_arguments, + STATE(1406), 1, + sym__cascade_assignment_section, + STATE(2492), 1, + sym__type_args, + STATE(3487), 1, + sym_type_arguments, + STATE(1093), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + STATE(1128), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(686), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(684), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [3104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2296), 16, + ACTIONS(2367), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -103377,7 +107946,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2298), 45, + ACTIONS(2369), 45, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -103423,32 +107992,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [3303] = 14, + [3173] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2371), 1, anon_sym_EQ, - STATE(451), 1, + STATE(426), 1, sym__assignment_operator, - STATE(1091), 1, + STATE(1135), 1, sym_assignable_selector, - STATE(1367), 1, - sym_arguments, - STATE(1384), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1851), 1, + STATE(1390), 1, + sym_arguments, + STATE(1950), 1, sym__cascade_assignment_section, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3490), 1, + STATE(3487), 1, sym_type_arguments, - STATE(1058), 2, + STATE(1107), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - STATE(1085), 2, + STATE(1128), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(2302), 12, + ACTIONS(2373), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103461,7 +108030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(639), 17, + ACTIONS(686), 17, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -103479,7 +108048,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(637), 20, + ACTIONS(684), 20, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -103500,45 +108069,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [3394] = 19, + [3264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1313), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1315), 45, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_factory, + anon_sym_Function, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [3333] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(634), 1, anon_sym_LT, - ACTIONS(625), 1, + ACTIONS(637), 1, sym_increment_operator, - ACTIONS(2304), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2378), 1, anon_sym_LPAREN, - ACTIONS(2310), 1, + ACTIONS(2381), 1, anon_sym_BANG, - ACTIONS(2313), 1, + ACTIONS(2384), 1, anon_sym_DOT, - ACTIONS(2316), 1, + ACTIONS(2387), 1, anon_sym_QMARK_DOT, - STATE(1314), 1, - sym_argument_part, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1382), 1, + STATE(1388), 1, sym_assignable_selector, - STATE(1416), 1, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1768), 1, sym_arguments, - STATE(1911), 1, + STATE(1853), 1, + sym_argument_part, + STATE(2492), 1, sym__type_args, - STATE(2584), 1, + STATE(2657), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3417), 1, + STATE(3451), 1, sym_type_arguments, - STATE(1040), 2, + STATE(1596), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2512), 2, + STATE(2385), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(614), 17, - anon_sym_EQ, + ACTIONS(629), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(620), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(622), 16, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_GT, @@ -103555,9 +108219,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_as, anon_sym_async, - ACTIONS(612), 26, - anon_sym_LBRACE, - anon_sym_COMMA, + [3438] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2345), 1, + anon_sym_EQ, + STATE(527), 1, + sym__assignment_operator, + STATE(1130), 1, + sym_assignable_selector, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1429), 1, + sym_arguments, + STATE(1804), 1, + sym__cascade_assignment_section, + STATE(2492), 1, + sym__type_args, + STATE(3483), 1, + sym_type_arguments, + STATE(1116), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + STATE(1129), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(2347), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103570,56 +108257,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(684), 18, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [3495] = 20, + ACTIONS(686), 19, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + [3529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(2390), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LT, - ACTIONS(645), 1, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2392), 45, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_factory, + anon_sym_Function, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [3598] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(2273), 1, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(637), 1, + sym_increment_operator, + ACTIONS(2349), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2357), 1, anon_sym_DOT, - ACTIONS(2285), 1, + ACTIONS(2360), 1, anon_sym_QMARK_DOT, - ACTIONS(2319), 1, + ACTIONS(2394), 1, anon_sym_LPAREN, - ACTIONS(2322), 1, + ACTIONS(2397), 1, anon_sym_BANG, - STATE(1384), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1385), 1, + STATE(1384), 1, sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1928), 1, - sym_arguments, - STATE(1943), 1, + STATE(1769), 1, sym_argument_part, - STATE(2552), 1, + STATE(1854), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(2657), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3363), 1, + STATE(3531), 1, sym_type_arguments, - STATE(1574), 2, + STATE(1595), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2351), 2, + STATE(2385), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(647), 13, + ACTIONS(629), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103632,8 +108414,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - sym_increment_operator, - ACTIONS(614), 14, + ACTIONS(622), 14, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_GT, @@ -103648,7 +108429,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(612), 16, + ACTIONS(620), 16, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -103665,44 +108446,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [3598] = 20, + [3703] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(685), 1, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(2304), 1, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_BANG, - ACTIONS(2313), 1, + ACTIONS(2384), 1, anon_sym_DOT, - ACTIONS(2316), 1, + ACTIONS(2387), 1, anon_sym_QMARK_DOT, - STATE(1314), 1, - sym_argument_part, - STATE(1361), 1, + ACTIONS(2400), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_BANG, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1378), 1, + STATE(1474), 1, sym_assignable_selector, - STATE(1416), 1, + STATE(1987), 1, + sym_argument_part, + STATE(2013), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2552), 1, + STATE(2657), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3417), 1, + STATE(3383), 1, sym_type_arguments, - STATE(1040), 2, + STATE(1603), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2351), 2, + STATE(2385), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(625), 13, + ACTIONS(629), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103716,7 +108497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, sym_increment_operator, - ACTIONS(612), 14, + ACTIONS(620), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -103731,7 +108512,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(614), 16, + ACTIONS(622), 16, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_GT, @@ -103748,117 +108529,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_as, anon_sym_async, - [3701] = 20, + [3806] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(659), 1, anon_sym_LT, - ACTIONS(645), 1, - anon_sym_EQ, - ACTIONS(2324), 1, + ACTIONS(2405), 1, anon_sym_LBRACK, - ACTIONS(2326), 1, + ACTIONS(2408), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2411), 1, anon_sym_BANG, - ACTIONS(2330), 1, + ACTIONS(2414), 1, anon_sym_DOT, - ACTIONS(2332), 1, + ACTIONS(2417), 1, anon_sym_QMARK_DOT, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1362), 1, + STATE(1273), 1, sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1942), 1, + STATE(1318), 1, + sym_unconditional_assignable_selector, + STATE(1386), 1, sym_argument_part, - STATE(1956), 1, + STATE(1429), 1, sym_arguments, - STATE(2552), 1, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3336), 1, + STATE(3483), 1, sym_type_arguments, - STATE(1561), 2, + STATE(1078), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2351), 2, + STATE(2555), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(647), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - sym_increment_operator, - ACTIONS(612), 14, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(614), 16, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as, - anon_sym_async, - [3804] = 12, - ACTIONS(3), 1, - sym_comment, - STATE(472), 1, - sym__assignment_operator, - STATE(1088), 1, - sym_assignable_selector, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1416), 1, - sym_arguments, - STATE(1423), 1, - sym__cascade_assignment_section, - STATE(1911), 1, - sym__type_args, - STATE(3417), 1, - sym_type_arguments, - STATE(1014), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - STATE(1057), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(683), 20, + ACTIONS(651), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -103871,13 +108580,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, anon_sym_as, - anon_sym_DOT, anon_sym_async, - ACTIONS(681), 30, + ACTIONS(649), 27, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -103891,7 +108597,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -103900,48 +108605,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [3891] = 18, + [3905] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 1, + ACTIONS(634), 1, anon_sym_LT, - ACTIONS(2334), 1, + ACTIONS(637), 1, + sym_increment_operator, + ACTIONS(2349), 1, anon_sym_LBRACK, - ACTIONS(2337), 1, - anon_sym_LPAREN, - ACTIONS(2340), 1, - anon_sym_BANG, - ACTIONS(2343), 1, + ACTIONS(2357), 1, anon_sym_DOT, - ACTIONS(2346), 1, + ACTIONS(2360), 1, anon_sym_QMARK_DOT, - STATE(1259), 1, - sym_assignable_selector, - STATE(1274), 1, + ACTIONS(2420), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + anon_sym_BANG, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1330), 1, - sym_argument_part, - STATE(1367), 1, + STATE(1387), 1, + sym_assignable_selector, + STATE(1390), 1, sym_arguments, - STATE(1911), 1, + STATE(1435), 1, + sym_argument_part, + STATE(2492), 1, sym__type_args, - STATE(2584), 1, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3490), 1, + STATE(3487), 1, sym_type_arguments, - STATE(1042), 2, + STATE(1073), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2515), 2, + STATE(2547), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(661), 15, + ACTIONS(622), 15, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -103957,7 +108663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(659), 29, + ACTIONS(620), 28, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -103981,116 +108687,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [3990] = 3, + [4006] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(627), 1, + anon_sym_EQ, + ACTIONS(634), 1, anon_sym_LT, - sym_increment_operator, + ACTIONS(2403), 1, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2351), 45, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_static, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_factory, - anon_sym_Function, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_external, - anon_sym_this, - sym_identifier, - [4059] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(645), 1, - anon_sym_EQ, - ACTIONS(2304), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(2313), 1, + ACTIONS(2428), 1, + anon_sym_LPAREN, + ACTIONS(2430), 1, anon_sym_DOT, - ACTIONS(2316), 1, + ACTIONS(2432), 1, anon_sym_QMARK_DOT, - ACTIONS(2328), 1, - anon_sym_BANG, - ACTIONS(2353), 1, - anon_sym_LPAREN, - STATE(1361), 1, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1362), 1, + STATE(1474), 1, sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1942), 1, + STATE(1987), 1, sym_argument_part, - STATE(1956), 1, + STATE(2013), 1, sym_arguments, - STATE(2552), 1, + STATE(2492), 1, + sym__type_args, + STATE(2657), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3336), 1, + STATE(3383), 1, sym_type_arguments, - STATE(1571), 2, + STATE(1598), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2351), 2, + STATE(2385), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(647), 13, + ACTIONS(629), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104104,7 +108743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, sym_increment_operator, - ACTIONS(612), 14, + ACTIONS(620), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -104119,7 +108758,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(614), 16, + ACTIONS(622), 16, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_GT, @@ -104136,45 +108775,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_as, anon_sym_async, - [4162] = 14, + [4109] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_EQ, - STATE(451), 1, + STATE(563), 1, sym__assignment_operator, - STATE(1091), 1, + STATE(1130), 1, sym_assignable_selector, - STATE(1367), 1, - sym_arguments, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1794), 1, + STATE(1370), 1, sym__cascade_assignment_section, - STATE(1911), 1, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1429), 1, + sym_arguments, + STATE(2492), 1, sym__type_args, - STATE(3490), 1, + STATE(3483), 1, sym_type_arguments, - STATE(1001), 2, + STATE(1028), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - STATE(1061), 2, + STATE(1101), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - ACTIONS(2302), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(683), 17, + ACTIONS(614), 20, + anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -104191,68 +108816,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(681), 20, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(612), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [4253] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(625), 1, - sym_increment_operator, - ACTIONS(645), 1, - anon_sym_EQ, - ACTIONS(2273), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2285), 1, - anon_sym_QMARK_DOT, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2359), 1, - anon_sym_BANG, - STATE(1339), 1, - sym_assignable_selector, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1793), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(1913), 1, - sym_argument_part, - STATE(2552), 1, - aux_sym_assignable_selector_part_repeat1, - STATE(3451), 1, - sym_type_arguments, - STATE(1556), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(2351), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - ACTIONS(647), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104265,78 +108835,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(614), 14, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(612), 16, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [4358] = 21, + [4196] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(634), 1, anon_sym_LT, - ACTIONS(625), 1, - sym_increment_operator, - ACTIONS(645), 1, + ACTIONS(677), 1, anon_sym_EQ, - ACTIONS(2304), 1, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(2313), 1, + ACTIONS(2384), 1, anon_sym_DOT, - ACTIONS(2316), 1, + ACTIONS(2387), 1, anon_sym_QMARK_DOT, - ACTIONS(2362), 1, + ACTIONS(2434), 1, anon_sym_LPAREN, - ACTIONS(2365), 1, + ACTIONS(2437), 1, anon_sym_BANG, - STATE(1328), 1, + STATE(1369), 1, sym_assignable_selector, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1715), 1, + STATE(1386), 1, sym_argument_part, - STATE(1783), 1, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1429), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2552), 1, + STATE(2657), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3384), 1, + STATE(3483), 1, sym_type_arguments, - STATE(1552), 2, + STATE(1075), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2351), 2, + STATE(2385), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(647), 12, + ACTIONS(637), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104349,7 +108900,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(612), 14, + sym_increment_operator, + ACTIONS(620), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -104364,7 +108916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(614), 16, + ACTIONS(622), 16, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_GT, @@ -104381,111 +108933,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_as, anon_sym_async, - [4463] = 14, + [4299] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 1, - anon_sym_EQ, - STATE(370), 1, - sym__assignment_operator, - STATE(1088), 1, - sym_assignable_selector, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1416), 1, - sym_arguments, - STATE(1757), 1, - sym__cascade_assignment_section, - STATE(1911), 1, - sym__type_args, - STATE(3417), 1, - sym_type_arguments, - STATE(1017), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - STATE(1066), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2370), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(681), 18, - anon_sym_LBRACE, + ACTIONS(659), 1, + anon_sym_LT, + ACTIONS(2440), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2443), 1, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(683), 19, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2446), 1, anon_sym_BANG, - anon_sym_as, + ACTIONS(2449), 1, anon_sym_DOT, - anon_sym_async, - [4554] = 12, - ACTIONS(3), 1, - sym_comment, - STATE(472), 1, - sym__assignment_operator, - STATE(1088), 1, - sym_assignable_selector, - STATE(1361), 1, + ACTIONS(2452), 1, + anon_sym_QMARK_DOT, + STATE(1272), 1, sym_unconditional_assignable_selector, - STATE(1408), 1, - sym__cascade_assignment_section, - STATE(1416), 1, + STATE(1305), 1, + sym_assignable_selector, + STATE(1390), 1, sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3417), 1, - sym_type_arguments, - STATE(1054), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - STATE(1079), 2, + STATE(1435), 1, sym_argument_part, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - ACTIONS(639), 20, + STATE(3487), 1, + sym_type_arguments, + STATE(1077), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(2555), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + ACTIONS(651), 15, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -104498,14 +108984,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(637), 30, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(649), 29, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104518,7 +109001,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -104526,51 +109009,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [4641] = 20, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [4398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2455), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2457), 45, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_factory, + anon_sym_Function, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [4467] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(645), 1, + ACTIONS(627), 1, anon_sym_EQ, - ACTIONS(2322), 1, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(2355), 1, anon_sym_BANG, - ACTIONS(2372), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(2374), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(2376), 1, + ACTIONS(2463), 1, anon_sym_DOT, - ACTIONS(2378), 1, + ACTIONS(2465), 1, anon_sym_QMARK_DOT, - STATE(1384), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1385), 1, + STATE(1379), 1, sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1928), 1, + STATE(1994), 1, sym_arguments, - STATE(1943), 1, + STATE(1996), 1, sym_argument_part, - STATE(2552), 1, + STATE(2492), 1, + sym__type_args, + STATE(2657), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3363), 1, + STATE(3506), 1, sym_type_arguments, - STATE(1567), 2, + STATE(1616), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2351), 2, + STATE(2385), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(647), 13, + ACTIONS(629), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104584,7 +109131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, sym_increment_operator, - ACTIONS(614), 14, + ACTIONS(622), 14, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_GT, @@ -104599,7 +109146,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(612), 16, + ACTIONS(620), 16, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -104616,42 +109163,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [4744] = 18, + [4570] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 1, + ACTIONS(634), 1, anon_sym_LT, - ACTIONS(2380), 1, + ACTIONS(637), 1, + sym_increment_operator, + ACTIONS(2375), 1, anon_sym_LBRACK, - ACTIONS(2383), 1, - anon_sym_LPAREN, - ACTIONS(2386), 1, - anon_sym_BANG, - ACTIONS(2389), 1, + ACTIONS(2384), 1, anon_sym_DOT, - ACTIONS(2392), 1, + ACTIONS(2387), 1, anon_sym_QMARK_DOT, - STATE(1252), 1, - sym_assignable_selector, - STATE(1284), 1, - sym_unconditional_assignable_selector, - STATE(1314), 1, + ACTIONS(2434), 1, + anon_sym_LPAREN, + ACTIONS(2437), 1, + anon_sym_BANG, + STATE(1386), 1, sym_argument_part, - STATE(1416), 1, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1405), 1, + sym_assignable_selector, + STATE(1429), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2584), 1, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3417), 1, + STATE(3483), 1, sym_type_arguments, - STATE(1039), 2, + STATE(1075), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2515), 2, + STATE(2547), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(661), 17, + ACTIONS(622), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -104669,7 +109218,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_as, anon_sym_async, - ACTIONS(659), 27, + ACTIONS(620), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -104690,39 +109239,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [4843] = 14, + [4671] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 1, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(677), 1, anon_sym_EQ, - STATE(370), 1, - sym__assignment_operator, - STATE(1088), 1, - sym_assignable_selector, - STATE(1361), 1, + ACTIONS(2349), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, + anon_sym_DOT, + ACTIONS(2360), 1, + anon_sym_QMARK_DOT, + ACTIONS(2420), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + anon_sym_BANG, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1416), 1, + STATE(1390), 1, sym_arguments, - STATE(1773), 1, - sym__cascade_assignment_section, - STATE(1911), 1, - sym__type_args, - STATE(3417), 1, - sym_type_arguments, - STATE(1050), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - STATE(1079), 2, + STATE(1393), 1, + sym_assignable_selector, + STATE(1435), 1, sym_argument_part, + STATE(2492), 1, + sym__type_args, + STATE(2657), 1, aux_sym_assignable_selector_part_repeat1, - ACTIONS(2370), 12, + STATE(3487), 1, + sym_type_arguments, + STATE(1073), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(2385), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + ACTIONS(637), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104735,29 +109295,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(637), 18, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(639), 19, + ACTIONS(622), 14, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -104770,36 +109311,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, + ACTIONS(620), 16, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, anon_sym_as, - anon_sym_DOT, - anon_sym_async, - [4934] = 5, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [4774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(1018), 1, - aux_sym_dotted_identifier_list_repeat1, - ACTIONS(2395), 17, + ACTIONS(1325), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - anon_sym_EQ_EQ, - ACTIONS(2397), 41, + ACTIONS(1327), 45, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -104814,6 +109363,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, + anon_sym_case, + anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, @@ -104822,7 +109373,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_try, anon_sym_if, + anon_sym_else, anon_sym_for, + anon_sym_static, anon_sym_enum, anon_sym_abstract, anon_sym_class, @@ -104830,10 +109383,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, - anon_sym_export, + anon_sym_factory, anon_sym_Function, anon_sym_get, - anon_sym_import, + anon_sym_operator, anon_sym_set, anon_sym_new, anon_sym_const, @@ -104841,14 +109394,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [5006] = 5, + [4843] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + anon_sym_EQ, + STATE(426), 1, + sym__assignment_operator, + STATE(1135), 1, + sym_assignable_selector, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1390), 1, + sym_arguments, + STATE(1958), 1, + sym__cascade_assignment_section, + STATE(2492), 1, + sym__type_args, + STATE(3487), 1, + sym_type_arguments, + STATE(1035), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + STATE(1119), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2373), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(614), 17, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(612), 20, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [4934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(2471), 1, anon_sym_DOT, - STATE(1018), 1, + STATE(1055), 1, aux_sym_dotted_identifier_list_repeat1, - ACTIONS(2402), 17, + ACTIONS(2467), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -104866,7 +109496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_AT, anon_sym_EQ_EQ, - ACTIONS(2404), 41, + ACTIONS(2469), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -104908,14 +109538,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [5078] = 5, + [5006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(2471), 1, anon_sym_DOT, - STATE(1019), 1, + STATE(1056), 1, aux_sym_dotted_identifier_list_repeat1, - ACTIONS(2408), 17, + ACTIONS(2473), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -104933,7 +109563,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_AT, anon_sym_EQ_EQ, - ACTIONS(2410), 41, + ACTIONS(2475), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -104975,10 +109605,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [5150] = 3, + [5078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 17, + ACTIONS(2481), 1, + anon_sym_DOT, + STATE(1056), 1, + aux_sym_dotted_identifier_list_repeat1, + ACTIONS(2477), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -104996,7 +109630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_AT, anon_sym_EQ_EQ, - ACTIONS(2397), 42, + ACTIONS(2479), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -105009,7 +109643,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_DASH, anon_sym_await, - anon_sym_DOT, anon_sym_assert, anon_sym_switch, anon_sym_do, @@ -105039,262 +109672,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [5217] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2412), 1, - anon_sym_EQ, - STATE(533), 1, - sym__assignment_operator, - STATE(1188), 1, - sym_assignable_selector, - STATE(1487), 1, - sym_arguments, - STATE(1510), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2052), 1, - sym__cascade_assignment_section, - STATE(3445), 1, - sym_type_arguments, - STATE(1023), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - STATE(1138), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2414), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(681), 17, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(683), 18, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - [5306] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2412), 1, - anon_sym_EQ, - STATE(533), 1, - sym__assignment_operator, - STATE(1188), 1, - sym_assignable_selector, - STATE(1487), 1, - sym_arguments, - STATE(1510), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2067), 1, - sym__cascade_assignment_section, - STATE(3445), 1, - sym_type_arguments, - STATE(1125), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - STATE(1186), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(2414), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(637), 17, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(639), 18, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - [5395] = 15, + [5150] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(729), 1, anon_sym_LPAREN, ACTIONS(732), 1, anon_sym_LT, - ACTIONS(2416), 1, - anon_sym_LBRACK, - ACTIONS(2419), 1, - anon_sym_DOT, - ACTIONS(2422), 1, - anon_sym_QMARK_DOT, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1391), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(1030), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2588), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(645), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(647), 27, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [5486] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LT, - ACTIONS(2425), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(2428), 1, + ACTIONS(2487), 1, anon_sym_DOT, - ACTIONS(2431), 1, + ACTIONS(2490), 1, anon_sym_QMARK_DOT, - STATE(1361), 1, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1391), 1, + STATE(1466), 1, sym_assignable_selector, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1025), 2, + STATE(1057), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2588), 2, + STATE(2607), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(690), 18, + ACTIONS(724), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -105313,7 +109720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_as, anon_sym_async, - ACTIONS(688), 27, + ACTIONS(722), 27, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -105341,108 +109748,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [5577] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LT, - ACTIONS(2434), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_QMARK_DOT, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1399), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(1026), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2586), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(690), 16, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(688), 29, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [5668] = 14, + [5241] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2493), 1, anon_sym_EQ, - STATE(381), 1, + STATE(465), 1, sym__assignment_operator, - STATE(1179), 1, + STATE(1222), 1, sym_assignable_selector, - STATE(1504), 1, + STATE(1546), 1, sym_arguments, - STATE(1506), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2149), 1, + STATE(1552), 1, + sym_unconditional_assignable_selector, + STATE(2087), 1, sym__cascade_assignment_section, - STATE(3388), 1, + STATE(2492), 1, + sym__type_args, + STATE(3507), 1, sym_type_arguments, - STATE(1111), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - STATE(1183), 2, + STATE(1065), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(2445), 12, + STATE(1151), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2495), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105455,7 +109786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(639), 16, + ACTIONS(614), 16, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -105472,7 +109803,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(637), 19, + ACTIONS(612), 19, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -105492,36 +109823,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [5757] = 15, + [5330] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(714), 1, + ACTIONS(710), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(713), 1, anon_sym_LT, - ACTIONS(2447), 1, + ACTIONS(2497), 1, anon_sym_LBRACK, - ACTIONS(2450), 1, + ACTIONS(2500), 1, anon_sym_DOT, - ACTIONS(2453), 1, + ACTIONS(2503), 1, anon_sym_QMARK_DOT, - STATE(1384), 1, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1399), 1, + STATE(1466), 1, sym_assignable_selector, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1026), 2, + STATE(1057), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2586), 2, + STATE(2607), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(709), 16, + ACTIONS(705), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -105538,11 +109869,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(707), 29, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(703), 27, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105555,7 +109886,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -105564,27 +109894,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [5848] = 9, + [5421] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, + ACTIONS(2510), 1, anon_sym_on, - ACTIONS(2462), 1, + ACTIONS(2512), 1, anon_sym_catch, - ACTIONS(2464), 1, + ACTIONS(2514), 1, anon_sym_finally, - STATE(1218), 1, + STATE(1228), 1, sym_finally_clause, - STATE(3366), 1, + STATE(3527), 1, sym_catch_clause, - STATE(1036), 2, + STATE(1072), 2, sym__on_part, aux_sym_try_statement_repeat1, - ACTIONS(2456), 16, + ACTIONS(2506), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -105601,7 +109932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2458), 36, + ACTIONS(2508), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -105638,36 +109969,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [5927] = 15, + [5500] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(714), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(694), 1, anon_sym_LT, - ACTIONS(2466), 1, + ACTIONS(2516), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, + ACTIONS(2519), 1, anon_sym_DOT, - ACTIONS(2472), 1, + ACTIONS(2522), 1, anon_sym_QMARK_DOT, - STATE(1361), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1391), 1, + STATE(1422), 1, sym_assignable_selector, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1025), 2, + STATE(1062), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2588), 2, + STATE(2615), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(709), 18, + ACTIONS(627), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -105684,11 +110015,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + ACTIONS(629), 29, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, anon_sym_as, - anon_sym_async, - ACTIONS(707), 27, - anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [5591] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(710), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LT, + ACTIONS(2525), 1, + anon_sym_LBRACK, + ACTIONS(2528), 1, + anon_sym_DOT, + ACTIONS(2531), 1, + anon_sym_QMARK_DOT, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1422), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(1063), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2615), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(705), 16, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(703), 29, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105701,6 +110108,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -105709,41 +110117,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [6018] = 15, + [5682] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(729), 1, anon_sym_LPAREN, ACTIONS(732), 1, anon_sym_LT, - ACTIONS(2475), 1, + ACTIONS(2534), 1, anon_sym_LBRACK, - ACTIONS(2478), 1, + ACTIONS(2537), 1, anon_sym_DOT, - ACTIONS(2481), 1, + ACTIONS(2540), 1, anon_sym_QMARK_DOT, - STATE(1384), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1399), 1, + STATE(1422), 1, sym_assignable_selector, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1028), 2, + STATE(1063), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2586), 2, + STATE(2615), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(645), 16, + ACTIONS(724), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -105760,7 +110167,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(647), 29, + ACTIONS(722), 29, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -105790,32 +110197,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [6109] = 14, + [5773] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, + ACTIONS(2543), 1, anon_sym_EQ, - STATE(381), 1, + STATE(550), 1, sym__assignment_operator, - STATE(1179), 1, + STATE(1224), 1, sym_assignable_selector, - STATE(1504), 1, + STATE(1531), 1, sym_arguments, - STATE(1506), 1, + STATE(1533), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2154), 1, + STATE(2099), 1, sym__cascade_assignment_section, - STATE(3388), 1, + STATE(2492), 1, + sym__type_args, + STATE(3510), 1, sym_type_arguments, - STATE(1027), 2, + STATE(1160), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + STATE(1223), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - STATE(1178), 2, + ACTIONS(2545), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(684), 17, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(686), 18, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + [5862] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 1, + anon_sym_EQ, + STATE(465), 1, + sym__assignment_operator, + STATE(1222), 1, + sym_assignable_selector, + STATE(1546), 1, + sym_arguments, + STATE(1552), 1, + sym_unconditional_assignable_selector, + STATE(2190), 1, + sym__cascade_assignment_section, + STATE(2492), 1, + sym__type_args, + STATE(3507), 1, + sym_type_arguments, + STATE(1142), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - ACTIONS(2445), 12, + STATE(1219), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(2495), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105828,7 +110310,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(683), 16, + ACTIONS(686), 16, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -105845,7 +110327,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(681), 19, + ACTIONS(684), 19, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -105865,15 +110347,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [6198] = 5, + [5951] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(2543), 1, + anon_sym_EQ, + STATE(550), 1, + sym__assignment_operator, + STATE(1224), 1, + sym_assignable_selector, + STATE(1531), 1, + sym_arguments, + STATE(1533), 1, + sym_unconditional_assignable_selector, + STATE(2085), 1, + sym__cascade_assignment_section, + STATE(2492), 1, + sym__type_args, + STATE(3510), 1, + sym_type_arguments, + STATE(1064), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + STATE(1191), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2545), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(612), 17, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - STATE(1035), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(996), 16, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(614), 18, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + [6040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2477), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -105883,14 +110435,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(998), 39, + anon_sym_EQ_EQ, + ACTIONS(2479), 42, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -105903,6 +110456,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_DASH, anon_sym_await, + anon_sym_DOT, anon_sym_assert, anon_sym_switch, anon_sym_do, @@ -105921,8 +110475,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, + anon_sym_export, anon_sym_Function, anon_sym_get, + anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -105930,36 +110486,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [6268] = 15, + [6107] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 1, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, anon_sym_LT, - ACTIONS(2484), 1, + ACTIONS(2547), 1, anon_sym_LBRACK, - ACTIONS(2487), 1, - anon_sym_LPAREN, - ACTIONS(2490), 1, - anon_sym_BANG, - ACTIONS(2493), 1, + ACTIONS(2550), 1, anon_sym_DOT, - ACTIONS(2496), 1, + ACTIONS(2553), 1, anon_sym_QMARK_DOT, - STATE(1367), 1, - sym_arguments, - STATE(1384), 1, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, + STATE(1466), 1, + sym_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(3490), 1, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, sym_type_arguments, - STATE(1034), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(1313), 2, + STATE(1059), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2607), 2, sym_argument_part, - sym_assignable_selector, - ACTIONS(765), 15, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(627), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -105975,11 +110531,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(763), 29, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_as, + anon_sym_async, + ACTIONS(629), 27, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105992,7 +110549,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -106001,281 +110557,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [6358] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2499), 1, - anon_sym_DOT_DOT, - STATE(1035), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(1016), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1018), 39, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_get, - anon_sym_set, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_external, - anon_sym_this, - sym_identifier, - [6428] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_on, - ACTIONS(2509), 1, - anon_sym_catch, - STATE(3366), 1, - sym_catch_clause, - STATE(1036), 2, - sym__on_part, - aux_sym_try_statement_repeat1, - ACTIONS(2502), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2504), 37, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_finally, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [6502] = 29, + [6198] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(560), 1, anon_sym_TILDE_SLASH, - ACTIONS(2248), 1, + ACTIONS(2320), 1, anon_sym_QMARK_QMARK, - ACTIONS(2250), 1, + ACTIONS(2322), 1, anon_sym_QMARK, - ACTIONS(2252), 1, + ACTIONS(2324), 1, anon_sym_PIPE_PIPE, - ACTIONS(2254), 1, + ACTIONS(2326), 1, anon_sym_AMP_AMP, - ACTIONS(2256), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(2258), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2332), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2334), 1, anon_sym_AMP, - ACTIONS(2512), 1, + ACTIONS(2556), 1, anon_sym_DOT_DOT, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, + STATE(653), 1, sym_shift_operator, + STATE(679), 1, + sym_additive_operator, STATE(686), 1, sym_multiplicative_operator, - STATE(1194), 1, - aux_sym_shift_expression_repeat1, - STATE(1196), 1, - aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1255), 1, + STATE(1256), 1, + aux_sym_additive_expression_repeat1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1283), 1, aux_sym_logical_or_expression_repeat1, - STATE(1265), 1, - aux_sym__if_null_expression, - STATE(1281), 1, + STATE(1284), 1, aux_sym_logical_and_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1287), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1292), 1, + aux_sym__if_null_expression, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1549), 2, + STATE(1589), 2, sym_cascade_section, aux_sym__expression_repeat1, ACTIONS(554), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(558), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(536), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(534), 21, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - [6620] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(773), 1, - anon_sym_LT, - ACTIONS(2514), 1, - anon_sym_LBRACK, - ACTIONS(2517), 1, - anon_sym_LPAREN, - ACTIONS(2520), 1, - anon_sym_BANG, - ACTIONS(2523), 1, - anon_sym_DOT, - ACTIONS(2526), 1, - anon_sym_QMARK_DOT, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1416), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3417), 1, - sym_type_arguments, - STATE(1038), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(1316), 2, - sym_argument_part, - sym_assignable_selector, - ACTIONS(765), 17, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(558), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as, - anon_sym_async, - ACTIONS(763), 27, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(536), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(534), 21, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106288,49 +110644,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, + anon_sym_LPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [6710] = 15, + anon_sym_as, + anon_sym_QMARK_DOT, + [6316] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LT, - ACTIONS(2529), 1, + ACTIONS(2558), 1, anon_sym_LBRACK, - ACTIONS(2532), 1, + ACTIONS(2561), 1, anon_sym_LPAREN, - ACTIONS(2535), 1, + ACTIONS(2564), 1, anon_sym_BANG, - ACTIONS(2538), 1, + ACTIONS(2567), 1, anon_sym_DOT, - ACTIONS(2541), 1, + ACTIONS(2570), 1, anon_sym_QMARK_DOT, - STATE(1361), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1416), 1, + STATE(1390), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3417), 1, + STATE(3487), 1, sym_type_arguments, - STATE(1038), 2, + STATE(1070), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1316), 2, + STATE(1452), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(787), 17, + ACTIONS(765), 15, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -106346,11 +110696,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as, - anon_sym_async, - ACTIONS(785), 27, - anon_sym_LBRACE, + ACTIONS(763), 29, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106363,6 +110713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -106371,41 +110722,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [6800] = 15, + [6406] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(751), 1, + ACTIONS(773), 1, anon_sym_LT, - ACTIONS(2544), 1, + ACTIONS(2573), 1, anon_sym_LBRACK, - ACTIONS(2547), 1, + ACTIONS(2576), 1, anon_sym_LPAREN, - ACTIONS(2550), 1, + ACTIONS(2579), 1, anon_sym_BANG, - ACTIONS(2553), 1, + ACTIONS(2582), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2585), 1, anon_sym_QMARK_DOT, - STATE(1361), 1, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1416), 1, + STATE(1429), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3417), 1, + STATE(3483), 1, sym_type_arguments, - STATE(1038), 2, + STATE(1071), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1316), 2, + STATE(1381), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(743), 17, + ACTIONS(765), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -106423,7 +110773,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_as, anon_sym_async, - ACTIONS(741), 27, + ACTIONS(763), 27, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -106451,36 +110801,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [6890] = 15, + [6496] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(751), 1, + ACTIONS(2592), 1, + anon_sym_on, + ACTIONS(2595), 1, + anon_sym_catch, + STATE(3527), 1, + sym_catch_clause, + STATE(1072), 2, + sym__on_part, + aux_sym_try_statement_repeat1, + ACTIONS(2588), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2590), 37, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [6570] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(795), 1, anon_sym_LT, - ACTIONS(2559), 1, + ACTIONS(2598), 1, anon_sym_LBRACK, - ACTIONS(2562), 1, + ACTIONS(2601), 1, anon_sym_LPAREN, - ACTIONS(2565), 1, + ACTIONS(2604), 1, anon_sym_BANG, - ACTIONS(2568), 1, + ACTIONS(2607), 1, anon_sym_DOT, - ACTIONS(2571), 1, + ACTIONS(2610), 1, anon_sym_QMARK_DOT, - STATE(1367), 1, - sym_arguments, - STATE(1384), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, + STATE(1390), 1, + sym_arguments, + STATE(2492), 1, sym__type_args, - STATE(3490), 1, + STATE(3487), 1, sym_type_arguments, - STATE(1034), 2, + STATE(1070), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1313), 2, + STATE(1452), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(743), 15, + ACTIONS(787), 15, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -106496,7 +110913,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(741), 29, + ACTIONS(785), 29, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -106526,36 +110943,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [6980] = 15, + [6660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2613), 1, + anon_sym_DOT_DOT, + STATE(1074), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1077), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1079), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_get, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [6730] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(795), 1, anon_sym_LT, - ACTIONS(2574), 1, + ACTIONS(2616), 1, anon_sym_LBRACK, - ACTIONS(2577), 1, + ACTIONS(2619), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2622), 1, anon_sym_BANG, - ACTIONS(2583), 1, + ACTIONS(2625), 1, anon_sym_DOT, - ACTIONS(2586), 1, + ACTIONS(2628), 1, anon_sym_QMARK_DOT, - STATE(1367), 1, - sym_arguments, - STATE(1384), 1, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, + STATE(1429), 1, + sym_arguments, + STATE(2492), 1, sym__type_args, - STATE(3490), 1, + STATE(3483), 1, sym_type_arguments, - STATE(1034), 2, + STATE(1071), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1313), 2, + STATE(1381), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(787), 15, + ACTIONS(787), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -106571,11 +111053,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(785), 29, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(785), 27, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106588,7 +111070,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -106597,34 +111078,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [7070] = 11, + [6820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1080), 1, - anon_sym_DOT, - ACTIONS(2589), 1, + ACTIONS(1961), 1, + anon_sym_DOT_DOT, + STATE(1074), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1070), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2592), 1, anon_sym_LT, - STATE(2453), 1, - sym__type_dot_identifier, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - STATE(2925), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(1060), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1072), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, anon_sym_Function, anon_sym_get, anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, sym_identifier, - ACTIONS(1075), 19, + [6890] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(751), 1, + anon_sym_LT, + ACTIONS(2631), 1, + anon_sym_LBRACK, + ACTIONS(2634), 1, + anon_sym_LPAREN, + ACTIONS(2637), 1, + anon_sym_BANG, + ACTIONS(2640), 1, + anon_sym_DOT, + ACTIONS(2643), 1, + anon_sym_QMARK_DOT, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1390), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3487), 1, + sym_type_arguments, + STATE(1070), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(1452), 2, + sym_argument_part, + sym_assignable_selector, + ACTIONS(743), 15, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -106640,14 +111193,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_is, - anon_sym_as, - anon_sym_else, - ACTIONS(1073), 26, + ACTIONS(741), 29, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -106661,6 +111210,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -106668,28 +111218,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_QMARK_DOT, + anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [7151] = 8, + [6980] = 15, ACTIONS(3), 1, sym_comment, - STATE(441), 1, - sym__assignment_operator, - STATE(1091), 1, - sym_assignable_selector, - STATE(1373), 1, - sym__cascade_assignment_section, - STATE(1384), 1, + ACTIONS(751), 1, + anon_sym_LT, + ACTIONS(2646), 1, + anon_sym_LBRACK, + ACTIONS(2649), 1, + anon_sym_LPAREN, + ACTIONS(2652), 1, + anon_sym_BANG, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(2658), 1, + anon_sym_QMARK_DOT, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(1158), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(639), 18, + STATE(1429), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3483), 1, + sym_type_arguments, + STATE(1071), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(1381), 2, + sym_argument_part, + sym_assignable_selector, + ACTIONS(743), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -106702,14 +111268,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(637), 32, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_as, + anon_sym_async, + ACTIONS(741), 27, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106722,8 +111285,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -106732,405 +111293,689 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [7225] = 3, + [7070] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(637), 17, - ts_builtin_sym_end, + ACTIONS(39), 1, + anon_sym_LT, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(2661), 1, + sym_identifier, + ACTIONS(2663), 1, anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, + ACTIONS(2669), 1, + anon_sym_true, + ACTIONS(2671), 1, + anon_sym_false, + ACTIONS(2673), 1, anon_sym_LBRACE, + ACTIONS(2675), 1, + anon_sym_DQUOTE, + ACTIONS(2677), 1, + anon_sym_SQUOTE, + ACTIONS(2679), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2681), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2683), 1, + anon_sym_r, + ACTIONS(2685), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2687), 1, + anon_sym_null, + ACTIONS(2689), 1, anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DOT_DOT, - anon_sym_AT, - ACTIONS(639), 39, + ACTIONS(2691), 1, + anon_sym_new, + ACTIONS(2693), 1, + anon_sym_const, + ACTIONS(2695), 1, + anon_sym_this, + STATE(2300), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2571), 1, + sym_constructor_invocation, + STATE(2592), 1, + sym__new_builtin, + STATE(2604), 1, + sym__const_builtin, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3317), 1, + sym_super, + STATE(3461), 1, + sym_type_arguments, + STATE(2830), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2665), 3, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, + ACTIONS(2667), 3, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + STATE(2124), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1608), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [7197] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, anon_sym_true, + ACTIONS(17), 1, anon_sym_false, + ACTIONS(21), 1, anon_sym_DQUOTE, + ACTIONS(23), 1, anon_sym_SQUOTE, + ACTIONS(25), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(27), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(29), 1, anon_sym_r, + ACTIONS(31), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, + ACTIONS(37), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, + anon_sym_LT, + ACTIONS(81), 1, anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_get, - anon_sym_set, + ACTIONS(101), 1, anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_external, + ACTIONS(109), 1, anon_sym_this, + ACTIONS(113), 1, + anon_sym_POUND, + ACTIONS(502), 1, + anon_sym_LBRACE, + ACTIONS(807), 1, sym_identifier, - [7289] = 5, + ACTIONS(811), 1, + anon_sym_const, + STATE(1483), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2568), 1, + sym_constructor_invocation, + STATE(2616), 1, + sym__const_builtin, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2644), 1, + sym__new_builtin, + STATE(3247), 1, + sym_super, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3468), 1, + sym_type_arguments, + STATE(2925), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2697), 3, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + ACTIONS(2699), 3, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + STATE(1190), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1061), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [7324] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 1, - anon_sym_COMMA, - STATE(1071), 1, - aux_sym_static_final_declaration_list_repeat1, - ACTIONS(2596), 15, - ts_builtin_sym_end, + ACTIONS(39), 1, + anon_sym_LT, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(1668), 1, + sym_identifier, + ACTIONS(1670), 1, anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, + ACTIONS(1676), 1, + anon_sym_true, + ACTIONS(1678), 1, + anon_sym_false, + ACTIONS(1680), 1, anon_sym_LBRACE, + ACTIONS(1682), 1, + anon_sym_DQUOTE, + ACTIONS(1684), 1, + anon_sym_SQUOTE, + ACTIONS(1686), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1688), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1690), 1, + anon_sym_r, + ACTIONS(1692), 1, anon_sym_LBRACK, + ACTIONS(1694), 1, + anon_sym_null, + ACTIONS(1698), 1, anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2598), 39, + ACTIONS(1704), 1, + anon_sym_new, + ACTIONS(1706), 1, + anon_sym_const, + ACTIONS(1708), 1, + anon_sym_this, + STATE(1348), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2570), 1, + sym_constructor_invocation, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2628), 1, + sym__new_builtin, + STATE(2629), 1, + sym__const_builtin, + STATE(3170), 1, + sym_super, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3449), 1, + sym_type_arguments, + STATE(2820), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2701), 3, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, + ACTIONS(2703), 3, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + STATE(1340), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1068), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [7451] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LT, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(2705), 1, + sym_identifier, + ACTIONS(2707), 1, + anon_sym_POUND, + ACTIONS(2713), 1, anon_sym_true, + ACTIONS(2715), 1, anon_sym_false, + ACTIONS(2717), 1, + anon_sym_LBRACE, + ACTIONS(2719), 1, anon_sym_DQUOTE, + ACTIONS(2721), 1, anon_sym_SQUOTE, + ACTIONS(2723), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2725), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2727), 1, anon_sym_r, + ACTIONS(2729), 1, + anon_sym_LBRACK, + ACTIONS(2731), 1, anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_get, - anon_sym_set, + ACTIONS(2733), 1, + anon_sym_LPAREN, + ACTIONS(2735), 1, anon_sym_new, + ACTIONS(2737), 1, anon_sym_const, - anon_sym_final, - anon_sym_external, + ACTIONS(2739), 1, anon_sym_this, - sym_identifier, - [7357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 15, - ts_builtin_sym_end, - anon_sym_POUND, + STATE(2277), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2569), 1, + sym_constructor_invocation, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2669), 1, + sym__const_builtin, + STATE(2672), 1, + sym__new_builtin, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3358), 1, + sym_super, + STATE(3577), 1, + sym_type_arguments, + STATE(2921), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2709), 3, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + ACTIONS(2711), 3, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(2164), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1610), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [7578] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2604), 41, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, + anon_sym_POUND, + ACTIONS(2051), 1, anon_sym_true, + ACTIONS(2053), 1, anon_sym_false, + ACTIONS(2055), 1, + anon_sym_LBRACE, + ACTIONS(2057), 1, anon_sym_DQUOTE, + ACTIONS(2059), 1, anon_sym_SQUOTE, + ACTIONS(2061), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2063), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2065), 1, anon_sym_r, + ACTIONS(2067), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_export, - anon_sym_Function, - anon_sym_get, - anon_sym_import, - anon_sym_set, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, anon_sym_new, + ACTIONS(2075), 1, anon_sym_const, - anon_sym_final, - anon_sym_external, + ACTIONS(2077), 1, anon_sym_this, - sym_identifier, - [7421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 15, - ts_builtin_sym_end, - anon_sym_POUND, + STATE(914), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2567), 1, + sym_constructor_invocation, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2670), 1, + sym__const_builtin, + STATE(2674), 1, + sym__new_builtin, + STATE(3169), 1, + sym_super, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3470), 1, + sym_type_arguments, + STATE(2929), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2741), 3, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + ACTIONS(2743), 3, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(883), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(579), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [7705] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2608), 41, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(2043), 1, + sym_identifier, + ACTIONS(2045), 1, + anon_sym_POUND, + ACTIONS(2051), 1, anon_sym_true, + ACTIONS(2053), 1, anon_sym_false, + ACTIONS(2055), 1, + anon_sym_LBRACE, + ACTIONS(2057), 1, anon_sym_DQUOTE, + ACTIONS(2059), 1, anon_sym_SQUOTE, + ACTIONS(2061), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2063), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2065), 1, anon_sym_r, + ACTIONS(2067), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_export, - anon_sym_Function, - anon_sym_get, - anon_sym_import, - anon_sym_set, + ACTIONS(2071), 1, + anon_sym_LPAREN, + ACTIONS(2073), 1, anon_sym_new, + ACTIONS(2075), 1, anon_sym_const, - anon_sym_final, - anon_sym_external, + ACTIONS(2077), 1, anon_sym_this, - sym_identifier, - [7485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 17, - ts_builtin_sym_end, - anon_sym_POUND, + STATE(839), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2566), 1, + sym_constructor_invocation, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2670), 1, + sym__const_builtin, + STATE(2674), 1, + sym__new_builtin, + STATE(3213), 1, + sym_super, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3470), 1, + sym_type_arguments, + STATE(2929), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2745), 3, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + ACTIONS(2747), 3, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + STATE(883), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(578), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [7832] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DOT_DOT, - anon_sym_AT, - ACTIONS(1250), 39, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(2705), 1, + sym_identifier, + ACTIONS(2707), 1, + anon_sym_POUND, + ACTIONS(2713), 1, anon_sym_true, + ACTIONS(2715), 1, anon_sym_false, + ACTIONS(2717), 1, + anon_sym_LBRACE, + ACTIONS(2719), 1, anon_sym_DQUOTE, + ACTIONS(2721), 1, anon_sym_SQUOTE, + ACTIONS(2723), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2725), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2727), 1, anon_sym_r, + ACTIONS(2729), 1, + anon_sym_LBRACK, + ACTIONS(2731), 1, anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_get, - anon_sym_set, + ACTIONS(2733), 1, + anon_sym_LPAREN, + ACTIONS(2735), 1, anon_sym_new, + ACTIONS(2737), 1, anon_sym_const, - anon_sym_final, - anon_sym_external, + ACTIONS(2739), 1, anon_sym_this, - sym_identifier, - [7549] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2368), 1, - anon_sym_EQ, - STATE(370), 1, - sym__assignment_operator, - STATE(1088), 1, - sym_assignable_selector, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1779), 1, - sym__cascade_assignment_section, - STATE(1167), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2370), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 18, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(809), 19, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - [7627] = 8, + STATE(2131), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2564), 1, + sym_constructor_invocation, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2669), 1, + sym__const_builtin, + STATE(2672), 1, + sym__new_builtin, + STATE(3126), 1, + sym_super, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3577), 1, + sym_type_arguments, + STATE(2921), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2749), 3, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + ACTIONS(2751), 3, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + STATE(2164), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1612), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [7959] = 11, ACTIONS(3), 1, sym_comment, - STATE(441), 1, - sym__assignment_operator, - STATE(1091), 1, - sym_assignable_selector, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1447), 1, - sym__cascade_assignment_section, - STATE(1158), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(809), 18, + ACTIONS(1140), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2756), 1, + anon_sym_LT, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, + sym_type_parameters, + STATE(2963), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(1113), 4, + anon_sym_Function, + anon_sym_get, + anon_sym_set, + sym_identifier, + ACTIONS(1135), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -107144,12 +111989,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(807), 32, + anon_sym_is, + anon_sym_as, + anon_sym_else, + ACTIONS(1133), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -107163,8 +112009,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -107172,265 +112016,482 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [7701] = 3, + [8040] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 17, - ts_builtin_sym_end, + ACTIONS(39), 1, + anon_sym_LT, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(2003), 1, + sym_identifier, + ACTIONS(2005), 1, anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, + ACTIONS(2011), 1, + anon_sym_true, + ACTIONS(2013), 1, + anon_sym_false, + ACTIONS(2015), 1, anon_sym_LBRACE, + ACTIONS(2017), 1, + anon_sym_DQUOTE, + ACTIONS(2019), 1, + anon_sym_SQUOTE, + ACTIONS(2021), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2023), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2025), 1, + anon_sym_r, + ACTIONS(2027), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2029), 1, + anon_sym_null, + ACTIONS(2031), 1, anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DOT_DOT, - anon_sym_AT, - ACTIONS(1465), 39, + ACTIONS(2033), 1, + anon_sym_new, + ACTIONS(2035), 1, + anon_sym_const, + ACTIONS(2037), 1, + anon_sym_this, + STATE(1821), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2575), 1, + sym_constructor_invocation, + STATE(2590), 1, + sym__new_builtin, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2649), 1, + sym__const_builtin, + STATE(3176), 1, + sym_super, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3465), 1, + sym_type_arguments, + STATE(2876), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2760), 3, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, + ACTIONS(2762), 3, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + STATE(1867), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1583), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [8167] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LT, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(1720), 1, + sym_identifier, + ACTIONS(1722), 1, + anon_sym_POUND, + ACTIONS(1728), 1, anon_sym_true, + ACTIONS(1730), 1, anon_sym_false, + ACTIONS(1732), 1, + anon_sym_LBRACE, + ACTIONS(1734), 1, anon_sym_DQUOTE, + ACTIONS(1736), 1, anon_sym_SQUOTE, + ACTIONS(1738), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1740), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1742), 1, anon_sym_r, + ACTIONS(1744), 1, + anon_sym_LBRACK, + ACTIONS(1746), 1, anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_get, - anon_sym_set, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1756), 1, anon_sym_new, + ACTIONS(1758), 1, anon_sym_const, - anon_sym_final, - anon_sym_external, + ACTIONS(1760), 1, anon_sym_this, - sym_identifier, - [7765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2610), 15, - ts_builtin_sym_end, - anon_sym_POUND, + STATE(300), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2563), 1, + sym_constructor_invocation, + STATE(2593), 1, + sym__const_builtin, + STATE(2606), 1, + sym__new_builtin, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3341), 1, + sym_super, + STATE(3481), 1, + sym_type_arguments, + STATE(2824), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2764), 3, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + ACTIONS(2766), 3, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(335), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(111), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [8294] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2612), 41, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(2661), 1, + sym_identifier, + ACTIONS(2663), 1, + anon_sym_POUND, + ACTIONS(2669), 1, anon_sym_true, + ACTIONS(2671), 1, anon_sym_false, + ACTIONS(2673), 1, + anon_sym_LBRACE, + ACTIONS(2675), 1, anon_sym_DQUOTE, + ACTIONS(2677), 1, anon_sym_SQUOTE, + ACTIONS(2679), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2681), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2683), 1, anon_sym_r, + ACTIONS(2685), 1, + anon_sym_LBRACK, + ACTIONS(2687), 1, anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_export, - anon_sym_Function, - anon_sym_get, - anon_sym_import, - anon_sym_set, + ACTIONS(2689), 1, + anon_sym_LPAREN, + ACTIONS(2691), 1, anon_sym_new, + ACTIONS(2693), 1, anon_sym_const, - anon_sym_final, - anon_sym_external, + ACTIONS(2695), 1, anon_sym_this, - sym_identifier, - [7829] = 8, + STATE(2077), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2572), 1, + sym_constructor_invocation, + STATE(2592), 1, + sym__new_builtin, + STATE(2604), 1, + sym__const_builtin, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3172), 1, + sym_super, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3461), 1, + sym_type_arguments, + STATE(2830), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2768), 3, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + ACTIONS(2770), 3, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + STATE(2124), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1597), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [8421] = 34, ACTIONS(3), 1, sym_comment, - STATE(472), 1, - sym__assignment_operator, - STATE(1088), 1, - sym_assignable_selector, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1397), 1, - sym__cascade_assignment_section, - STATE(1167), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(809), 20, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, + ACTIONS(39), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(807), 30, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [7903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(807), 17, - ts_builtin_sym_end, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(2705), 1, + sym_identifier, + ACTIONS(2707), 1, anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, + ACTIONS(2713), 1, + anon_sym_true, + ACTIONS(2715), 1, + anon_sym_false, + ACTIONS(2717), 1, anon_sym_LBRACE, + ACTIONS(2719), 1, + anon_sym_DQUOTE, + ACTIONS(2721), 1, + anon_sym_SQUOTE, + ACTIONS(2723), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2725), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(2727), 1, + anon_sym_r, + ACTIONS(2729), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2731), 1, + anon_sym_null, + ACTIONS(2733), 1, anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_DOT_DOT, - anon_sym_AT, - ACTIONS(809), 39, + ACTIONS(2735), 1, + anon_sym_new, + ACTIONS(2737), 1, + anon_sym_const, + ACTIONS(2739), 1, + anon_sym_this, + STATE(2277), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2569), 1, + sym_constructor_invocation, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2669), 1, + sym__const_builtin, + STATE(2672), 1, + sym__new_builtin, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3358), 1, + sym_super, + STATE(3577), 1, + sym_type_arguments, + STATE(2843), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2709), 3, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, + ACTIONS(2711), 3, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + STATE(2164), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1610), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [8548] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LT, + ACTIONS(81), 1, + anon_sym_super, + ACTIONS(1963), 1, + sym_identifier, + ACTIONS(1965), 1, + anon_sym_POUND, + ACTIONS(1971), 1, anon_sym_true, + ACTIONS(1973), 1, anon_sym_false, + ACTIONS(1975), 1, + anon_sym_LBRACE, + ACTIONS(1977), 1, anon_sym_DQUOTE, + ACTIONS(1979), 1, anon_sym_SQUOTE, + ACTIONS(1981), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(1983), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1985), 1, anon_sym_r, + ACTIONS(1987), 1, + anon_sym_LBRACK, + ACTIONS(1989), 1, anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_get, - anon_sym_set, + ACTIONS(1991), 1, + anon_sym_LPAREN, + ACTIONS(1993), 1, anon_sym_new, + ACTIONS(1995), 1, anon_sym_const, - anon_sym_final, - anon_sym_external, + ACTIONS(1997), 1, anon_sym_this, - sym_identifier, - [7967] = 3, + STATE(1939), 1, + sym_assignable_expression, + STATE(2492), 1, + sym__type_args, + STATE(2574), 1, + sym_constructor_invocation, + STATE(2623), 1, + sym__const_builtin, + STATE(2624), 1, + sym__new_builtin, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3174), 1, + sym_super, + STATE(3255), 1, + sym__type_name, + STATE(3289), 1, + sym_type_parameters, + STATE(3498), 1, + sym_type_arguments, + STATE(2837), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(2772), 3, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + ACTIONS(2774), 3, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + STATE(1796), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + STATE(1588), 13, + sym__literal, + sym_symbol_literal, + sym_true, + sym_false, + sym_string_literal, + sym_list_literal, + sym_set_or_map_literal, + sym_null_literal, + sym_function_expression, + sym_new_expression, + sym_const_object_expression, + sym__primary, + sym_this, + [8675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 15, + ACTIONS(2780), 1, + anon_sym_COMMA, + STATE(1102), 1, + aux_sym_static_final_declaration_list_repeat1, + ACTIONS(2776), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -107446,7 +112507,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2616), 41, + ACTIONS(2778), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -107477,10 +112538,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, - anon_sym_export, anon_sym_Function, anon_sym_get, - anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -107488,21 +112547,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8031] = 8, + [8743] = 8, ACTIONS(3), 1, sym_comment, - STATE(472), 1, + STATE(403), 1, sym__assignment_operator, - STATE(1088), 1, + STATE(1135), 1, sym_assignable_selector, - STATE(1361), 1, + STATE(1375), 1, sym_unconditional_assignable_selector, - STATE(1408), 1, + STATE(1480), 1, sym__cascade_assignment_section, - STATE(1167), 2, + STATE(1166), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - ACTIONS(639), 20, + ACTIONS(915), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -107520,13 +112579,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(637), 30, - anon_sym_LBRACE, + ACTIONS(913), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107540,74 +112599,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [8105] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - anon_sym_EQ, - STATE(451), 1, - sym__assignment_operator, - STATE(1091), 1, - sym_assignable_selector, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1855), 1, - sym__cascade_assignment_section, - STATE(1158), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2302), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 17, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(807), 20, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107622,10 +112613,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [8183] = 3, + [8817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 17, + ACTIONS(2782), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -107635,15 +112626,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, - anon_sym_DOT_DOT, anon_sym_AT, - ACTIONS(1238), 39, + ACTIONS(2784), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -107674,8 +112663,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, + anon_sym_export, anon_sym_Function, anon_sym_get, + anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -107683,10 +112674,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8247] = 3, + [8881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 15, + ACTIONS(2786), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -107702,7 +112693,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2620), 41, + ACTIONS(2788), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -107744,78 +112735,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8311] = 10, + [8945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_EQ, - STATE(451), 1, - sym__assignment_operator, - STATE(1091), 1, - sym_assignable_selector, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1851), 1, - sym__cascade_assignment_section, - STATE(1158), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2302), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(639), 17, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(637), 20, - anon_sym_RBRACE, + ACTIONS(2790), 15, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + anon_sym_LT, sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [8389] = 3, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2792), 41, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_export, + anon_sym_Function, + anon_sym_get, + anon_sym_import, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [9009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 15, + ACTIONS(2794), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -107831,7 +112815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2624), 41, + ACTIONS(2796), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -107873,10 +112857,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8453] = 3, + [9073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1142), 17, + ACTIONS(2798), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -107886,15 +112870,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, - anon_sym_DOT_DOT, anon_sym_AT, - ACTIONS(1144), 39, + ACTIONS(2800), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -107925,8 +112907,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, + anon_sym_export, anon_sym_Function, anon_sym_get, + anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -107934,10 +112918,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8517] = 3, + [9137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 15, + ACTIONS(2802), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -107953,7 +112937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2628), 41, + ACTIONS(2804), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -107995,10 +112979,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8581] = 3, + [9201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 15, + ACTIONS(2780), 1, + anon_sym_COMMA, + STATE(1092), 1, + aux_sym_static_final_declaration_list_repeat1, + ACTIONS(2806), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108014,7 +113002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2632), 41, + ACTIONS(2808), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108045,10 +113033,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, - anon_sym_export, anon_sym_Function, anon_sym_get, - anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -108056,23 +113042,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8645] = 10, + [9269] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 1, - anon_sym_EQ, - STATE(370), 1, + STATE(563), 1, sym__assignment_operator, - STATE(1088), 1, + STATE(1130), 1, sym_assignable_selector, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1773), 1, + STATE(1349), 1, sym__cascade_assignment_section, - STATE(1167), 2, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1169), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - ACTIONS(2370), 12, + ACTIONS(686), 20, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(684), 30, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108085,10 +113093,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(637), 18, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108104,30 +113108,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(639), 19, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - [8723] = 3, + [9343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2634), 15, + ACTIONS(2814), 1, + anon_sym_COMMA, + STATE(1102), 1, + aux_sym_static_final_declaration_list_repeat1, + ACTIONS(2810), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108143,7 +113131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2636), 41, + ACTIONS(2812), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108174,10 +113162,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, - anon_sym_export, anon_sym_Function, anon_sym_get, - anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -108185,10 +113171,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8787] = 3, + [9411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 15, + ACTIONS(2817), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108204,7 +113190,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2640), 41, + ACTIONS(2819), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108246,10 +113232,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8851] = 3, + [9475] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(403), 1, + sym__assignment_operator, + STATE(1135), 1, + sym_assignable_selector, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1406), 1, + sym__cascade_assignment_section, + STATE(1166), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(686), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(684), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [9549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2642), 15, + ACTIONS(2810), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108259,13 +113311,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2644), 41, + anon_sym_SEMI, + ACTIONS(2812), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108296,10 +113350,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, - anon_sym_export, anon_sym_Function, anon_sym_get, - anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -108307,10 +113359,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8915] = 3, + [9613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 17, + ACTIONS(2821), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108320,15 +113372,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - anon_sym_SEMI, - ACTIONS(2648), 39, + ACTIONS(2823), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108359,8 +113409,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, + anon_sym_export, anon_sym_Function, anon_sym_get, + anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -108368,14 +113420,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [8979] = 5, + [9677] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 1, + ACTIONS(2371), 1, + anon_sym_EQ, + STATE(426), 1, + sym__assignment_operator, + STATE(1135), 1, + sym_assignable_selector, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1949), 1, + sym__cascade_assignment_section, + STATE(1166), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2373), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(915), 17, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(913), 20, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - STATE(1075), 1, - aux_sym_static_final_declaration_list_repeat1, - ACTIONS(2650), 15, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [9755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(684), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108385,13 +113501,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, + anon_sym_DOT_DOT, anon_sym_AT, - ACTIONS(2652), 39, + ACTIONS(686), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108431,10 +113549,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [9047] = 3, + [9819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 17, + ACTIONS(2825), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108452,7 +113570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_AT, anon_sym_SEMI, - ACTIONS(2656), 39, + ACTIONS(2827), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108492,10 +113610,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [9111] = 3, + [9883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2658), 15, + ACTIONS(1591), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108505,13 +113623,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, + anon_sym_DOT_DOT, anon_sym_AT, - ACTIONS(2660), 41, + ACTIONS(1593), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108542,10 +113662,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, - anon_sym_export, anon_sym_Function, anon_sym_get, - anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -108553,10 +113671,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [9175] = 3, + [9947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 15, + ACTIONS(2829), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -108572,7 +113690,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2664), 41, + ACTIONS(2831), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108614,179 +113732,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [9239] = 5, + [10011] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 1, - anon_sym_COMMA, - STATE(1075), 1, - aux_sym_static_final_declaration_list_repeat1, - ACTIONS(2654), 15, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, + ACTIONS(2345), 1, + anon_sym_EQ, + STATE(527), 1, + sym__assignment_operator, + STATE(1130), 1, + sym_assignable_selector, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1804), 1, + sym__cascade_assignment_section, + STATE(1169), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2347), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(684), 18, anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2656), 39, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_get, - anon_sym_set, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_external, - anon_sym_this, - sym_identifier, - [9307] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(686), 19, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(1974), 1, - sym_identifier, - ACTIONS(1976), 1, - anon_sym_POUND, - ACTIONS(1982), 1, - anon_sym_true, - ACTIONS(1984), 1, - anon_sym_false, - ACTIONS(1986), 1, - anon_sym_LBRACE, - ACTIONS(1988), 1, - anon_sym_DQUOTE, - ACTIONS(1990), 1, - anon_sym_SQUOTE, - ACTIONS(1992), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1994), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(1996), 1, - anon_sym_r, - ACTIONS(1998), 1, - anon_sym_LBRACK, - ACTIONS(2000), 1, - anon_sym_null, - ACTIONS(2002), 1, - anon_sym_LPAREN, - ACTIONS(2004), 1, - anon_sym_new, - ACTIONS(2006), 1, - anon_sym_const, - ACTIONS(2008), 1, - anon_sym_this, - STATE(766), 1, - sym_assignable_expression, - STATE(2526), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2556), 1, - sym__new_builtin, - STATE(2604), 1, - sym__const_builtin, - STATE(3120), 1, - sym_super, - STATE(3220), 1, - sym_type_parameters, - STATE(3278), 1, - sym__type_name, - STATE(2853), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2669), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2671), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(817), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(356), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [9428] = 3, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + [10089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 16, + ACTIONS(1575), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, + anon_sym_DOT_DOT, anon_sym_AT, - ACTIONS(1180), 39, + ACTIONS(1577), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108801,52 +113836,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, - anon_sym_case, - anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, anon_sym_continue, anon_sym_yield, anon_sym_return, - anon_sym_on, anon_sym_try, - anon_sym_catch, - anon_sym_finally, anon_sym_if, - anon_sym_else, anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, + anon_sym_get, + anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, + anon_sym_external, anon_sym_this, sym_identifier, - [9491] = 3, + [10153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2673), 16, + ACTIONS(1531), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, + anon_sym_DOT_DOT, anon_sym_AT, - ACTIONS(2675), 39, + ACTIONS(1533), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -108861,51 +113897,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, - anon_sym_case, - anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, anon_sym_continue, anon_sym_yield, anon_sym_return, - anon_sym_on, anon_sym_try, - anon_sym_catch, - anon_sym_finally, anon_sym_if, - anon_sym_else, anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, + anon_sym_get, + anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, + anon_sym_external, anon_sym_this, sym_identifier, - [9554] = 9, + [10217] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_LT, - ACTIONS(2677), 1, - anon_sym_LPAREN, - STATE(1416), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3417), 1, - sym_type_arguments, - STATE(1079), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(839), 19, + STATE(563), 1, + sym__assignment_operator, + STATE(1130), 1, + sym_assignable_selector, + STATE(1374), 1, + sym__cascade_assignment_section, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1169), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(915), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -108922,7 +113957,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(837), 29, + ACTIONS(913), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -108938,6 +113973,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -108952,296 +113988,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [9629] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2680), 1, - anon_sym_is, - ACTIONS(2683), 1, - anon_sym_as, - STATE(586), 1, - sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, - sym_is_operator, - ACTIONS(825), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(828), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(2247), 2, - sym_type_test, - sym_type_cast, - ACTIONS(823), 16, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(821), 28, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [9708] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(2686), 1, - sym_identifier, - ACTIONS(2688), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_true, - ACTIONS(2696), 1, - anon_sym_false, - ACTIONS(2698), 1, - anon_sym_LBRACE, - ACTIONS(2700), 1, - anon_sym_DQUOTE, - ACTIONS(2702), 1, - anon_sym_SQUOTE, - ACTIONS(2704), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2706), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(2708), 1, - anon_sym_r, - ACTIONS(2710), 1, - anon_sym_LBRACK, - ACTIONS(2712), 1, - anon_sym_null, - ACTIONS(2714), 1, - anon_sym_LPAREN, - ACTIONS(2716), 1, - anon_sym_new, - ACTIONS(2718), 1, - anon_sym_const, - ACTIONS(2720), 1, - anon_sym_this, - STATE(2246), 1, - sym_assignable_expression, - STATE(2525), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2570), 1, - sym__const_builtin, - STATE(2582), 1, - sym__new_builtin, - STATE(3171), 1, - sym_super, - STATE(3220), 1, - sym_type_parameters, - STATE(3278), 1, - sym__type_name, - STATE(2885), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2690), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2692), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(2126), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1563), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [9829] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(2722), 1, - sym_identifier, - ACTIONS(2724), 1, - anon_sym_POUND, - ACTIONS(2730), 1, - anon_sym_true, - ACTIONS(2732), 1, - anon_sym_false, - ACTIONS(2734), 1, - anon_sym_LBRACE, - ACTIONS(2736), 1, - anon_sym_DQUOTE, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(2740), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2742), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(2744), 1, - anon_sym_r, - ACTIONS(2746), 1, - anon_sym_LBRACK, - ACTIONS(2748), 1, - anon_sym_null, - ACTIONS(2750), 1, - anon_sym_LPAREN, - ACTIONS(2752), 1, - anon_sym_new, - ACTIONS(2754), 1, - anon_sym_const, - ACTIONS(2756), 1, - anon_sym_this, - STATE(2109), 1, - sym_assignable_expression, - STATE(2530), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2557), 1, - sym__new_builtin, - STATE(2574), 1, - sym__const_builtin, - STATE(3158), 1, - sym_super, - STATE(3220), 1, - sym_type_parameters, - STATE(3278), 1, - sym__type_name, - STATE(2825), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2726), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2728), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(2159), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1557), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [9950] = 11, + [10291] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(834), 1, - anon_sym_as, - ACTIONS(2680), 1, - anon_sym_is, - STATE(586), 1, - sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, - sym_is_operator, - ACTIONS(825), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(828), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(2247), 2, - sym_type_test, - sym_type_cast, - ACTIONS(823), 17, + ACTIONS(2345), 1, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_async, - ACTIONS(821), 27, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, + STATE(527), 1, + sym__assignment_operator, + STATE(1130), 1, + sym_assignable_selector, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1808), 1, + sym__cascade_assignment_section, + STATE(1169), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2347), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109254,29 +114017,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(913), 18, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [10029] = 3, + ACTIONS(915), 19, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + [10369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 16, + ACTIONS(2833), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, @@ -109286,7 +114075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1176), 39, + ACTIONS(2835), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -109301,51 +114090,127 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, - anon_sym_case, - anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, anon_sym_continue, anon_sym_yield, anon_sym_return, - anon_sym_on, anon_sym_try, - anon_sym_catch, - anon_sym_finally, anon_sym_if, - anon_sym_else, anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, + anon_sym_export, anon_sym_Function, + anon_sym_get, + anon_sym_import, + anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, + anon_sym_external, anon_sym_this, sym_identifier, - [10092] = 9, + [10433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_LT, - ACTIONS(2758), 1, + ACTIONS(2837), 15, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, anon_sym_LPAREN, - STATE(1367), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3490), 1, - sym_type_arguments, - STATE(1085), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(839), 17, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2839), 41, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_export, + anon_sym_Function, + anon_sym_get, + anon_sym_import, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [10497] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, anon_sym_EQ, + STATE(426), 1, + sym__assignment_operator, + STATE(1135), 1, + sym_assignable_selector, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1950), 1, + sym__cascade_assignment_section, + STATE(1166), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2373), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(686), 17, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -109360,24 +114225,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(837), 31, + ACTIONS(684), 20, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109392,10 +114246,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [10167] = 3, + [10575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 16, + ACTIONS(2841), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -109405,14 +114259,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1204), 39, + ACTIONS(2843), 41, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -109443,8 +114296,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_var, anon_sym_covariant, + anon_sym_export, anon_sym_Function, anon_sym_get, + anon_sym_import, anon_sym_set, anon_sym_new, anon_sym_const, @@ -109452,386 +114307,193 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [10230] = 32, + [10639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, + ACTIONS(1587), 17, + ts_builtin_sym_end, anon_sym_POUND, - ACTIONS(1902), 1, - anon_sym_true, - ACTIONS(1904), 1, - anon_sym_false, - ACTIONS(1906), 1, - anon_sym_LBRACE, - ACTIONS(1908), 1, - anon_sym_DQUOTE, - ACTIONS(1910), 1, - anon_sym_SQUOTE, - ACTIONS(1912), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1914), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(1916), 1, - anon_sym_r, - ACTIONS(1918), 1, - anon_sym_LBRACK, - ACTIONS(1920), 1, - anon_sym_null, - ACTIONS(1922), 1, - anon_sym_LPAREN, - ACTIONS(1924), 1, - anon_sym_new, - ACTIONS(1926), 1, - anon_sym_const, - ACTIONS(1928), 1, - anon_sym_this, - STATE(1888), 1, - sym_assignable_expression, - STATE(2529), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2620), 1, - sym__new_builtin, - STATE(2629), 1, - sym__const_builtin, - STATE(3220), 1, - sym_type_parameters, - STATE(3240), 1, - sym_super, - STATE(3278), 1, - sym__type_name, - STATE(2830), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2761), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2763), 3, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, - STATE(1833), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1543), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [10351] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(818), 1, - anon_sym_LT, - ACTIONS(2765), 1, - anon_sym_LPAREN, - STATE(1416), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3417), 1, - sym_type_arguments, - STATE(1090), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(813), 19, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(811), 29, anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + anon_sym_LPAREN, + anon_sym_LT, sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [10426] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(1690), 1, - sym_identifier, - ACTIONS(1692), 1, - anon_sym_POUND, - ACTIONS(1698), 1, + anon_sym_AT, + ACTIONS(1589), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, anon_sym_true, - ACTIONS(1700), 1, anon_sym_false, - ACTIONS(1702), 1, - anon_sym_LBRACE, - ACTIONS(1704), 1, anon_sym_DQUOTE, - ACTIONS(1706), 1, anon_sym_SQUOTE, - ACTIONS(1708), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1710), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(1712), 1, anon_sym_r, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1716), 1, anon_sym_null, - ACTIONS(1720), 1, - anon_sym_LPAREN, - ACTIONS(1726), 1, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_get, + anon_sym_set, anon_sym_new, - ACTIONS(1728), 1, anon_sym_const, - ACTIONS(1730), 1, + anon_sym_final, + anon_sym_external, anon_sym_this, - STATE(225), 1, - sym_assignable_expression, - STATE(2528), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2595), 1, - sym__const_builtin, - STATE(2599), 1, - sym__new_builtin, - STATE(3220), 1, - sym_type_parameters, - STATE(3271), 1, - sym_super, - STATE(3278), 1, - sym__type_name, - STATE(2889), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2768), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2770), 3, + sym_identifier, + [10703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2845), 15, + ts_builtin_sym_end, + anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, - STATE(270), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(113), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [10547] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(854), 1, - anon_sym_LT, - ACTIONS(2772), 1, - anon_sym_LPAREN, - STATE(1416), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3417), 1, - sym_type_arguments, - STATE(1079), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(849), 19, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(847), 29, anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [10622] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(818), 1, - anon_sym_LT, - ACTIONS(2775), 1, anon_sym_LPAREN, - STATE(1367), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3490), 1, - sym_type_arguments, - STATE(1098), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(813), 17, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + sym_increment_operator, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(811), 31, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2847), 41, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_export, + anon_sym_Function, + anon_sym_get, + anon_sym_import, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [10767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(913), 17, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LT, sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [10697] = 3, + anon_sym_AT, + ACTIONS(915), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_get, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [10831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2778), 16, + ACTIONS(2849), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -109848,7 +114510,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2780), 39, + ACTIONS(2851), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -109888,99 +114550,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [10760] = 32, + [10894] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(2853), 1, + anon_sym_is, + ACTIONS(2856), 1, + anon_sym_as, + STATE(713), 1, + sym_relational_operator, + STATE(2633), 1, + sym_is_operator, + STATE(2640), 1, + sym_as_operator, + ACTIONS(995), 2, anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(1934), 1, - sym_identifier, - ACTIONS(1936), 1, - anon_sym_POUND, - ACTIONS(1942), 1, - anon_sym_true, - ACTIONS(1944), 1, - anon_sym_false, - ACTIONS(1946), 1, - anon_sym_LBRACE, - ACTIONS(1948), 1, - anon_sym_DQUOTE, - ACTIONS(1950), 1, - anon_sym_SQUOTE, - ACTIONS(1952), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1954), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(1956), 1, - anon_sym_r, - ACTIONS(1958), 1, + anon_sym_GT, + ACTIONS(998), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + ACTIONS(993), 16, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(991), 28, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_null, - ACTIONS(1962), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - ACTIONS(1964), 1, - anon_sym_new, - ACTIONS(1966), 1, - anon_sym_const, - ACTIONS(1968), 1, - anon_sym_this, - STATE(1896), 1, - sym_assignable_expression, - STATE(2522), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2592), 1, - sym__new_builtin, - STATE(2614), 1, - sym__const_builtin, - STATE(3220), 1, - sym_type_parameters, - STATE(3265), 1, - sym_super, - STATE(3278), 1, - sym__type_name, - STATE(2793), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2782), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2784), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(1865), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1548), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [10881] = 3, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [10973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 16, + ACTIONS(2859), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -109997,7 +114638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2788), 39, + ACTIONS(2861), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -110037,10 +114678,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [10944] = 3, + [11036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 16, + ACTIONS(1208), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -110057,7 +114698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1242), 39, + ACTIONS(1210), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -110097,201 +114738,287 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [11007] = 32, + [11099] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1014), 1, anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(2722), 1, - sym_identifier, - ACTIONS(2724), 1, - anon_sym_POUND, - ACTIONS(2730), 1, - anon_sym_true, - ACTIONS(2732), 1, - anon_sym_false, - ACTIONS(2734), 1, - anon_sym_LBRACE, - ACTIONS(2736), 1, - anon_sym_DQUOTE, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(2740), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2742), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(2744), 1, - anon_sym_r, - ACTIONS(2746), 1, + ACTIONS(2863), 1, + anon_sym_LPAREN, + STATE(1390), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3487), 1, + sym_type_arguments, + STATE(1128), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(1009), 17, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1007), 31, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2748), 1, - anon_sym_null, - ACTIONS(2750), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [11174] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 1, + anon_sym_LT, + ACTIONS(2866), 1, anon_sym_LPAREN, - ACTIONS(2752), 1, - anon_sym_new, - ACTIONS(2754), 1, - anon_sym_const, - ACTIONS(2756), 1, - anon_sym_this, - STATE(2271), 1, - sym_assignable_expression, - STATE(2532), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2557), 1, - sym__new_builtin, - STATE(2574), 1, - sym__const_builtin, - STATE(3205), 1, - sym_super, - STATE(3220), 1, - sym_type_parameters, - STATE(3278), 1, - sym__type_name, - STATE(2811), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2790), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2792), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(2159), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1564), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [11128] = 32, + STATE(1429), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3483), 1, + sym_type_arguments, + STATE(1129), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(1009), 19, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1007), 29, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [11249] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(1636), 1, - sym_identifier, - ACTIONS(1638), 1, - anon_sym_POUND, - ACTIONS(1644), 1, - anon_sym_true, - ACTIONS(1646), 1, - anon_sym_false, - ACTIONS(1648), 1, + ACTIONS(2869), 1, + anon_sym_LPAREN, + STATE(1429), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3483), 1, + sym_type_arguments, + STATE(1131), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(983), 19, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(981), 29, anon_sym_LBRACE, - ACTIONS(1650), 1, - anon_sym_DQUOTE, - ACTIONS(1652), 1, - anon_sym_SQUOTE, - ACTIONS(1654), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1656), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(1658), 1, - anon_sym_r, - ACTIONS(1660), 1, anon_sym_LBRACK, - ACTIONS(1662), 1, - anon_sym_null, - ACTIONS(1666), 1, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [11324] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(978), 1, + anon_sym_LT, + ACTIONS(2872), 1, anon_sym_LPAREN, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1674), 1, - anon_sym_const, - ACTIONS(1676), 1, - anon_sym_this, - STATE(1337), 1, - sym_assignable_expression, - STATE(2533), 1, - sym_constructor_invocation, - STATE(2546), 1, - sym__const_builtin, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2610), 1, - sym__new_builtin, - STATE(3164), 1, - sym_super, - STATE(3220), 1, - sym_type_parameters, - STATE(3278), 1, - sym__type_name, - STATE(2817), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2794), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2796), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(1364), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1024), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [11249] = 9, + STATE(1429), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3483), 1, + sym_type_arguments, + STATE(1129), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(973), 19, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(971), 29, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [11399] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(854), 1, + ACTIONS(978), 1, anon_sym_LT, - ACTIONS(2798), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - STATE(1367), 1, + STATE(1390), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3490), 1, + STATE(3487), 1, sym_type_arguments, - STATE(1085), 2, + STATE(1128), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(849), 17, + ACTIONS(973), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -110309,7 +115036,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(847), 31, + ACTIONS(971), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -110341,372 +115068,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [11324] = 32, + [11474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(2722), 1, - sym_identifier, - ACTIONS(2724), 1, + ACTIONS(1313), 16, + ts_builtin_sym_end, anon_sym_POUND, - ACTIONS(2730), 1, - anon_sym_true, - ACTIONS(2732), 1, - anon_sym_false, - ACTIONS(2734), 1, - anon_sym_LBRACE, - ACTIONS(2736), 1, - anon_sym_DQUOTE, - ACTIONS(2738), 1, - anon_sym_SQUOTE, - ACTIONS(2740), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2742), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(2744), 1, - anon_sym_r, - ACTIONS(2746), 1, - anon_sym_LBRACK, - ACTIONS(2748), 1, - anon_sym_null, - ACTIONS(2750), 1, - anon_sym_LPAREN, - ACTIONS(2752), 1, - anon_sym_new, - ACTIONS(2754), 1, - anon_sym_const, - ACTIONS(2756), 1, - anon_sym_this, - STATE(2271), 1, - sym_assignable_expression, - STATE(2532), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2557), 1, - sym__new_builtin, - STATE(2574), 1, - sym__const_builtin, - STATE(3205), 1, - sym_super, - STATE(3220), 1, - sym_type_parameters, - STATE(3278), 1, - sym__type_name, - STATE(2825), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2790), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2792), 3, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, - STATE(2159), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1564), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [11445] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - anon_sym_true, - ACTIONS(17), 1, - anon_sym_false, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - anon_sym_SQUOTE, - ACTIONS(25), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(27), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(29), 1, - anon_sym_r, - ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_null, - ACTIONS(37), 1, anon_sym_LPAREN, - ACTIONS(39), 1, anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(101), 1, - anon_sym_new, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(113), 1, - anon_sym_POUND, - ACTIONS(502), 1, - anon_sym_LBRACE, - ACTIONS(857), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_const, - STATE(1379), 1, - sym_assignable_expression, - STATE(2527), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2564), 1, - sym__new_builtin, - STATE(2575), 1, - sym__const_builtin, - STATE(3220), 1, - sym_type_parameters, - STATE(3277), 1, - sym_super, - STATE(3278), 1, - sym__type_name, - STATE(2779), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2801), 3, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1315), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, - ACTIONS(2803), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(1129), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1031), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [11566] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(81), 1, - anon_sym_super, - ACTIONS(1974), 1, - sym_identifier, - ACTIONS(1976), 1, - anon_sym_POUND, - ACTIONS(1982), 1, anon_sym_true, - ACTIONS(1984), 1, anon_sym_false, - ACTIONS(1986), 1, - anon_sym_LBRACE, - ACTIONS(1988), 1, anon_sym_DQUOTE, - ACTIONS(1990), 1, anon_sym_SQUOTE, - ACTIONS(1992), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(1994), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(1996), 1, anon_sym_r, - ACTIONS(1998), 1, - anon_sym_LBRACK, - ACTIONS(2000), 1, anon_sym_null, - ACTIONS(2002), 1, - anon_sym_LPAREN, - ACTIONS(2004), 1, - anon_sym_new, - ACTIONS(2006), 1, - anon_sym_const, - ACTIONS(2008), 1, - anon_sym_this, - STATE(887), 1, - sym_assignable_expression, - STATE(2524), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2556), 1, - sym__new_builtin, - STATE(2604), 1, - sym__const_builtin, - STATE(3118), 1, - sym_super, - STATE(3220), 1, - sym_type_parameters, - STATE(3278), 1, - sym__type_name, - STATE(2853), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2805), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2807), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(817), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(367), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [11687] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(81), 1, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_on, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, anon_sym_super, - ACTIONS(2686), 1, - sym_identifier, - ACTIONS(2688), 1, - anon_sym_POUND, - ACTIONS(2694), 1, - anon_sym_true, - ACTIONS(2696), 1, - anon_sym_false, - ACTIONS(2698), 1, - anon_sym_LBRACE, - ACTIONS(2700), 1, - anon_sym_DQUOTE, - ACTIONS(2702), 1, - anon_sym_SQUOTE, - ACTIONS(2704), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2706), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(2708), 1, - anon_sym_r, - ACTIONS(2710), 1, - anon_sym_LBRACK, - ACTIONS(2712), 1, - anon_sym_null, - ACTIONS(2714), 1, - anon_sym_LPAREN, - ACTIONS(2716), 1, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, anon_sym_new, - ACTIONS(2718), 1, anon_sym_const, - ACTIONS(2720), 1, + anon_sym_final, anon_sym_this, - STATE(2139), 1, - sym_assignable_expression, - STATE(2523), 1, - sym_constructor_invocation, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2570), 1, - sym__const_builtin, - STATE(2582), 1, - sym__new_builtin, - STATE(3172), 1, - sym_super, - STATE(3220), 1, - sym_type_parameters, - STATE(3278), 1, - sym__type_name, - STATE(2885), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(2809), 3, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - ACTIONS(2811), 3, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - STATE(2126), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - STATE(1572), 13, - sym__literal, - sym_symbol_literal, - sym_true, - sym_false, - sym_string_literal, - sym_list_literal, - sym_set_or_map_literal, - sym_null_literal, - sym_function_expression, - sym_new_expression, - sym_const_object_expression, - sym__primary, - sym_this, - [11808] = 3, + sym_identifier, + [11537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 15, + ACTIONS(1325), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, @@ -110716,7 +115148,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2815), 39, + ACTIONS(1327), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -110731,46 +115163,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, + anon_sym_case, + anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, anon_sym_continue, anon_sym_yield, anon_sym_return, + anon_sym_on, anon_sym_try, + anon_sym_catch, + anon_sym_finally, anon_sym_if, + anon_sym_else, anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, - anon_sym_get, - anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, - anon_sym_external, anon_sym_this, sym_identifier, - [11870] = 6, + [11600] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, - anon_sym_Function, - STATE(3016), 1, - sym__function_builtin_identifier, - STATE(1123), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(974), 20, + ACTIONS(988), 1, + anon_sym_LT, + ACTIONS(2878), 1, + anon_sym_LPAREN, + STATE(1390), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3487), 1, + sym_type_arguments, + STATE(1132), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(983), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -110784,10 +115221,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_DOT, + ACTIONS(981), 31, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [11675] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 1, anon_sym_as, + ACTIONS(2853), 1, + anon_sym_is, + STATE(713), 1, + sym_relational_operator, + STATE(2633), 1, + sym_is_operator, + STATE(2640), 1, + sym_as_operator, + ACTIONS(995), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(998), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + ACTIONS(993), 17, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, anon_sym_DOT, anon_sym_async, - ACTIONS(972), 30, + ACTIONS(991), 27, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -110807,21 +115314,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [11938] = 3, + [11754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 15, + ACTIONS(1543), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -110831,13 +115335,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2821), 39, + ACTIONS(1545), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -110877,17 +115382,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [12000] = 6, + [11817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2883), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_on, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [11880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2885), 15, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2887), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, anon_sym_Function, - STATE(3016), 1, - sym__function_builtin_identifier, - STATE(1123), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(968), 20, + anon_sym_get, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [11942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -110905,13 +115522,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(966), 30, - anon_sym_LBRACE, + ACTIONS(1417), 36, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110925,6 +115542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -110933,16 +115551,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, anon_sym_SEMI, - [12068] = 3, + [12004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 15, + ACTIONS(2889), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -110958,7 +115579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2825), 39, + ACTIONS(2891), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -110998,11 +115619,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [12130] = 3, + [12066] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 18, + ACTIONS(2493), 1, anon_sym_EQ, + STATE(465), 1, + sym__assignment_operator, + STATE(1222), 1, + sym_assignable_selector, + STATE(1552), 1, + sym_unconditional_assignable_selector, + STATE(2170), 1, + sym__cascade_assignment_section, + STATE(1253), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2495), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(915), 16, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -111018,26 +115664,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1178), 36, + ACTIONS(913), 19, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -111046,40 +115679,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_while, - anon_sym_on, - anon_sym_catch, - anon_sym_finally, anon_sym_else, anon_sym_SEMI, - [12192] = 3, + [12142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 18, + ACTIONS(2893), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - anon_sym_SEMI, - ACTIONS(2829), 36, + ACTIONS(2895), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -111094,8 +115719,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, - anon_sym_case, - anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, @@ -111104,29 +115727,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_try, anon_sym_if, - anon_sym_else, anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, + anon_sym_get, + anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, + anon_sym_external, anon_sym_this, sym_identifier, - [12254] = 4, + [12204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 6, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_get, - anon_sym_set, - anon_sym_external, - ACTIONS(2831), 15, + ACTIONS(2897), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -111142,7 +115763,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2834), 33, + ACTIONS(2899), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -111166,145 +115787,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_if, anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, + anon_sym_get, + anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, + anon_sym_external, anon_sym_this, sym_identifier, - [12318] = 10, + [12266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, - anon_sym_EQ, - STATE(381), 1, - sym__assignment_operator, - STATE(1179), 1, - sym_assignable_selector, - STATE(1506), 1, - sym_unconditional_assignable_selector, - STATE(2022), 1, - sym__cascade_assignment_section, - STATE(1197), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2445), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 16, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(807), 19, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [12394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1434), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1432), 36, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, - anon_sym_SEMI, - [12456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2839), 15, + ACTIONS(2901), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -111320,7 +115822,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2837), 39, + ACTIONS(2903), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -111360,10 +115862,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [12518] = 3, + [12328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 18, + ACTIONS(2905), 1, + anon_sym_Function, + STATE(3098), 1, + sym__function_builtin_identifier, + STATE(1156), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1045), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -111381,13 +115890,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1404), 36, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1043), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111401,7 +115910,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -111410,19 +115918,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [12580] = 3, + [12396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 15, + ACTIONS(2907), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -111438,7 +115943,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2843), 39, + ACTIONS(2909), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -111478,10 +115983,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [12642] = 3, + [12458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 15, + ACTIONS(2911), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -111497,7 +116002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2847), 39, + ACTIONS(2913), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -111537,10 +116042,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [12704] = 3, + [12520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 15, + ACTIONS(2915), 1, + anon_sym_Function, + STATE(3035), 1, + sym__function_builtin_identifier, + STATE(1149), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1032), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1030), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [12588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2918), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -111556,7 +116123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2851), 39, + ACTIONS(2920), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -111596,41 +116163,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [12766] = 6, + [12650] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_Function, - STATE(3071), 1, - sym__function_builtin_identifier, - STATE(1122), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(968), 18, + ACTIONS(2493), 1, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(966), 32, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, + STATE(465), 1, + sym__assignment_operator, + STATE(1222), 1, + sym_assignable_selector, + STATE(1552), 1, + sym_unconditional_assignable_selector, + STATE(2190), 1, + sym__cascade_assignment_section, + STATE(1253), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2495), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111643,26 +116192,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [12834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1430), 18, - anon_sym_EQ, + ACTIONS(686), 16, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -111678,26 +116208,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1428), 36, + ACTIONS(684), 19, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -111706,37 +116223,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_if, anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, anon_sym_SEMI, - [12896] = 3, + [12726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 15, + ACTIONS(2922), 18, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2857), 39, + anon_sym_SEMI, + ACTIONS(2924), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -111751,6 +116266,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, + anon_sym_case, + anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, @@ -111759,27 +116276,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_try, anon_sym_if, + anon_sym_else, anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, - anon_sym_get, - anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, - anon_sym_external, anon_sym_this, sym_identifier, - [12958] = 3, + [12788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 15, + ACTIONS(2926), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -111795,7 +116307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2861), 39, + ACTIONS(2928), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -111835,17 +116347,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [13020] = 6, + [12850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(2905), 1, anon_sym_Function, - STATE(3071), 1, + STATE(3098), 1, sym__function_builtin_identifier, - STATE(1122), 2, + STATE(1156), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(978), 18, + ACTIONS(1039), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -111863,13 +116375,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(976), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1037), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111883,7 +116395,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -111892,22 +116403,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [13088] = 6, + [12918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, + ACTIONS(2930), 1, anon_sym_Function, - STATE(3016), 1, + STATE(3035), 1, sym__function_builtin_identifier, - STATE(1123), 2, + STATE(1149), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(978), 20, + ACTIONS(1045), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -111925,13 +116437,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(976), 30, - anon_sym_LBRACE, + ACTIONS(1043), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111945,6 +116457,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -111953,16 +116466,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [13156] = 3, + [12986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 18, + ACTIONS(2932), 1, + anon_sym_Function, + STATE(3098), 1, + sym__function_builtin_identifier, + STATE(1156), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1032), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -111980,13 +116499,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1424), 36, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1030), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112000,7 +116519,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -112009,32 +116527,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [13218] = 10, + [13054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 1, + ACTIONS(1315), 18, anon_sym_EQ, - STATE(533), 1, - sym__assignment_operator, - STATE(1188), 1, - sym_assignable_selector, - STATE(1510), 1, - sym_unconditional_assignable_selector, - STATE(2073), 1, - sym__cascade_assignment_section, - STATE(1215), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2414), 12, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1313), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112047,63 +116573,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 17, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_while, + anon_sym_on, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, anon_sym_SEMI, - ACTIONS(809), 18, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - [13294] = 3, + [13116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 15, + ACTIONS(2935), 18, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2871), 39, + anon_sym_SEMI, + ACTIONS(2937), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112118,6 +116629,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, + anon_sym_case, + anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, @@ -112126,27 +116639,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_try, anon_sym_if, + anon_sym_else, anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, - anon_sym_get, - anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, - anon_sym_external, anon_sym_this, sym_identifier, - [13356] = 3, + [13178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 15, + ACTIONS(2939), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -112162,7 +116670,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2875), 39, + ACTIONS(2941), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112202,34 +116710,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [13418] = 3, + [13240] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 18, + ACTIONS(2543), 1, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1420), 36, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, + STATE(550), 1, + sym__assignment_operator, + STATE(1224), 1, + sym_assignable_selector, + STATE(1533), 1, + sym_unconditional_assignable_selector, + STATE(2104), 1, + sym__cascade_assignment_section, + STATE(1265), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2545), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112242,30 +116739,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(913), 17, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [13480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 18, - anon_sym_EQ, + ACTIONS(915), 18, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -112281,49 +116773,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1372), 36, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, - anon_sym_SEMI, - [13542] = 3, + anon_sym_DOT, + anon_sym_async, + [13316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 15, + ACTIONS(2943), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -112339,7 +116795,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2879), 39, + ACTIONS(2945), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112379,79 +116835,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [13604] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 1, - anon_sym_DOT, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2592), 1, - anon_sym_LT, - ACTIONS(2884), 1, - anon_sym_EQ, - STATE(2453), 1, - sym__type_dot_identifier, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - STATE(2908), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(1060), 3, - anon_sym_Function, - anon_sym_this, - sym_identifier, - ACTIONS(2881), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1075), 17, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_is, - anon_sym_as, - ACTIONS(1073), 22, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - [13686] = 3, + [13378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 15, + ACTIONS(2947), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -112467,7 +116854,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2889), 39, + ACTIONS(2949), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112507,10 +116894,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [13748] = 3, + [13440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 15, + ACTIONS(2951), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -112526,7 +116913,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2893), 39, + ACTIONS(2953), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112566,10 +116953,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [13810] = 3, + [13502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1319), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1317), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [13564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 15, + ACTIONS(2955), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -112585,7 +117031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2897), 39, + ACTIONS(2957), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112625,10 +117071,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [13872] = 3, + [13626] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2959), 1, + anon_sym_LBRACK, + ACTIONS(2962), 1, + anon_sym_DOT, + ACTIONS(2965), 1, + anon_sym_QMARK_DOT, + STATE(1135), 1, + sym_assignable_selector, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1166), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(1019), 17, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + ACTIONS(1017), 30, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [13700] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1140), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2756), 1, + anon_sym_LT, + ACTIONS(2971), 1, + anon_sym_EQ, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, + sym_type_parameters, + STATE(2957), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(1113), 3, + anon_sym_Function, + anon_sym_this, + sym_identifier, + ACTIONS(2968), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1135), 17, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_is, + anon_sym_as, + ACTIONS(1133), 22, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + [13782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 15, + ACTIONS(2945), 6, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_get, + anon_sym_set, + anon_sym_external, + ACTIONS(2974), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -112644,7 +117231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2901), 39, + ACTIONS(2977), 33, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112668,45 +117255,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_if, anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, - anon_sym_get, - anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, - anon_sym_external, anon_sym_this, sym_identifier, - [13934] = 3, + [13846] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2980), 1, + anon_sym_LBRACK, + ACTIONS(2983), 1, + anon_sym_DOT, + ACTIONS(2986), 1, + anon_sym_QMARK_DOT, + STATE(1130), 1, + sym_assignable_selector, + STATE(1401), 1, + sym_unconditional_assignable_selector, + STATE(1169), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(1019), 19, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_async, + ACTIONS(1017), 28, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [13920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 18, + ACTIONS(2989), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - anon_sym_SEMI, - ACTIONS(2905), 36, + ACTIONS(2991), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112721,8 +117364,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, - anon_sym_case, - anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, @@ -112731,22 +117372,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_try, anon_sym_if, - anon_sym_else, anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, + anon_sym_get, + anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, + anon_sym_external, anon_sym_this, sym_identifier, - [13996] = 3, + [13982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 15, + ACTIONS(2993), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -112762,7 +117408,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2909), 39, + ACTIONS(2995), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112802,23 +117448,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14058] = 10, + [14044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 1, + ACTIONS(1375), 18, anon_sym_EQ, - STATE(533), 1, - sym__assignment_operator, - STATE(1188), 1, - sym_assignable_selector, - STATE(1510), 1, - sym_unconditional_assignable_selector, - STATE(2067), 1, - sym__cascade_assignment_section, - STATE(1215), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2414), 12, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1373), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112831,25 +117488,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(637), 17, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, anon_sym_SEMI, - ACTIONS(639), 18, + [14106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 18, + anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -112865,72 +117527,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - [14134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 15, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1377), 36, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_LT, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2913), 39, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, anon_sym_if, - anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_get, - anon_sym_set, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_external, - anon_sym_this, - sym_identifier, - [14196] = 3, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [14168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 15, + ACTIONS(2997), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -112946,7 +117585,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2917), 39, + ACTIONS(2999), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -112986,10 +117625,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14258] = 3, + [14230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 15, + ACTIONS(3001), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113005,7 +117644,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2921), 39, + ACTIONS(3003), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113045,26 +117684,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14320] = 3, + [14292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 15, + ACTIONS(3005), 18, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2925), 39, + anon_sym_SEMI, + ACTIONS(3007), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113079,6 +117721,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, + anon_sym_case, + anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, @@ -113087,27 +117731,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_try, anon_sym_if, + anon_sym_else, anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, - anon_sym_get, - anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, - anon_sym_external, anon_sym_this, sym_identifier, - [14382] = 3, + [14354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1383), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1381), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [14416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 15, + ACTIONS(3009), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113123,7 +117821,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2929), 39, + ACTIONS(3011), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113163,10 +117861,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14444] = 3, + [14478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1387), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1385), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [14540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 15, + ACTIONS(3013), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113182,7 +117939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2933), 39, + ACTIONS(3015), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113222,10 +117979,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14506] = 3, + [14602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1475), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1473), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [14664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 15, + ACTIONS(3017), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113241,7 +118057,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2937), 39, + ACTIONS(3019), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113281,36 +118097,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14568] = 13, + [14726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1080), 1, - anon_sym_DOT, - ACTIONS(2589), 1, - anon_sym_LPAREN, - ACTIONS(2592), 1, - anon_sym_LT, - ACTIONS(2884), 1, + ACTIONS(1483), 18, anon_sym_EQ, - STATE(2453), 1, - sym__type_dot_identifier, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - ACTIONS(2881), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2908), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(1060), 3, - anon_sym_Function, - anon_sym_this, - sym_identifier, - ACTIONS(1075), 17, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -113324,10 +118118,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_is, - anon_sym_as, - ACTIONS(1073), 23, + anon_sym_DOT, + ACTIONS(1481), 36, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -113341,6 +118137,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -113348,12 +118146,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - [14650] = 3, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [14788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 15, + ACTIONS(3021), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113369,7 +118175,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2941), 39, + ACTIONS(3023), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113409,10 +118215,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14712] = 3, + [14850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 15, + ACTIONS(3025), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113428,7 +118234,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2945), 39, + ACTIONS(3027), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113468,10 +118274,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14774] = 3, + [14912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 18, + ACTIONS(1327), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -113490,7 +118296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1174), 36, + ACTIONS(1325), 36, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -113527,10 +118333,312 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_else, anon_sym_SEMI, - [14836] = 3, + [14974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 15, + ACTIONS(1279), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1277), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [15036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1281), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [15098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1285), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [15160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1537), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1535), 36, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_if, + anon_sym_else, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [15222] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2543), 1, + anon_sym_EQ, + STATE(550), 1, + sym__assignment_operator, + STATE(1224), 1, + sym_assignable_selector, + STATE(1533), 1, + sym_unconditional_assignable_selector, + STATE(2099), 1, + sym__cascade_assignment_section, + STATE(1265), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(2545), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(684), 17, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(686), 18, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + [15298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3029), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113546,7 +118654,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2949), 39, + ACTIONS(3031), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_get, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [15360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3033), 15, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3035), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113586,10 +118753,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [14898] = 3, + [15422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 18, + ACTIONS(1291), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -113608,7 +118775,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1352), 36, + ACTIONS(1289), 36, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -113645,10 +118812,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_deferred, anon_sym_SEMI, - [14960] = 3, + [15484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 15, + ACTIONS(3037), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113664,7 +118831,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2953), 39, + ACTIONS(3039), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113704,10 +118871,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [15022] = 3, + [15546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 15, + ACTIONS(3041), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113723,7 +118890,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2957), 39, + ACTIONS(3043), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113763,69 +118930,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [15084] = 3, + [15608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1340), 36, - anon_sym_RBRACE, + ACTIONS(3045), 15, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + anon_sym_LT, sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3047), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, - anon_sym_SEMI, - [15146] = 3, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_get, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [15670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 18, + ACTIONS(1295), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -113844,7 +119011,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1479), 36, + ACTIONS(1293), 36, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -113881,10 +119048,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_deferred, anon_sym_SEMI, - [15208] = 3, + [15732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 15, + ACTIONS(3049), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -113900,7 +119067,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2961), 39, + ACTIONS(3051), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -113940,10 +119107,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [15270] = 3, + [15794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 18, + ACTIONS(1487), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -113962,7 +119129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1491), 36, + ACTIONS(1485), 36, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -113999,75 +119166,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_deferred, anon_sym_SEMI, - [15332] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 1, - anon_sym_LBRACK, - ACTIONS(2966), 1, - anon_sym_DOT, - ACTIONS(2969), 1, - anon_sym_QMARK_DOT, - STATE(1091), 1, - sym_assignable_selector, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1158), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(891), 17, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(889), 30, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [15406] = 3, + [15856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 15, + ACTIONS(3053), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -114083,7 +119185,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2974), 39, + ACTIONS(3055), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -114123,14 +119225,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [15468] = 3, + [15918] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 18, + ACTIONS(1140), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2756), 1, + anon_sym_LT, + ACTIONS(2971), 1, anon_sym_EQ, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, + sym_type_parameters, + ACTIONS(2968), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2957), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(1113), 3, + anon_sym_Function, + anon_sym_this, + sym_identifier, + ACTIONS(1135), 17, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -114144,12 +119268,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1487), 36, - anon_sym_RBRACE, + anon_sym_is, + anon_sym_as, + ACTIONS(1133), 23, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114163,8 +119285,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -114172,20 +119292,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, - anon_sym_SEMI, - [15530] = 3, + [16000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 15, + ACTIONS(3057), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -114201,7 +119313,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2978), 39, + ACTIONS(3059), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -114241,10 +119353,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [15592] = 3, + [16062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 15, + ACTIONS(3061), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -114260,7 +119372,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2982), 39, + ACTIONS(3063), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -114300,10 +119412,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [15654] = 3, + [16124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 15, + ACTIONS(3065), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -114319,7 +119431,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2986), 39, + ACTIONS(3067), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -114359,10 +119471,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [15716] = 3, + [16186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 18, + ACTIONS(1299), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -114381,7 +119493,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1336), 36, + ACTIONS(1297), 36, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -114418,10 +119530,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_deferred, anon_sym_SEMI, - [15778] = 3, + [16248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 18, + ACTIONS(1307), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -114440,7 +119552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1320), 36, + ACTIONS(1305), 36, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -114477,193 +119589,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_deferred, anon_sym_SEMI, - [15840] = 3, + [16310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1408), 36, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, - anon_sym_SEMI, - [15902] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2988), 1, - anon_sym_LBRACK, - ACTIONS(2991), 1, - anon_sym_DOT, - ACTIONS(2994), 1, - anon_sym_QMARK_DOT, - STATE(1088), 1, - sym_assignable_selector, - STATE(1361), 1, - sym_unconditional_assignable_selector, - STATE(1167), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(891), 19, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(889), 28, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [15976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1414), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1412), 36, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, - anon_sym_SEMI, - [16038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 15, + ACTIONS(3069), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -114679,7 +119608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2999), 39, + ACTIONS(3071), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -114719,69 +119648,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [16100] = 3, + [16372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1475), 36, - anon_sym_RBRACE, + ACTIONS(3073), 15, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + anon_sym_LT, sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3075), 39, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, anon_sym_if, - anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, - anon_sym_SEMI, - [16162] = 3, + anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_get, + anon_sym_set, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [16434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 15, + ACTIONS(3077), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -114797,7 +119726,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3003), 39, + ACTIONS(3079), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -114837,29 +119766,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [16224] = 3, + [16496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 18, + ACTIONS(3081), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - anon_sym_SEMI, - ACTIONS(3007), 36, + ACTIONS(3083), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -114874,8 +119800,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, - anon_sym_case, - anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, @@ -114884,22 +119808,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_try, anon_sym_if, - anon_sym_else, anon_sym_for, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, + anon_sym_get, + anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, + anon_sym_external, anon_sym_this, sym_identifier, - [16286] = 3, + [16558] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 15, + ACTIONS(2930), 1, + anon_sym_Function, + STATE(3035), 1, + sym__function_builtin_identifier, + STATE(1149), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1039), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1037), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [16626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3085), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -114915,7 +119906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3011), 39, + ACTIONS(3087), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -114955,10 +119946,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [16348] = 3, + [16688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 15, + ACTIONS(3089), 15, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -114974,7 +119965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3015), 39, + ACTIONS(3091), 39, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -115014,14 +120005,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [16410] = 3, + [16750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 18, + ACTIONS(3093), 1, + anon_sym_LT, + STATE(1289), 1, + sym_type_arguments, + STATE(1302), 1, + sym__type_args, + ACTIONS(1059), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -115036,7 +120032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1416), 36, + ACTIONS(1057), 33, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -115067,27 +120063,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_if, anon_sym_else, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, + anon_sym_Function, anon_sym_SEMI, - [16472] = 6, + [16817] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_Function, - STATE(3071), 1, - sym__function_builtin_identifier, - STATE(1122), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(974), 18, + ACTIONS(1068), 1, + anon_sym_LT, + ACTIONS(3095), 1, + anon_sym_LPAREN, + STATE(1317), 1, + sym_parameter_type_list, + STATE(3455), 1, + sym_type_parameters, + ACTIONS(1059), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -115102,7 +120095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(972), 32, + ACTIONS(1057), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -115120,7 +120113,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115134,17 +120126,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [16540] = 3, + [16886] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 15, + ACTIONS(1140), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2756), 1, + anon_sym_LT, + ACTIONS(2968), 1, + anon_sym_RPAREN, + ACTIONS(3097), 1, + anon_sym_COMMA, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, + sym_type_parameters, + STATE(2957), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(1113), 3, + anon_sym_Function, + anon_sym_this, + sym_identifier, + ACTIONS(1135), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_is, + anon_sym_as, + ACTIONS(1133), 22, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + [16967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 17, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, sym_decimal_floating_point_literal, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, @@ -115154,7 +120216,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3019), 39, + anon_sym_SEMI, + ACTIONS(3101), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -115169,6 +120232,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_await, anon_sym_assert, anon_sym_switch, + anon_sym_case, + anon_sym_default, anon_sym_do, anon_sym_while, anon_sym_break, @@ -115177,106 +120242,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_try, anon_sym_if, + anon_sym_else, anon_sym_for, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, anon_sym_super, anon_sym_void, anon_sym_var, anon_sym_covariant, anon_sym_Function, - anon_sym_get, - anon_sym_set, anon_sym_new, anon_sym_const, anon_sym_final, - anon_sym_external, anon_sym_this, sym_identifier, - [16602] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2443), 1, - anon_sym_EQ, - STATE(381), 1, - sym__assignment_operator, - STATE(1179), 1, - sym_assignable_selector, - STATE(1506), 1, - sym_unconditional_assignable_selector, - STATE(2149), 1, - sym__cascade_assignment_section, - STATE(1197), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(2445), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(639), 16, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(637), 19, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [16678] = 9, + [17028] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(818), 1, + ACTIONS(1014), 1, anon_sym_LT, - ACTIONS(3021), 1, + ACTIONS(3103), 1, anon_sym_LPAREN, - STATE(1504), 1, + STATE(1546), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3388), 1, + STATE(3507), 1, sym_type_arguments, - STATE(1187), 2, + STATE(1219), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(813), 16, + ACTIONS(1009), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -115293,7 +120287,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(811), 30, + ACTIONS(1007), 30, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -115324,18 +120318,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [16751] = 7, + [17101] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(1068), 1, anon_sym_LT, - ACTIONS(3024), 1, + ACTIONS(3106), 1, anon_sym_LPAREN, - STATE(1254), 1, + STATE(1303), 1, sym_parameter_type_list, - STATE(3486), 1, + STATE(3512), 1, sym_type_parameters, - ACTIONS(985), 17, + ACTIONS(1059), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -115352,13 +120346,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(983), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1057), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115371,7 +120365,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -115380,24 +120373,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [16820] = 7, + [17170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(3108), 1, anon_sym_LT, - ACTIONS(3026), 1, - anon_sym_LPAREN, - STATE(1236), 1, - sym_parameter_type_list, - STATE(3465), 1, - sym_type_parameters, - ACTIONS(985), 19, + STATE(1293), 1, + sym__type_args, + STATE(1307), 1, + sym_type_arguments, + ACTIONS(1059), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -115417,7 +120409,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(983), 30, + ACTIONS(1057), 31, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -115433,6 +120425,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -115448,23 +120441,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [16889] = 9, + [17237] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(854), 1, + ACTIONS(988), 1, anon_sym_LT, - ACTIONS(3028), 1, + ACTIONS(3110), 1, anon_sym_LPAREN, - STATE(1487), 1, + STATE(1546), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3445), 1, + STATE(3507), 1, sym_type_arguments, - STATE(1186), 2, + STATE(1225), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(849), 18, + ACTIONS(983), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -115480,13 +120473,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(847), 28, - anon_sym_LBRACE, + ACTIONS(981), 30, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115499,6 +120492,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -115506,29 +120500,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [16962] = 9, + [17310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1014), 1, anon_sym_LT, - ACTIONS(3031), 1, + ACTIONS(3113), 1, anon_sym_LPAREN, - STATE(1504), 1, + STATE(1531), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3388), 1, + STATE(3510), 1, sym_type_arguments, - STATE(1183), 2, + STATE(1223), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(839), 16, + ACTIONS(1009), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -115544,13 +120537,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_as, anon_sym_DOT, - ACTIONS(837), 30, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1007), 28, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115563,7 +120556,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -115571,21 +120563,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [17035] = 6, + [17383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(988), 1, anon_sym_LT, - STATE(1234), 1, - sym_type_arguments, - STATE(1250), 1, + ACTIONS(3116), 1, + anon_sym_LPAREN, + STATE(1531), 1, + sym_arguments, + STATE(2492), 1, sym__type_args, - ACTIONS(985), 19, + STATE(3510), 1, + sym_type_arguments, + STATE(1226), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(983), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -115601,11 +120601,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(983), 31, + ACTIONS(981), 28, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -115621,32 +120620,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [17102] = 6, + [17456] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 1, + ACTIONS(978), 1, anon_sym_LT, - STATE(1262), 1, + ACTIONS(3119), 1, + anon_sym_LPAREN, + STATE(1546), 1, + sym_arguments, + STATE(2492), 1, sym__type_args, - STATE(1280), 1, + STATE(3507), 1, sym_type_arguments, - ACTIONS(985), 17, + STATE(1219), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(973), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -115662,9 +120665,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(983), 33, + ACTIONS(971), 30, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -115682,7 +120684,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115690,31 +120691,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [17169] = 9, + [17529] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(978), 1, anon_sym_LT, - ACTIONS(3038), 1, + ACTIONS(3122), 1, anon_sym_LPAREN, - STATE(1487), 1, + STATE(1531), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3445), 1, + STATE(3510), 1, sym_type_arguments, - STATE(1186), 2, + STATE(1223), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(839), 18, + ACTIONS(973), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -115725,77 +120724,242 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(837), 28, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [17242] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(854), 1, - anon_sym_LT, - ACTIONS(3041), 1, - anon_sym_LPAREN, - STATE(1504), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3388), 1, - sym_type_arguments, - STATE(1183), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(849), 16, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(971), 28, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [17602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3125), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3127), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [17662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3129), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3131), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [17722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3133), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3135), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [17782] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(653), 1, + sym_shift_operator, + STATE(1230), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1063), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + ACTIONS(598), 15, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(847), 30, + ACTIONS(596), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -115813,6 +120977,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115820,148 +120985,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [17315] = 9, + [17848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(818), 1, - anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_LPAREN, - STATE(1487), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3445), 1, - sym_type_arguments, - STATE(1182), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(813), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(811), 28, + ACTIONS(2506), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [17388] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 1, - anon_sym_DOT, - ACTIONS(2589), 1, anon_sym_LPAREN, - ACTIONS(2592), 1, anon_sym_LT, - ACTIONS(2881), 1, - anon_sym_RPAREN, - ACTIONS(3047), 1, - anon_sym_COMMA, - STATE(2453), 1, - sym__type_dot_identifier, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - STATE(2908), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(1060), 3, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2508), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, anon_sym_this, sym_identifier, - ACTIONS(1075), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_is, - anon_sym_as, - ACTIONS(1073), 22, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - [17469] = 3, + [17908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 17, + ACTIONS(3137), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -115978,8 +121069,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - anon_sym_SEMI, - ACTIONS(3051), 36, + ACTIONS(3139), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116016,69 +121106,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [17530] = 5, + [17968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_DOT_DOT, - STATE(1191), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(1018), 20, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, + ACTIONS(3141), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + sym_increment_operator, anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1016), 29, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3143), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [18028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3145), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + anon_sym_LT, sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [17594] = 3, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3147), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [18088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 16, + ACTIONS(3149), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116095,7 +121240,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3058), 36, + ACTIONS(3151), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116132,10 +121277,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [17654] = 3, + [18148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3060), 16, + ACTIONS(3153), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116152,7 +121297,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3062), 36, + ACTIONS(3155), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116189,14 +121334,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [17714] = 5, + [18208] = 6, ACTIONS(3), 1, sym_comment, - STATE(572), 1, - sym_shift_operator, - STATE(1230), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 18, + STATE(679), 1, + sym_additive_operator, + STATE(1237), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(594), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -116208,14 +121356,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(989), 32, + ACTIONS(592), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -116248,15 +121394,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [17778] = 5, + [18274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - anon_sym_DOT_DOT, - STATE(1191), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(998), 20, + ACTIONS(1054), 1, + anon_sym_TILDE_SLASH, + STATE(686), 1, + sym_multiplicative_operator, + STATE(1238), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1051), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(590), 15, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -116270,17 +121421,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(996), 29, - anon_sym_LBRACE, + ACTIONS(588), 31, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116294,27 +121442,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [17842] = 5, + [18342] = 4, ACTIONS(3), 1, sym_comment, - STATE(571), 1, - sym_additive_operator, - STATE(1232), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 18, + STATE(1298), 1, + sym__type_dot_identifier, + ACTIONS(1113), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -116332,13 +121478,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1003), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1111), 31, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116352,7 +121498,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -116361,28 +121506,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [17906] = 9, + [18404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, - anon_sym_LBRACK, - ACTIONS(3070), 1, - anon_sym_DOT, - ACTIONS(3073), 1, - anon_sym_QMARK_DOT, - STATE(1179), 1, - sym_assignable_selector, - STATE(1506), 1, - sym_unconditional_assignable_selector, - STATE(1197), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(891), 16, + STATE(1304), 1, + sym__type_dot_identifier, + ACTIONS(1113), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -116399,8 +121535,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(889), 29, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1111), 33, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -116424,15 +121563,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_SEMI, - [17978] = 3, + anon_sym_Function, + anon_sym_SEMI, + [18466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3159), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [18526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3161), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3163), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [18586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 16, + ACTIONS(3165), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116449,7 +121705,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3078), 36, + ACTIONS(3167), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116486,69 +121742,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18038] = 5, + [18646] = 3, ACTIONS(3), 1, sym_comment, - STATE(686), 1, - sym_multiplicative_operator, - STATE(1225), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1023), 32, + ACTIONS(3169), 16, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + anon_sym_LT, sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3171), 36, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, anon_sym_else, - anon_sym_SEMI, - [18102] = 3, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [18706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 16, + ACTIONS(3173), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116565,7 +121819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3082), 36, + ACTIONS(3175), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116602,10 +121856,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18162] = 3, + [18766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 16, + ACTIONS(3177), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116622,7 +121876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3086), 36, + ACTIONS(3179), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116659,15 +121913,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18222] = 5, + [18826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(3181), 1, anon_sym_DOT_DOT, - STATE(1212), 2, + STATE(1247), 2, sym_cascade_section, aux_sym__expression_repeat1, - ACTIONS(998), 18, + ACTIONS(1079), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -116686,7 +121940,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(996), 31, + ACTIONS(1077), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -116718,10 +121972,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_else, anon_sym_SEMI, - [18286] = 3, + [18890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 16, + ACTIONS(3184), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116738,7 +121992,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3093), 36, + ACTIONS(3186), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116775,10 +122029,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18346] = 3, + [18950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 16, + ACTIONS(3188), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116795,7 +122049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3097), 36, + ACTIONS(3190), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116832,10 +122086,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18406] = 3, + [19010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 16, + ACTIONS(3192), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116852,7 +122106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3101), 36, + ACTIONS(3194), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116889,10 +122143,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18466] = 3, + [19070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 16, + ACTIONS(3196), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116909,7 +122163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3105), 36, + ACTIONS(3198), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -116946,10 +122200,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18526] = 3, + [19130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 16, + ACTIONS(3200), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -116966,7 +122220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3109), 36, + ACTIONS(3202), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -117003,77 +122257,372 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18586] = 3, + [19190] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3204), 1, anon_sym_LBRACK, + ACTIONS(3207), 1, + anon_sym_DOT, + ACTIONS(3210), 1, + anon_sym_QMARK_DOT, + STATE(1222), 1, + sym_assignable_selector, + STATE(1552), 1, + sym_unconditional_assignable_selector, + STATE(1253), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(1019), 16, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1017), 29, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [19262] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(686), 1, + sym_multiplicative_operator, + STATE(1238), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1086), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1084), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [19326] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(664), 1, + sym_shift_operator, + STATE(1268), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 20, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3113), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1091), 30, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [19390] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(679), 1, + sym_additive_operator, + STATE(1237), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1047), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [18646] = 7, + anon_sym_SEMI, + [19454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, + STATE(653), 1, + sym_shift_operator, + STATE(1230), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1091), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1209), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1010), 3, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [19518] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(666), 1, + sym_additive_operator, + STATE(1266), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 20, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(575), 17, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1047), 30, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [19582] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(602), 1, + sym_multiplicative_operator, + STATE(1261), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1086), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117087,11 +122636,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(573), 29, + ACTIONS(1084), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -117113,6 +122665,7 @@ static uint16_t ts_small_parse_table[] = { sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, @@ -117121,17 +122674,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [18714] = 6, + [19646] = 5, ACTIONS(3), 1, sym_comment, - STATE(575), 1, - sym_additive_operator, - STATE(1210), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(610), 18, + ACTIONS(3213), 1, + anon_sym_DOT_DOT, + STATE(1247), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1072), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117143,17 +122694,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(608), 30, - anon_sym_LBRACE, + ACTIONS(1070), 31, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117167,6 +122720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -117175,24 +122729,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [18780] = 6, + [19710] = 7, ACTIONS(3), 1, sym_comment, - STATE(574), 1, - sym_shift_operator, - STATE(1211), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(1007), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - ACTIONS(598), 17, + ACTIONS(1054), 1, + anon_sym_TILDE_SLASH, + STATE(602), 1, + sym_multiplicative_operator, + STATE(1261), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1051), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(590), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117201,16 +122755,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(596), 30, + ACTIONS(588), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -117232,7 +122786,6 @@ static uint16_t ts_small_parse_table[] = { sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, @@ -117241,15 +122794,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [18846] = 5, + [19778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3216), 1, anon_sym_DOT_DOT, - STATE(1212), 2, + STATE(1262), 2, sym_cascade_section, aux_sym__expression_repeat1, - ACTIONS(1018), 18, + ACTIONS(1079), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117267,13 +122820,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1016), 31, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1077), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117287,7 +122840,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -117296,14 +122848,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [18910] = 3, + [19842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 16, + ACTIONS(3219), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -117320,7 +122873,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3120), 36, + ACTIONS(3221), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -117357,10 +122910,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [18970] = 3, + [19902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 16, + ACTIONS(3223), 16, ts_builtin_sym_end, anon_sym_POUND, sym_octal_integer_literal, @@ -117377,7 +122930,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3124), 36, + ACTIONS(3225), 36, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -117414,23 +122967,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [19030] = 9, + [19962] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, + ACTIONS(3227), 1, anon_sym_LBRACK, - ACTIONS(3129), 1, + ACTIONS(3230), 1, anon_sym_DOT, - ACTIONS(3132), 1, + ACTIONS(3233), 1, anon_sym_QMARK_DOT, - STATE(1188), 1, + STATE(1224), 1, sym_assignable_selector, - STATE(1510), 1, + STATE(1533), 1, sym_unconditional_assignable_selector, - STATE(1215), 2, + STATE(1265), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - ACTIONS(891), 18, + ACTIONS(1019), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117449,7 +123002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_as, anon_sym_async, - ACTIONS(889), 27, + ACTIONS(1017), 27, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -117477,69 +123030,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [19102] = 3, + [20034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, + STATE(666), 1, + sym_additive_operator, + STATE(1266), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(594), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(592), 30, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3137), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [19162] = 4, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [20100] = 5, ACTIONS(3), 1, sym_comment, - STATE(1270), 1, - sym__type_dot_identifier, - ACTIONS(1060), 20, + ACTIONS(3236), 1, + anon_sym_DOT_DOT, + STATE(1262), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1072), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117560,7 +123119,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1058), 31, + ACTIONS(1070), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -117586,75 +123145,76 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [19224] = 3, + [20164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, + STATE(664), 1, + sym_shift_operator, + STATE(1268), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1063), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + ACTIONS(598), 17, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(596), 30, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3141), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [19284] = 4, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [20230] = 4, ACTIONS(3), 1, sym_comment, - STATE(1245), 1, - sym__type_dot_identifier, - ACTIONS(1060), 18, + STATE(1280), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1097), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117672,13 +123232,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1058), 33, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1095), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117692,7 +123252,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -117701,20 +123260,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [19346] = 5, + [20291] = 4, ACTIONS(3), 1, sym_comment, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1209), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 20, + STATE(1274), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117735,7 +123292,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1023), 30, + ACTIONS(1125), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -117766,18 +123323,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [19410] = 5, + [20352] = 6, ACTIONS(3), 1, sym_comment, - STATE(575), 1, - sym_additive_operator, - STATE(1210), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 20, + ACTIONS(1137), 1, + anon_sym_LT, + ACTIONS(1140), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1135), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -117791,13 +123349,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1003), 30, - anon_sym_LBRACE, + ACTIONS(1133), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117811,6 +123368,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -117819,20 +123377,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [19474] = 5, + [20417] = 3, ACTIONS(3), 1, sym_comment, - STATE(574), 1, - sym_shift_operator, - STATE(1211), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 20, + ACTIONS(1423), 22, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -117850,13 +123403,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(989), 30, - anon_sym_LBRACE, + anon_sym_else, + sym_identifier, + ACTIONS(1421), 29, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117870,6 +123427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -117877,145 +123435,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, anon_sym_SEMI, - [19538] = 3, + [20476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2458), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, + ACTIONS(1413), 1, sym_identifier, - [19598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 3, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3145), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [19658] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1013), 1, - anon_sym_TILDE_SLASH, - STATE(686), 1, - sym_multiplicative_operator, - STATE(1225), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1010), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(575), 15, + anon_sym_QMARK_DOT, + ACTIONS(1257), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -118025,14 +123463,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(573), 31, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_is, + anon_sym_as, + anon_sym_async, + ACTIONS(1255), 26, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118045,281 +123485,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [19726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3147), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3149), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [19786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3151), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3153), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [19846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3157), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [19906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3159), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3161), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [19966] = 6, + [20541] = 5, ACTIONS(3), 1, sym_comment, - STATE(572), 1, - sym_shift_operator, - STATE(1230), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(1007), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - ACTIONS(598), 15, - anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_QMARK_QMARK, + STATE(1274), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 19, + anon_sym_EQ, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(596), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1158), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118333,7 +123541,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -118342,79 +123549,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [20032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 16, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3165), 36, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_else, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [20092] = 6, + [20604] = 5, ACTIONS(3), 1, sym_comment, - STATE(571), 1, - sym_additive_operator, - STATE(1232), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(610), 16, + ACTIONS(3242), 1, + anon_sym_PIPE_PIPE, + STATE(1275), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -118426,17 +123574,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(608), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(572), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118450,8 +123600,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -118459,24 +123607,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [20158] = 5, + [20667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_PIPE, - STATE(1233), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 17, + ACTIONS(3245), 1, + anon_sym_Function, + ACTIONS(1226), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -118489,7 +123637,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(569), 32, + ACTIONS(1224), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -118522,10 +123670,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [20221] = 3, + [20728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 20, + ACTIONS(3247), 1, + anon_sym_AMP_AMP, + STATE(1277), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -118546,7 +123698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1344), 31, + ACTIONS(576), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -118564,7 +123716,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -118576,18 +123727,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [20280] = 3, + [20791] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 20, + ACTIONS(3250), 1, + anon_sym_PIPE, + STATE(1278), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(610), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -118602,7 +123755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1134), 31, + ACTIONS(608), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -118632,19 +123785,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [20339] = 3, + [20854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 20, + ACTIONS(3253), 1, + anon_sym_CARET, + STATE(1279), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(606), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118658,7 +123813,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1162), 31, + ACTIONS(604), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -118688,14 +123843,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [20398] = 4, + [20917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_Function, - ACTIONS(1442), 20, + ACTIONS(3256), 1, + anon_sym_AMP, + STATE(1280), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(602), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -118703,7 +123859,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -118716,7 +123871,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1440), 30, + ACTIONS(600), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -118747,14 +123902,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [20459] = 5, + [20980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3172), 1, - anon_sym_PIPE_PIPE, - STATE(1238), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 20, + ACTIONS(1303), 22, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -118772,10 +123923,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(588), 29, + sym_identifier, + ACTIONS(1301), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -118792,27 +123945,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [20522] = 5, + [21039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 1, - anon_sym_AMP_AMP, - STATE(1239), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 20, + ACTIONS(1311), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -118830,13 +123979,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(584), 29, - anon_sym_LBRACE, + ACTIONS(1309), 33, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118850,32 +123999,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [20585] = 5, + [21098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 1, - anon_sym_PIPE, - STATE(1240), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 19, + STATE(1332), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1123), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -118887,13 +124037,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(569), 30, - anon_sym_LBRACE, + ACTIONS(1121), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118907,6 +124057,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -118915,16 +124066,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [20648] = 3, + [21159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 18, + STATE(1331), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -118943,7 +124095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1134), 33, + ACTIONS(1117), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -118975,16 +124127,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [20707] = 5, + [21220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 1, - anon_sym_AMP, - STATE(1242), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 17, + STATE(1328), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1105), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -118992,6 +124141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -119002,7 +124152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(565), 32, + ACTIONS(1103), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119035,20 +124185,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [20770] = 5, + [21281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3184), 1, - anon_sym_CARET, - STATE(1243), 1, + STATE(1326), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(606), 17, + ACTIONS(1145), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119060,7 +124209,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(604), 32, + ACTIONS(1143), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119093,20 +124242,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [20833] = 5, + [21342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, - anon_sym_CARET, - STATE(1244), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(606), 19, + STATE(1315), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1097), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119117,13 +124265,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(604), 30, - anon_sym_LBRACE, + ACTIONS(1095), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119137,6 +124285,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -119145,16 +124294,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [20896] = 3, + [21403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 18, + ACTIONS(1351), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119173,7 +124321,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1146), 33, + ACTIONS(1349), 33, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119207,10 +124355,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [20955] = 3, + [21462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 20, + ACTIONS(1355), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119228,13 +124376,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1364), 31, - anon_sym_LBRACE, + ACTIONS(1353), 33, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119248,6 +124396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -119256,21 +124405,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [21014] = 5, + [21521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3190), 1, - anon_sym_AMP_AMP, - STATE(1247), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 18, + ACTIONS(1553), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119289,7 +124433,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(584), 31, + ACTIONS(1551), 33, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119310,6 +124454,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -119320,15 +124465,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [21077] = 5, + [21580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, - anon_sym_PIPE_PIPE, - STATE(1248), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 18, + ACTIONS(1267), 22, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119346,13 +124488,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(588), 31, - anon_sym_RBRACE, + anon_sym_async, + sym_identifier, + ACTIONS(1265), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119366,28 +124510,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [21140] = 5, + [21639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 1, - anon_sym_QMARK_QMARK, - STATE(1249), 1, + STATE(1310), 1, aux_sym__if_null_expression, - ACTIONS(1107), 17, + ACTIONS(1127), 18, anon_sym_EQ, + anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -119404,7 +124547,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1105), 32, + ACTIONS(1125), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119437,10 +124580,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [21203] = 3, + [21700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 20, + ACTIONS(1455), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119461,7 +124604,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1120), 31, + ACTIONS(1453), 31, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119493,12 +124636,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [21262] = 4, + [21759] = 4, ACTIONS(3), 1, sym_comment, - STATE(1253), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 20, + STATE(1279), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(1145), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119519,7 +124662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1062), 30, + ACTIONS(1143), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119550,73 +124693,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [21323] = 6, + [21820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, - sym_identifier, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 19, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_is, - anon_sym_as, - anon_sym_async, - ACTIONS(1182), 26, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [21388] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - anon_sym_AMP, - STATE(1253), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 19, + ACTIONS(3245), 1, + anon_sym_Function, + ACTIONS(1226), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119624,6 +124706,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -119636,7 +124719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(565), 30, + ACTIONS(1224), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119667,10 +124750,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [21451] = 3, + [21881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 18, + ACTIONS(1311), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119688,13 +124771,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1162), 33, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1309), 31, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119708,7 +124791,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -119717,18 +124799,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [21510] = 4, + [21940] = 4, ACTIONS(3), 1, sym_comment, - STATE(1248), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 18, + STATE(1278), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1105), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119746,68 +124829,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1087), 32, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [21571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3202), 1, - anon_sym_QMARK_QMARK, - STATE(1256), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 19, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1105), 30, + ACTIONS(1103), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119838,10 +124863,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [21634] = 3, + [22001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 20, + ACTIONS(1411), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -119862,7 +124887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1324), 31, + ACTIONS(1409), 31, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119894,19 +124919,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [21693] = 6, + [22060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_LT, - ACTIONS(1080), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1075), 18, + STATE(1277), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -119921,8 +124943,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(1073), 30, + ACTIONS(1117), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -119953,69 +124976,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [21758] = 6, + [22121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, - sym_identifier, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 19, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_is, - anon_sym_as, - anon_sym_else, - ACTIONS(1182), 26, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_DOT_DOT, - anon_sym_SEMI, - [21823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 22, + STATE(1275), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1123), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120033,17 +124999,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1284), 29, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1121), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120057,7 +125019,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -120065,13 +125026,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [21882] = 3, + [22182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 20, + ACTIONS(1509), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120089,13 +125054,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1138), 31, - anon_sym_LBRACE, + ACTIONS(1507), 33, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120109,6 +125074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -120117,17 +125083,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [21941] = 3, + [22241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 18, + ACTIONS(1455), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120146,7 +125111,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1120), 33, + ACTIONS(1453), 33, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -120180,93 +125145,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [22000] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3205), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, - anon_sym_QMARK, - ACTIONS(3209), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, - anon_sym_AMP_AMP, - ACTIONS(3213), 1, - sym_equality_operator, - ACTIONS(3215), 1, - anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_CARET, - ACTIONS(3219), 1, - anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_DOT_DOT, - STATE(657), 1, - sym_multiplicative_operator, - STATE(668), 1, - sym_additive_operator, - STATE(671), 1, - sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, - aux_sym_additive_expression_repeat1, - STATE(1665), 1, - aux_sym__if_null_expression, - STATE(1669), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - STATE(1640), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(536), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(534), 13, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [22113] = 3, + [22300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 22, + ACTIONS(1557), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120284,17 +125166,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1280), 29, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1555), 31, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120308,7 +125186,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -120316,15 +125193,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [22172] = 4, + [22359] = 3, ACTIONS(3), 1, sym_comment, - STATE(1249), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 18, + ACTIONS(1411), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120343,7 +125223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1095), 32, + ACTIONS(1409), 33, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -120375,15 +125255,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [22233] = 3, + [22418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 22, + ACTIONS(1413), 1, + sym_identifier, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -120399,12 +125288,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_is, anon_sym_as, - anon_sym_DOT, anon_sym_else, - sym_identifier, - ACTIONS(1300), 29, + ACTIONS(1255), 26, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -120420,7 +125306,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120429,15 +125314,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_SEMI, - [22292] = 4, + [22483] = 3, ACTIONS(3), 1, sym_comment, - STATE(1244), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 20, + ACTIONS(1553), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120458,7 +125340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1066), 30, + ACTIONS(1551), 31, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -120488,13 +125370,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [22353] = 4, + [22542] = 3, ACTIONS(3), 1, sym_comment, - STATE(1256), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 20, + ACTIONS(1355), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120515,7 +125396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1095), 30, + ACTIONS(1353), 31, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -120545,13 +125426,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [22414] = 4, + [22601] = 3, ACTIONS(3), 1, sym_comment, - STATE(1238), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 20, + ACTIONS(1351), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120572,7 +125452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1087), 30, + ACTIONS(1349), 31, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -120602,69 +125482,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [22475] = 3, + [22660] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 20, - anon_sym_EQ, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, + ACTIONS(3261), 1, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_AMP_AMP, + ACTIONS(3267), 1, + sym_equality_operator, + ACTIONS(3269), 1, anon_sym_PIPE, + ACTIONS(3271), 1, anon_sym_CARET, + ACTIONS(3273), 1, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, + ACTIONS(3275), 1, + anon_sym_DOT_DOT, + STATE(592), 1, + sym_shift_operator, + STATE(663), 1, + sym_multiplicative_operator, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1680), 1, + aux_sym_additive_expression_repeat1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, + aux_sym__if_null_expression, + STATE(1726), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1732), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1735), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + STATE(1656), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(560), 3, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(536), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1146), 31, + ACTIONS(534), 13, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [22534] = 3, + [22773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 18, - anon_sym_EQ, + ACTIONS(3278), 1, anon_sym_QMARK_QMARK, + STATE(1310), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 17, + anon_sym_EQ, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -120681,7 +125592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1324), 33, + ACTIONS(1158), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -120713,14 +125624,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [22593] = 4, + [22836] = 3, ACTIONS(3), 1, sym_comment, - STATE(1239), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 20, + ACTIONS(1495), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -120738,13 +125646,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1083), 30, - anon_sym_LBRACE, + ACTIONS(1493), 33, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120758,6 +125666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -120766,18 +125675,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [22654] = 4, + [22895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(3285), 1, anon_sym_else, - ACTIONS(3226), 15, + ACTIONS(3283), 15, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, @@ -120793,7 +125702,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_TILDE, anon_sym_AT, - ACTIONS(3224), 35, + ACTIONS(3281), 35, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -120829,126 +125738,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [22715] = 3, + [22956] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 22, - anon_sym_EQ, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, + ACTIONS(3289), 1, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3291), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3293), 1, + anon_sym_AMP_AMP, + ACTIONS(3295), 1, + sym_equality_operator, + ACTIONS(3297), 1, anon_sym_PIPE, + ACTIONS(3299), 1, anon_sym_CARET, + ACTIONS(3301), 1, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, + ACTIONS(3303), 1, + anon_sym_DOT_DOT, + STATE(591), 1, + sym_multiplicative_operator, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, + aux_sym_additive_expression_repeat1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1689), 1, + aux_sym__if_null_expression, + STATE(1690), 1, + aux_sym_logical_or_expression_repeat1, + STATE(1691), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1693), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1695), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1696), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + STATE(1679), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(560), 3, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(536), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_BANG, - anon_sym_is, - anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1260), 29, + ACTIONS(534), 15, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_SEMI, - [22774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 22, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, anon_sym_is, anon_sym_as, - anon_sym_DOT, - anon_sym_async, - sym_identifier, - ACTIONS(1284), 29, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [22833] = 3, + [23069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 20, + ACTIONS(1137), 1, + anon_sym_LT, + ACTIONS(1140), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1135), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -120963,9 +125848,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_as, - anon_sym_DOT, anon_sym_async, - ACTIONS(1348), 31, + ACTIONS(1133), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -120995,12 +125879,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [22892] = 3, + [23134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 22, + ACTIONS(3306), 1, + anon_sym_AMP, + STATE(1315), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(602), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121008,7 +125895,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -121018,15 +125904,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_is, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - sym_identifier, - ACTIONS(1280), 29, - anon_sym_LBRACE, + ACTIONS(600), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121040,6 +125924,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121047,99 +125932,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [22951] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3230), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, - anon_sym_QMARK, - ACTIONS(3234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - sym_equality_operator, - ACTIONS(3240), 1, - anon_sym_PIPE, - ACTIONS(3242), 1, - anon_sym_CARET, - ACTIONS(3244), 1, - anon_sym_AMP, - ACTIONS(3246), 1, - anon_sym_DOT_DOT, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, - sym_multiplicative_operator, - STATE(1616), 1, - aux_sym_additive_expression_repeat1, - STATE(1631), 1, - aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, - aux_sym__if_null_expression, - STATE(1654), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - STATE(1621), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(536), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(534), 15, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [23064] = 3, + [23197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 22, + ACTIONS(1467), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121157,15 +125959,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_is, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - sym_identifier, - ACTIONS(1300), 29, - anon_sym_LBRACE, + ACTIONS(1465), 33, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121179,6 +125979,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121186,16 +125987,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [23123] = 3, + [23256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 18, + ACTIONS(1557), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121214,7 +126016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1344), 33, + ACTIONS(1555), 33, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -121248,12 +126050,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [23182] = 4, + [23315] = 3, ACTIONS(3), 1, sym_comment, - STATE(1247), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 18, + ACTIONS(1423), 22, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121271,13 +126071,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(1083), 32, - anon_sym_RBRACE, + anon_sym_async, + sym_identifier, + ACTIONS(1421), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121291,7 +126093,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121299,16 +126100,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [23243] = 3, + [23374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 20, + ACTIONS(1343), 22, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121326,13 +126127,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1150), 31, - anon_sym_LBRACE, + anon_sym_else, + sym_identifier, + ACTIONS(1341), 29, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121346,6 +126151,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121353,18 +126159,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [23302] = 3, + [23433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 18, + ACTIONS(1495), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121382,13 +126183,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1348), 33, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1493), 31, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121402,7 +126203,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121411,16 +126211,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [23361] = 3, + [23492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 22, + ACTIONS(1303), 22, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121441,12 +126242,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_async, + anon_sym_else, sym_identifier, - ACTIONS(1260), 29, - anon_sym_LBRACE, + ACTIONS(1301), 29, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121460,6 +126263,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121469,14 +126273,11 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, anon_sym_SEMI, - [23420] = 3, + [23551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 18, + ACTIONS(1509), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121494,13 +126295,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1138), 33, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1507), 31, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121514,7 +126315,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121523,16 +126323,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [23479] = 3, + [23610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 18, + ACTIONS(1479), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121551,7 +126352,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1150), 33, + ACTIONS(1477), 33, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -121585,10 +126386,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [23538] = 3, + [23669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 20, + ACTIONS(1463), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121606,13 +126407,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1154), 31, - anon_sym_LBRACE, + ACTIONS(1461), 33, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121626,6 +126427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121634,17 +126436,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [23597] = 3, + [23728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 20, + ACTIONS(1459), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121662,13 +126463,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1158), 31, - anon_sym_LBRACE, + ACTIONS(1457), 33, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121682,6 +126483,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121690,26 +126492,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [23656] = 4, + [23787] = 5, ACTIONS(3), 1, sym_comment, - STATE(1240), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 20, + ACTIONS(3309), 1, + anon_sym_CARET, + STATE(1326), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(606), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121720,13 +126522,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1091), 30, - anon_sym_LBRACE, + ACTIONS(604), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121740,6 +126542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121748,16 +126551,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [23717] = 3, + [23850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 18, + ACTIONS(1459), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121775,13 +126577,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1154), 33, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1457), 31, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121795,7 +126597,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121804,24 +126605,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [23776] = 4, + [23909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_Function, - ACTIONS(1442), 18, + ACTIONS(3312), 1, + anon_sym_PIPE, + STATE(1328), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(610), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -121834,7 +126637,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1440), 32, + ACTIONS(608), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -121867,10 +126670,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [23837] = 3, + [23972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 20, + ACTIONS(1463), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121891,7 +126694,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1304), 31, + ACTIONS(1461), 31, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -121923,10 +126726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [23896] = 3, + [24031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 18, + ACTIONS(1467), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -121944,13 +126747,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1364), 33, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1465), 31, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121964,7 +126767,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -121973,16 +126775,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [23955] = 3, + [24090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 18, + ACTIONS(3315), 1, + anon_sym_AMP_AMP, + STATE(1331), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122001,7 +126808,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1304), 33, + ACTIONS(576), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122022,7 +126829,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -122033,21 +126839,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [24014] = 6, + [24153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_LT, - ACTIONS(1080), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1075), 16, + ACTIONS(3318), 1, + anon_sym_PIPE_PIPE, + STATE(1332), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -122061,7 +126865,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(1073), 32, + anon_sym_DOT, + ACTIONS(572), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122081,7 +126886,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -122094,12 +126898,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [24079] = 4, + [24216] = 3, ACTIONS(3), 1, sym_comment, - STATE(1242), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 18, + ACTIONS(1343), 22, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122117,13 +126919,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(1062), 32, - anon_sym_RBRACE, + anon_sym_async, + sym_identifier, + ACTIONS(1341), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122137,7 +126941,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -122145,18 +126948,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [24140] = 4, + [24275] = 3, ACTIONS(3), 1, sym_comment, - STATE(1243), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 18, + ACTIONS(1479), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122174,13 +126975,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1066), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1477), 31, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122194,7 +126995,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -122203,17 +127003,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [24201] = 4, + [24334] = 3, ACTIONS(3), 1, sym_comment, - STATE(1233), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 18, + ACTIONS(1267), 22, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122231,8 +127031,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(1091), 32, + anon_sym_else, + sym_identifier, + ACTIONS(1265), 29, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122259,16 +127063,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [24262] = 3, + [24393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 18, + ACTIONS(1347), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122286,13 +127087,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1158), 33, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1345), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122306,7 +127107,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -122315,16 +127115,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [24321] = 3, + [24451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 18, + ACTIONS(1439), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122342,13 +127142,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1400), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1437), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122362,7 +127162,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -122371,15 +127170,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [24379] = 3, + [24509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 18, + ACTIONS(1383), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122397,13 +127197,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1388), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1381), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122417,7 +127217,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -122426,15 +127225,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [24437] = 3, + [24567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 18, + ACTIONS(1589), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122452,13 +127252,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1244), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1587), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122472,7 +127272,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -122481,15 +127280,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [24495] = 3, + [24625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 20, + ACTIONS(1537), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122510,7 +127310,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1428), 30, + ACTIONS(1535), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122541,10 +127341,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [24553] = 3, + [24683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 18, + ACTIONS(1585), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122563,7 +127363,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1471), 32, + ACTIONS(1583), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122596,10 +127396,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [24611] = 3, + [24741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 20, + ACTIONS(1541), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122620,7 +127420,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1404), 30, + ACTIONS(1539), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122651,10 +127451,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [24669] = 3, + [24799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 20, + ACTIONS(1451), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122675,7 +127475,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1447), 30, + ACTIONS(1449), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122706,10 +127506,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [24727] = 3, + [24857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 20, + ACTIONS(1573), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122730,7 +127530,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1451), 30, + ACTIONS(1571), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122761,10 +127561,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [24785] = 3, + [24915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 18, + ACTIONS(1569), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122782,13 +127582,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(785), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1567), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122802,7 +127602,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -122811,15 +127610,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [24843] = 3, + [24973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 20, + ACTIONS(1491), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122840,7 +127640,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1408), 30, + ACTIONS(1489), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122871,10 +127671,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [24901] = 3, + [25031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 20, + ACTIONS(1375), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122895,7 +127695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1244), 30, + ACTIONS(1373), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122926,10 +127726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [24959] = 3, + [25089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 20, + ACTIONS(1403), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -122950,7 +127750,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1224), 30, + ACTIONS(1401), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -122981,21 +127781,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25017] = 5, + [25147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_increment_operator, - anon_sym_QMARK_DOT, - ACTIONS(1184), 16, + ACTIONS(915), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -123009,11 +127802,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(1182), 28, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(913), 30, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123026,22 +127821,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [25079] = 3, + [25205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 18, + ACTIONS(1581), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123060,7 +127858,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1182), 32, + ACTIONS(1579), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123093,20 +127891,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [25137] = 5, + [25263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1186), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 18, + ACTIONS(1561), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -123120,11 +127912,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(1182), 27, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1559), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123137,6 +127931,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -123145,15 +127941,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [25199] = 3, + [25321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 20, + ACTIONS(1487), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123174,7 +127970,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1412), 30, + ACTIONS(1485), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123205,10 +128001,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25257] = 3, + [25379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 20, + ACTIONS(1483), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123229,7 +128025,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1182), 30, + ACTIONS(1481), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123260,10 +128056,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25315] = 3, + [25437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 20, + ACTIONS(1419), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123284,7 +128080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1432), 30, + ACTIONS(1417), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123315,10 +128111,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25373] = 3, + [25495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 20, + ACTIONS(1475), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123339,7 +128135,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1416), 30, + ACTIONS(1473), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123370,10 +128166,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25431] = 3, + [25553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 18, + ACTIONS(1249), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1252), 4, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_as, + ACTIONS(1247), 16, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1245), 28, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [25615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123392,7 +128245,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1252), 32, + ACTIONS(1389), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123425,10 +128278,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [25489] = 3, + [25673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 20, + ACTIONS(1214), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123449,7 +128302,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1420), 30, + ACTIONS(1212), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123480,10 +128333,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25547] = 3, + [25731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 18, + ACTIONS(1339), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123502,7 +128355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1170), 32, + ACTIONS(1337), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123535,10 +128388,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [25605] = 3, + [25789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 20, + ACTIONS(1387), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123559,7 +128412,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1424), 30, + ACTIONS(1385), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123590,10 +128443,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25663] = 3, + [25847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 20, + ACTIONS(1593), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123614,7 +128467,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1252), 30, + ACTIONS(1591), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123645,10 +128498,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25721] = 3, + [25905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 18, + ACTIONS(1237), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123667,7 +128520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1256), 32, + ACTIONS(1235), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123700,10 +128553,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [25779] = 3, + [25963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 20, + ACTIONS(1371), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123724,7 +128577,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1400), 30, + ACTIONS(1369), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123755,10 +128608,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [25837] = 3, + [26021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 20, + ACTIONS(1427), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123776,13 +128629,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1392), 30, - anon_sym_LBRACE, + ACTIONS(1425), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123796,6 +128649,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -123804,18 +128658,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [25895] = 5, + [26079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 1, + ACTIONS(1577), 20, anon_sym_EQ, - ACTIONS(1131), 13, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1575), 30, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123828,11 +128703,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - sym_increment_operator, - ACTIONS(1124), 17, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123840,6 +128710,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -123847,7 +128718,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(1126), 19, + [26137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1367), 20, + anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -123867,20 +128742,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - [25957] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 1, - anon_sym_EQ, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 4, + ACTIONS(1365), 30, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LPAREN, - sym_increment_operator, - anon_sym_QMARK_DOT, - ACTIONS(1166), 12, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123893,24 +128758,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1182), 14, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(1184), 17, + [26195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1395), 18, + anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -123924,12 +128794,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1393), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, anon_sym_as, - anon_sym_async, - [26023] = 3, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [26253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 20, + ACTIONS(1529), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -123950,7 +128852,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1388), 30, + ACTIONS(1527), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -123981,20 +128883,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [26081] = 5, + [26311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, + ACTIONS(1262), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(1186), 3, + ACTIONS(1255), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(1259), 16, anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + sym_increment_operator, anon_sym_QMARK_DOT, - ACTIONS(1184), 16, + ACTIONS(1257), 17, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_async, + [26373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(686), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -124008,11 +128961,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(1182), 29, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(684), 30, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124025,7 +128980,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124034,14 +128989,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [26143] = 3, + [26431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 20, + ACTIONS(1561), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124062,7 +129019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1384), 30, + ACTIONS(1559), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -124093,10 +129050,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [26201] = 3, + [26489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 20, + ACTIONS(1331), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124114,13 +129071,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1232), 30, - anon_sym_LBRACE, + ACTIONS(1329), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124134,6 +129091,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124142,27 +129100,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [26259] = 5, + [26547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1213), 4, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_as, - ACTIONS(1469), 16, + ACTIONS(1303), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -124176,7 +129127,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1467), 28, + ACTIONS(1301), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -124199,16 +129150,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [26321] = 3, + [26605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 18, + ACTIONS(1533), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124226,13 +129181,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1328), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1531), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124246,7 +129201,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124255,15 +129209,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [26379] = 3, + [26663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 20, + ACTIONS(1423), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124281,13 +129236,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1459), 30, - anon_sym_LBRACE, + ACTIONS(1421), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124301,6 +129256,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124309,16 +129265,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [26437] = 3, + [26721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 18, + ACTIONS(1335), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124337,7 +129292,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1316), 32, + ACTIONS(1333), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -124370,10 +129325,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [26495] = 3, + [26779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 20, + ACTIONS(1491), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124391,13 +129346,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1192), 30, - anon_sym_LBRACE, + ACTIONS(1489), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124411,6 +129366,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124419,16 +129375,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [26553] = 3, + [26837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 20, + ACTIONS(1431), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124446,13 +129401,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1483), 30, - anon_sym_LBRACE, + ACTIONS(1429), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124466,6 +129421,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124474,26 +129430,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [26611] = 7, + [26895] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, + ACTIONS(1413), 1, anon_sym_EQ, - ACTIONS(1199), 2, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_DOT, - ACTIONS(1196), 4, + ACTIONS(1259), 3, anon_sym_LBRACK, anon_sym_LPAREN, - sym_increment_operator, anon_sym_QMARK_DOT, - ACTIONS(1166), 12, + ACTIONS(1415), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124506,7 +129460,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1184), 15, + sym_increment_operator, + ACTIONS(1257), 15, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_GT, @@ -124522,7 +129477,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(1182), 16, + ACTIONS(1255), 16, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -124539,10 +129494,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [26677] = 3, + [26961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 18, + ACTIONS(1577), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124561,7 +129516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1360), 32, + ACTIONS(1575), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -124594,10 +129549,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [26735] = 3, + [27019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 18, + ACTIONS(1257), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124615,13 +129570,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1384), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1255), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124635,7 +129590,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124644,70 +129598,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [26793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3251), 15, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3249), 35, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [26851] = 3, + [27077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 18, + ACTIONS(1363), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124725,13 +129625,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1220), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1361), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124745,7 +129645,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124754,15 +129653,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [26909] = 3, + [27135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 20, + ACTIONS(1239), 1, + sym_increment_operator, + ACTIONS(1275), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124780,13 +129682,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1220), 30, - anon_sym_LBRACE, + ACTIONS(1273), 31, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124800,28 +129702,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [26967] = 3, + [27195] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 20, + ACTIONS(1413), 1, anon_sym_EQ, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_increment_operator, + anon_sym_QMARK_DOT, + ACTIONS(1415), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1257), 15, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -124835,44 +129757,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1312), 30, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(1255), 16, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [27025] = 3, + [27261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 20, + ACTIONS(1391), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -124893,7 +129798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1228), 30, + ACTIONS(1389), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -124924,14 +129829,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27083] = 3, + [27319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 20, + ACTIONS(1500), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1497), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -124946,11 +129857,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_as, - anon_sym_DOT, anon_sym_async, - ACTIONS(1112), 30, + ACTIONS(1255), 27, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -124964,7 +129873,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -124973,20 +129881,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27141] = 3, + [27381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 18, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_increment_operator, + anon_sym_QMARK_DOT, + ACTIONS(1257), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -125000,10 +129914,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1356), 32, + ACTIONS(1255), 28, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -125019,7 +129931,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125027,17 +129938,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [27199] = 3, + [27443] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym_EQ, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_increment_operator, + anon_sym_QMARK_DOT, + ACTIONS(1415), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1255), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(1257), 17, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_async, + [27509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 20, + ACTIONS(1239), 1, + sym_increment_operator, + ACTIONS(1275), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125058,7 +130028,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1475), 30, + ACTIONS(1273), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125081,7 +130051,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -125089,10 +130058,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27257] = 3, + [27569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 20, + ACTIONS(1206), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125110,13 +130079,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1131), 30, - anon_sym_LBRACE, + ACTIONS(1204), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125130,6 +130099,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -125138,16 +130108,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [27315] = 3, + [27627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 20, + ACTIONS(1218), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125168,7 +130137,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1487), 30, + ACTIONS(1216), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125199,10 +130168,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27373] = 3, + [27685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 20, + ACTIONS(1222), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125223,7 +130192,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1491), 30, + ACTIONS(1220), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125254,14 +130223,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27431] = 3, + [27743] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 20, + ACTIONS(1262), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1257), 15, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -125275,13 +130246,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + ACTIONS(1255), 16, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + ACTIONS(1259), 16, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + sym_increment_operator, + anon_sym_QMARK_DOT, + [27805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1435), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - ACTIONS(1479), 30, - anon_sym_LBRACE, + ACTIONS(1433), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125295,6 +130321,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -125303,21 +130330,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [27489] = 3, + [27863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 20, + ACTIONS(1249), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + ACTIONS(1252), 3, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + ACTIONS(1247), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -125330,10 +130362,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1272), 30, + ACTIONS(1245), 27, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125353,21 +130384,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27547] = 3, + [27925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 20, + ACTIONS(1545), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125388,7 +130416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1455), 30, + ACTIONS(1543), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125419,102 +130447,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27605] = 40, + [27983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3256), 1, - anon_sym_RBRACE, - ACTIONS(3258), 1, - anon_sym_AT, - ACTIONS(3261), 1, - anon_sym_static, - ACTIONS(3264), 1, - anon_sym_void, - ACTIONS(3267), 1, - anon_sym_var, - ACTIONS(3270), 1, - anon_sym_covariant, - ACTIONS(3273), 1, - anon_sym_factory, - ACTIONS(3276), 1, - anon_sym_Function, - ACTIONS(3279), 1, - anon_sym_get, - ACTIONS(3282), 1, - anon_sym_operator, - ACTIONS(3285), 1, - anon_sym_set, - ACTIONS(3288), 1, - anon_sym_const, - ACTIONS(3291), 1, - anon_sym_final, - ACTIONS(3294), 1, - anon_sym_external, - STATE(1356), 1, - aux_sym_class_body_repeat1, - STATE(2381), 1, - sym__operator, - STATE(2403), 1, - sym__static, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2451), 1, - sym__external_and_static, - STATE(2535), 1, - sym__final_builtin, - STATE(2688), 1, - sym_constructor_signature, - STATE(2717), 1, - sym__type, - STATE(2795), 1, - sym_method_signature, - STATE(2969), 1, - sym_factory_constructor_signature, - STATE(3059), 1, - sym_constant_constructor_signature, - STATE(3176), 1, - sym_inferred_type, - STATE(3424), 1, - sym_declaration, - STATE(3425), 1, - sym__const_builtin, - STATE(3661), 1, - sym__factory, - STATE(3731), 1, - sym__set, - STATE(3732), 1, - sym__get, - STATE(2406), 2, - sym__external, - sym__external_builtin, - STATE(2543), 2, - sym__static_or_covariant, - sym__covariant, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(1501), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - STATE(2930), 4, - sym_getter_signature, - sym_setter_signature, - sym_operator_signature, - sym_function_signature, - [27737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 20, + ACTIONS(1517), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125532,13 +130468,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1332), 30, - anon_sym_LBRACE, + ACTIONS(1515), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125552,6 +130488,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -125560,16 +130497,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [27795] = 3, + [28041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 20, + ACTIONS(1529), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125587,13 +130523,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1300), 30, - anon_sym_LBRACE, + ACTIONS(1527), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125607,6 +130543,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -125615,16 +130552,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [27853] = 3, + [28099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 20, + ACTIONS(1359), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125645,7 +130581,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1284), 30, + ACTIONS(1357), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125676,10 +130612,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27911] = 3, + [28157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 20, + ACTIONS(1395), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125700,7 +130636,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1280), 30, + ACTIONS(1393), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125731,10 +130667,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [27969] = 3, + [28215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 20, + ACTIONS(1423), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125755,7 +130691,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1260), 30, + ACTIONS(1421), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125786,19 +130722,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [28027] = 7, + [28273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, + ACTIONS(1505), 20, anon_sym_EQ, - ACTIONS(1199), 2, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1196), 3, + anon_sym_async, + ACTIONS(1503), 30, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1166), 13, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125811,44 +130762,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - sym_increment_operator, - ACTIONS(1182), 14, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(1184), 17, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + [28331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3323), 15, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, anon_sym_BANG, - anon_sym_as, - anon_sym_async, - [28093] = 3, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3321), 35, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [28389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 18, + ACTIONS(1242), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -125867,7 +130854,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1463), 32, + ACTIONS(1239), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -125900,69 +130887,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [28151] = 3, + [28447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 20, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, + ACTIONS(1262), 2, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1372), 30, - anon_sym_LBRACE, + ACTIONS(1259), 4, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [28209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1362), 20, + ACTIONS(1257), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -125977,11 +130916,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_as, - anon_sym_DOT, anon_sym_async, - ACTIONS(1360), 30, + ACTIONS(1255), 26, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -125995,25 +130932,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [28267] = 3, + [28509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 20, + ACTIONS(915), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126031,13 +130965,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1264), 30, - anon_sym_LBRACE, + ACTIONS(913), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126051,6 +130985,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -126059,16 +130994,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [28325] = 3, + [28567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 18, + ACTIONS(1399), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126087,7 +131021,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1268), 32, + ACTIONS(1397), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126120,10 +131054,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [28383] = 3, + [28625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 20, + ACTIONS(1233), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126144,7 +131078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1328), 30, + ACTIONS(1231), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126175,10 +131109,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [28441] = 3, + [28683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 20, + ACTIONS(1525), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126199,7 +131133,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1256), 30, + ACTIONS(1523), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126230,16 +131164,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [28499] = 5, + [28741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 3, + ACTIONS(1279), 20, anon_sym_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1184), 15, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -126253,25 +131185,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(1182), 16, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - ACTIONS(1196), 16, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1277), 30, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126285,12 +131205,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, - [28561] = 3, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [28799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 20, + ACTIONS(1283), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126311,7 +131243,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1216), 30, + ACTIONS(1281), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126342,10 +131274,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [28619] = 3, + [28857] = 40, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 18, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(3325), 1, + sym_identifier, + ACTIONS(3327), 1, + anon_sym_RBRACE, + ACTIONS(3329), 1, + anon_sym_static, + ACTIONS(3331), 1, + anon_sym_covariant, + ACTIONS(3333), 1, + anon_sym_factory, + ACTIONS(3335), 1, + anon_sym_get, + ACTIONS(3337), 1, + anon_sym_operator, + ACTIONS(3339), 1, + anon_sym_set, + ACTIONS(3341), 1, + anon_sym_const, + ACTIONS(3343), 1, + anon_sym_final, + ACTIONS(3345), 1, + anon_sym_external, + STATE(1461), 1, + aux_sym_class_body_repeat1, + STATE(2394), 1, + sym__operator, + STATE(2435), 1, + sym__static, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2483), 1, + sym__external_and_static, + STATE(2582), 1, + sym__final_builtin, + STATE(2749), 1, + sym_constructor_signature, + STATE(2770), 1, + sym__type, + STATE(2831), 1, + sym_method_signature, + STATE(3020), 1, + sym_factory_constructor_signature, + STATE(3062), 1, + sym_constant_constructor_signature, + STATE(3243), 1, + sym_inferred_type, + STATE(3543), 1, + sym_declaration, + STATE(3578), 1, + sym__const_builtin, + STATE(3603), 1, + sym__factory, + STATE(3616), 1, + sym__get, + STATE(3619), 1, + sym__set, + STATE(2438), 2, + sym__external, + sym__external_builtin, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2587), 2, + sym__static_or_covariant, + sym__covariant, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(1528), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + STATE(2934), 4, + sym_getter_signature, + sym_setter_signature, + sym_operator_signature, + sym_function_signature, + [28989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1287), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126363,13 +131387,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1276), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1285), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126383,7 +131407,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -126392,15 +131415,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [28677] = 3, + [29047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(809), 18, + ACTIONS(1367), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126419,7 +131443,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(807), 32, + ACTIONS(1365), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126452,12 +131476,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [28735] = 4, + [29105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - sym_increment_operator, - ACTIONS(1126), 20, + ACTIONS(1589), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126475,13 +131497,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1124), 29, - anon_sym_LBRACE, + ACTIONS(1587), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126495,23 +131517,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [28795] = 3, + [29163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 18, + ACTIONS(1521), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126530,7 +131553,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1288), 32, + ACTIONS(1519), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126563,10 +131586,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [28853] = 3, + [29221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 18, + ACTIONS(1222), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126585,7 +131608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1459), 32, + ACTIONS(1220), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126618,10 +131641,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [28911] = 3, + [29279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 18, + ACTIONS(1271), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126639,13 +131662,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1292), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1269), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126659,7 +131682,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -126668,72 +131690,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [28969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1182), 14, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(1196), 16, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - sym_increment_operator, - anon_sym_QMARK_DOT, - ACTIONS(1184), 17, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_async, - [29031] = 3, + [29337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 18, + ACTIONS(1399), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126751,13 +131717,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1192), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1397), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126771,7 +131737,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -126780,15 +131745,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [29089] = 3, + [29395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 18, + ACTIONS(1371), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126807,7 +131773,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1296), 32, + ACTIONS(1369), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126840,21 +131806,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [29147] = 5, + [29453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - ACTIONS(1213), 3, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - ACTIONS(1469), 17, + ACTIONS(743), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -126867,9 +131827,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1467), 27, + ACTIONS(741), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -126889,29 +131850,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [29209] = 5, + [29511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_increment_operator, - anon_sym_QMARK_DOT, - ACTIONS(1184), 18, + ACTIONS(1413), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -126925,11 +131882,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(1182), 26, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1415), 32, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126942,22 +131901,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [29271] = 3, + [29569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 18, + ACTIONS(1291), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -126975,13 +131937,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1131), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1289), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126995,7 +131957,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -127004,15 +131965,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [29329] = 3, + [29627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 18, + ACTIONS(1581), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127030,13 +131992,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1260), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1579), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127050,7 +132012,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -127059,40 +132020,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [29387] = 7, + [29685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, + ACTIONS(1427), 20, anon_sym_EQ, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1166), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - sym_increment_operator, - ACTIONS(1184), 15, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -127106,54 +132047,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - ACTIONS(1182), 16, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [29453] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_TILDE_SLASH, - ACTIONS(1208), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1210), 13, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1206), 26, + ACTIONS(1425), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -127170,8 +132067,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, @@ -127180,10 +132081,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [29515] = 3, + [29743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 18, + ACTIONS(1218), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127202,7 +132103,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1380), 32, + ACTIONS(1216), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -127235,10 +132136,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [29573] = 3, + [29801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 20, + ACTIONS(1471), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127259,7 +132160,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1178), 30, + ACTIONS(1469), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -127290,102 +132191,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [29631] = 40, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(3297), 1, - sym_identifier, - ACTIONS(3299), 1, - anon_sym_RBRACE, - ACTIONS(3301), 1, - anon_sym_static, - ACTIONS(3303), 1, - anon_sym_covariant, - ACTIONS(3305), 1, - anon_sym_factory, - ACTIONS(3307), 1, - anon_sym_get, - ACTIONS(3309), 1, - anon_sym_operator, - ACTIONS(3311), 1, - anon_sym_set, - ACTIONS(3313), 1, - anon_sym_const, - ACTIONS(3315), 1, - anon_sym_final, - ACTIONS(3317), 1, - anon_sym_external, - STATE(1427), 1, - aux_sym_class_body_repeat1, - STATE(2381), 1, - sym__operator, - STATE(2403), 1, - sym__static, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2451), 1, - sym__external_and_static, - STATE(2535), 1, - sym__final_builtin, - STATE(2688), 1, - sym_constructor_signature, - STATE(2717), 1, - sym__type, - STATE(2795), 1, - sym_method_signature, - STATE(2969), 1, - sym_factory_constructor_signature, - STATE(3059), 1, - sym_constant_constructor_signature, - STATE(3176), 1, - sym_inferred_type, - STATE(3424), 1, - sym_declaration, - STATE(3425), 1, - sym__const_builtin, - STATE(3661), 1, - sym__factory, - STATE(3731), 1, - sym__set, - STATE(3732), 1, - sym__get, - STATE(2406), 2, - sym__external, - sym__external_builtin, - STATE(2543), 2, - sym__static_or_covariant, - sym__covariant, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(1501), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - STATE(2930), 4, - sym_getter_signature, - sym_setter_signature, - sym_operator_signature, - sym_function_signature, - [29763] = 3, + [29859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 20, + ACTIONS(1541), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127403,13 +132212,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1380), 30, - anon_sym_LBRACE, + ACTIONS(1539), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127423,6 +132232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -127431,16 +132241,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [29821] = 3, + [29917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 20, + ACTIONS(1206), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127461,7 +132270,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1166), 30, + ACTIONS(1204), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -127492,10 +132301,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [29879] = 3, + [29975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 20, + ACTIONS(1431), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127516,7 +132325,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1174), 30, + ACTIONS(1429), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -127547,10 +132356,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [29937] = 3, + [30033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1438), 20, + ACTIONS(1435), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127571,7 +132380,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1436), 30, + ACTIONS(1433), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -127602,10 +132411,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [29995] = 3, + [30091] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(1239), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + sym_increment_operator, + ACTIONS(1275), 17, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1273), 19, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [30153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 18, + ACTIONS(1451), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127624,7 +132490,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1228), 32, + ACTIONS(1449), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -127657,10 +132523,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [30053] = 3, + [30211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 18, + ACTIONS(1295), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127678,13 +132544,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1312), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1293), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127698,7 +132564,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -127707,19 +132572,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [30111] = 3, + [30269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 18, + ACTIONS(1500), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1497), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 16, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -127733,10 +132605,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1308), 32, + ACTIONS(1255), 29, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -127752,7 +132622,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127763,14 +132632,13 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [30169] = 3, + [30331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1144), 20, + ACTIONS(1299), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127791,7 +132659,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1142), 30, + ACTIONS(1297), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -127822,10 +132690,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [30227] = 3, + [30389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 18, + ACTIONS(1443), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -127843,68 +132711,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1202), 32, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [30285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1166), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1441), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127918,7 +132731,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -127927,130 +132739,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [30343] = 3, + [30447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1451), 32, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1252), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [30401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 18, + ACTIONS(1407), 7, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1284), 32, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [30459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 20, - anon_sym_EQ, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1249), 13, anon_sym_QMARK_QMARK, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -128062,11 +132775,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1170), 30, + ACTIONS(1405), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128083,12 +132792,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, @@ -128097,10 +132802,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [30517] = 3, + [30509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 20, + ACTIONS(1447), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128121,7 +132826,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1396), 30, + ACTIONS(1445), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128152,10 +132857,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [30575] = 3, + [30567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 20, + ACTIONS(1210), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128176,7 +132881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1376), 30, + ACTIONS(1208), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128207,10 +132912,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [30633] = 3, + [30625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 18, + ACTIONS(1569), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128229,7 +132934,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1236), 32, + ACTIONS(1567), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128262,10 +132967,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [30691] = 3, + [30683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 18, + ACTIONS(1343), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128284,7 +132989,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1483), 32, + ACTIONS(1341), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128317,12 +133022,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [30749] = 4, + [30741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - sym_increment_operator, - ACTIONS(1126), 18, + ACTIONS(1573), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128341,7 +133044,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1124), 31, + ACTIONS(1571), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128367,40 +133070,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [30809] = 3, + [30799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(809), 20, + ACTIONS(1242), 1, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(807), 30, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(1239), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128413,6 +133095,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + sym_increment_operator, + ACTIONS(1273), 17, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128420,7 +133107,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -128428,11 +133114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [30867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1218), 18, - anon_sym_EQ, + ACTIONS(1275), 19, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -128449,44 +133131,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1216), 32, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [30925] = 3, + anon_sym_DOT, + anon_sym_async, + [30861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 20, + ACTIONS(1379), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128507,7 +133158,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1463), 30, + ACTIONS(1377), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128538,10 +133189,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [30983] = 3, + [30919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 20, + ACTIONS(1359), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128559,13 +133210,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1471), 30, - anon_sym_LBRACE, + ACTIONS(1357), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128579,6 +133230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -128587,16 +133239,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [31041] = 3, + [30977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 20, + ACTIONS(1233), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128614,13 +133265,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1116), 30, - anon_sym_LBRACE, + ACTIONS(1231), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128634,6 +133285,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -128642,16 +133294,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [31099] = 3, + [31035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 20, + ACTIONS(1545), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128669,13 +133320,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1368), 30, - anon_sym_LBRACE, + ACTIONS(1543), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128689,6 +133340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -128697,29 +133349,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [31157] = 5, + [31093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_TILDE_SLASH, - ACTIONS(1208), 5, + ACTIONS(1505), 18, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1210), 13, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -128731,7 +133374,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1206), 28, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1503), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128751,8 +133396,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, anon_sym_as, @@ -128760,10 +133409,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [31219] = 3, + [31151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 20, + ACTIONS(1315), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128784,7 +133433,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(785), 30, + ACTIONS(1313), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128815,10 +133464,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [31277] = 3, + [31209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 20, + ACTIONS(1307), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128839,7 +133488,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1268), 30, + ACTIONS(1305), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -128870,10 +133519,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [31335] = 3, + [31267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 20, + ACTIONS(1257), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128891,13 +133540,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1356), 30, - anon_sym_LBRACE, + ACTIONS(1255), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128911,6 +133560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -128919,16 +133569,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [31393] = 3, + [31325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 20, + ACTIONS(1210), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -128946,13 +133595,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1352), 30, - anon_sym_LBRACE, + ACTIONS(1208), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128966,6 +133615,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -128974,16 +133624,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [31451] = 3, + [31383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 18, + ACTIONS(1585), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129001,13 +133650,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1396), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1583), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129021,7 +133670,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -129030,15 +133678,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [31509] = 3, + [31441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 20, + ACTIONS(1303), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129059,7 +133708,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1340), 30, + ACTIONS(1301), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129090,10 +133739,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [31567] = 3, + [31499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 18, + ACTIONS(1565), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129112,7 +133761,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1240), 32, + ACTIONS(1563), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129145,65 +133794,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [31625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 15, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3319), 35, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [31683] = 3, + [31557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 20, + ACTIONS(1343), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129224,7 +133818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(637), 30, + ACTIONS(1341), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129255,10 +133849,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [31741] = 3, + [31615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 18, + ACTIONS(1513), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129277,7 +133871,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1455), 32, + ACTIONS(1511), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129310,10 +133904,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [31799] = 3, + [31673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 18, + ACTIONS(1319), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129331,13 +133925,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1224), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1317), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129351,7 +133945,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -129360,15 +133953,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [31857] = 3, + [31731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 18, + ACTIONS(743), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129387,7 +133981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1248), 32, + ACTIONS(741), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129420,102 +134014,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [31915] = 40, + [31789] = 40, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, + ACTIONS(3347), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_RBRACE, + ACTIONS(3352), 1, anon_sym_AT, - ACTIONS(83), 1, + ACTIONS(3355), 1, + anon_sym_static, + ACTIONS(3358), 1, anon_sym_void, - ACTIONS(85), 1, + ACTIONS(3361), 1, anon_sym_var, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(3297), 1, - sym_identifier, - ACTIONS(3301), 1, - anon_sym_static, - ACTIONS(3303), 1, + ACTIONS(3364), 1, anon_sym_covariant, - ACTIONS(3305), 1, + ACTIONS(3367), 1, anon_sym_factory, - ACTIONS(3307), 1, + ACTIONS(3370), 1, + anon_sym_Function, + ACTIONS(3373), 1, anon_sym_get, - ACTIONS(3309), 1, + ACTIONS(3376), 1, anon_sym_operator, - ACTIONS(3311), 1, + ACTIONS(3379), 1, anon_sym_set, - ACTIONS(3313), 1, + ACTIONS(3382), 1, anon_sym_const, - ACTIONS(3315), 1, + ACTIONS(3385), 1, anon_sym_final, - ACTIONS(3317), 1, + ACTIONS(3388), 1, anon_sym_external, - ACTIONS(3323), 1, - anon_sym_RBRACE, - STATE(1356), 1, + STATE(1461), 1, aux_sym_class_body_repeat1, - STATE(2381), 1, + STATE(2394), 1, sym__operator, - STATE(2403), 1, + STATE(2435), 1, sym__static, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2451), 1, + STATE(2442), 1, + sym__type_name, + STATE(2483), 1, sym__external_and_static, - STATE(2535), 1, + STATE(2582), 1, sym__final_builtin, - STATE(2688), 1, + STATE(2749), 1, sym_constructor_signature, - STATE(2717), 1, + STATE(2770), 1, sym__type, - STATE(2795), 1, + STATE(2831), 1, sym_method_signature, - STATE(2969), 1, + STATE(3020), 1, sym_factory_constructor_signature, - STATE(3059), 1, + STATE(3062), 1, sym_constant_constructor_signature, - STATE(3176), 1, + STATE(3243), 1, sym_inferred_type, - STATE(3424), 1, + STATE(3543), 1, sym_declaration, - STATE(3425), 1, + STATE(3578), 1, sym__const_builtin, - STATE(3661), 1, + STATE(3603), 1, sym__factory, - STATE(3731), 1, - sym__set, - STATE(3732), 1, + STATE(3616), 1, sym__get, - STATE(2406), 2, + STATE(3619), 1, + sym__set, + STATE(2438), 2, sym__external, sym__external_builtin, - STATE(2543), 2, - sym__static_or_covariant, - sym__covariant, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2587), 2, + sym__static_or_covariant, + sym__covariant, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(1501), 4, + STATE(1528), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - STATE(2930), 4, + STATE(2934), 4, sym_getter_signature, sym_setter_signature, sym_operator_signature, sym_function_signature, - [32047] = 3, + [31921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 18, + ACTIONS(1271), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129534,7 +134128,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1272), 32, + ACTIONS(1269), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129567,10 +134161,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [32105] = 3, + [31979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 20, + ACTIONS(1237), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129591,7 +134185,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1336), 30, + ACTIONS(1235), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129622,15 +134216,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [32163] = 3, + [32037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 20, + ACTIONS(1252), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_TILDE_SLASH, + ACTIONS(1407), 5, anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, anon_sym_LT, anon_sym_GT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1249), 13, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -129642,14 +134244,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1320), 30, - anon_sym_LBRACE, + ACTIONS(1405), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129663,24 +134263,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [32221] = 3, + [32099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 20, + ACTIONS(1525), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129698,13 +134294,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1202), 30, - anon_sym_LBRACE, + ACTIONS(1523), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129718,6 +134314,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -129726,16 +134323,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [32279] = 3, + [32157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 20, + ACTIONS(1413), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129756,7 +134352,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1316), 30, + ACTIONS(1415), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129787,10 +134383,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [32337] = 3, + [32215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 18, + ACTIONS(1549), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129809,7 +134405,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1232), 32, + ACTIONS(1547), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -129842,10 +134438,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [32395] = 3, + [32273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 18, + ACTIONS(1327), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129863,13 +134459,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1368), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1325), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129883,7 +134479,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -129892,15 +134487,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [32453] = 3, + [32331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 18, + ACTIONS(1242), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129918,13 +134514,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1332), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1239), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129938,7 +134534,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -129947,15 +134542,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [32511] = 3, + [32389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 20, + ACTIONS(1323), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -129976,7 +134572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1308), 30, + ACTIONS(1321), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130007,10 +134603,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [32569] = 3, + [32447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 20, + ACTIONS(1331), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130031,7 +134627,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1296), 30, + ACTIONS(1329), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130062,10 +134658,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [32627] = 3, + [32505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 20, + ACTIONS(1335), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130086,7 +134682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1292), 30, + ACTIONS(1333), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130117,10 +134713,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [32685] = 3, + [32563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 20, + ACTIONS(1565), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130141,7 +134737,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1288), 30, + ACTIONS(1563), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130172,10 +134768,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [32743] = 3, + [32621] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 20, + ACTIONS(1413), 1, + anon_sym_EQ, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1415), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + sym_increment_operator, + ACTIONS(1255), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(1257), 17, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_async, + [32687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1267), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130196,7 +134851,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1276), 30, + ACTIONS(1265), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130227,12 +134882,181 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [32801] = 5, + [32745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 15, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3391), 35, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [32803] = 40, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(3325), 1, + sym_identifier, + ACTIONS(3329), 1, + anon_sym_static, + ACTIONS(3331), 1, + anon_sym_covariant, + ACTIONS(3333), 1, + anon_sym_factory, + ACTIONS(3335), 1, + anon_sym_get, + ACTIONS(3337), 1, + anon_sym_operator, + ACTIONS(3339), 1, + anon_sym_set, + ACTIONS(3341), 1, + anon_sym_const, + ACTIONS(3343), 1, + anon_sym_final, + ACTIONS(3345), 1, + anon_sym_external, + ACTIONS(3395), 1, + anon_sym_RBRACE, + STATE(1412), 1, + aux_sym_class_body_repeat1, + STATE(2394), 1, + sym__operator, + STATE(2435), 1, + sym__static, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2483), 1, + sym__external_and_static, + STATE(2582), 1, + sym__final_builtin, + STATE(2749), 1, + sym_constructor_signature, + STATE(2770), 1, + sym__type, + STATE(2831), 1, + sym_method_signature, + STATE(3020), 1, + sym_factory_constructor_signature, + STATE(3062), 1, + sym_constant_constructor_signature, + STATE(3243), 1, + sym_inferred_type, + STATE(3543), 1, + sym_declaration, + STATE(3578), 1, + sym__const_builtin, + STATE(3603), 1, + sym__factory, + STATE(3616), 1, + sym__get, + STATE(3619), 1, + sym__set, + STATE(2438), 2, + sym__external, + sym__external_builtin, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2587), 2, + sym__static_or_covariant, + sym__covariant, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(1528), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + STATE(2934), 4, + sym_getter_signature, + sym_setter_signature, + sym_operator_signature, + sym_function_signature, + [32935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 1, + ACTIONS(1339), 20, anon_sym_EQ, - ACTIONS(1131), 13, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1337), 30, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130245,8 +135069,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, - ACTIONS(1126), 17, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [32993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1549), 20, + anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, anon_sym_LT, @@ -130263,31 +135105,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1124), 19, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1547), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [32863] = 3, + [33051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1438), 18, + ACTIONS(1533), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130306,7 +135161,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1436), 32, + ACTIONS(1531), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130339,10 +135194,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [32921] = 3, + [33109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 18, + ACTIONS(1347), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130361,7 +135216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1116), 32, + ACTIONS(1345), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130394,10 +135249,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [32979] = 3, + [33167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 18, + ACTIONS(1517), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130415,13 +135270,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1280), 32, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1515), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130435,7 +135290,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -130444,15 +135298,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [33037] = 3, + [33225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 20, + ACTIONS(1403), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130470,13 +135325,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1240), 30, - anon_sym_LBRACE, + ACTIONS(1401), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130490,6 +135345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -130498,16 +135354,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [33095] = 3, + [33283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 20, + ACTIONS(1521), 20, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130528,7 +135383,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1236), 30, + ACTIONS(1519), 30, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130559,10 +135414,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [33153] = 3, + [33341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1144), 18, + ACTIONS(1363), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130581,7 +135436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1142), 32, + ACTIONS(1361), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130614,10 +135469,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33211] = 3, + [33399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 18, + ACTIONS(1471), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130636,7 +135491,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(637), 32, + ACTIONS(1469), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130669,10 +135524,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33269] = 3, + [33457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 18, + ACTIONS(1443), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130691,7 +135546,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1264), 32, + ACTIONS(1441), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130724,10 +135579,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33327] = 3, + [33515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 18, + ACTIONS(1593), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130746,7 +135601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1300), 32, + ACTIONS(1591), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130779,10 +135634,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33385] = 3, + [33573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 18, + ACTIONS(1267), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130801,7 +135656,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1112), 32, + ACTIONS(1265), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130834,10 +135689,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33443] = 3, + [33631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 18, + ACTIONS(1447), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130856,7 +135711,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1447), 32, + ACTIONS(1445), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130889,10 +135744,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33501] = 3, + [33689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 18, + ACTIONS(686), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130911,7 +135766,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1392), 32, + ACTIONS(684), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -130944,10 +135799,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33559] = 3, + [33747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 20, + ACTIONS(1323), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -130965,13 +135820,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1248), 30, - anon_sym_LBRACE, + ACTIONS(1321), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130985,6 +135840,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -130993,16 +135849,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [33617] = 3, + [33805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 18, + ACTIONS(1439), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -131021,7 +135876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1376), 32, + ACTIONS(1437), 32, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -131054,24 +135909,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33675] = 8, + [33863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_LT, - ACTIONS(1080), 1, - anon_sym_DOT, - ACTIONS(3325), 1, - anon_sym_in, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1060), 2, - anon_sym_Function, - sym_identifier, - ACTIONS(1075), 18, + ACTIONS(1214), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, @@ -131085,11 +135930,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_BANG, - anon_sym_is, - anon_sym_as, - ACTIONS(1073), 25, + anon_sym_DOT, + ACTIONS(1212), 32, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131103,6 +135950,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -131110,439 +135958,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_SEMI, - [33742] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3215), 1, - anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_CARET, - ACTIONS(3219), 1, - anon_sym_AMP, - ACTIONS(3327), 1, - sym_equality_operator, - STATE(657), 1, - sym_multiplicative_operator, - STATE(668), 1, - sym_additive_operator, - STATE(671), 1, - sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, - aux_sym_additive_expression_repeat1, - STATE(1665), 1, - aux_sym__if_null_expression, - STATE(1669), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(579), 7, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(577), 17, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [33841] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3230), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, - anon_sym_QMARK, - ACTIONS(3234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - sym_equality_operator, - ACTIONS(3240), 1, - anon_sym_PIPE, - ACTIONS(3242), 1, - anon_sym_CARET, - ACTIONS(3244), 1, - anon_sym_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, - sym_multiplicative_operator, - STATE(1616), 1, - aux_sym_additive_expression_repeat1, - STATE(1631), 1, - aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, - aux_sym__if_null_expression, - STATE(1654), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(567), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(565), 16, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [33948] = 4, + [33921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3330), 1, - anon_sym_else, - ACTIONS(3226), 15, - ts_builtin_sym_end, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3224), 33, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_throw, - anon_sym_DASH, - anon_sym_await, - anon_sym_assert, - anon_sym_switch, - anon_sym_do, - anon_sym_while, - anon_sym_break, - anon_sym_continue, - anon_sym_yield, - anon_sym_return, - anon_sym_try, - anon_sym_if, - anon_sym_for, - anon_sym_super, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_Function, - anon_sym_new, - anon_sym_const, - anon_sym_final, - anon_sym_this, - sym_identifier, - [34007] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(1513), 20, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, anon_sym_QMARK, - ACTIONS(3234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - sym_equality_operator, - ACTIONS(3240), 1, - anon_sym_PIPE, - ACTIONS(3242), 1, - anon_sym_CARET, - ACTIONS(3244), 1, - anon_sym_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, - sym_multiplicative_operator, - STATE(1616), 1, - aux_sym_additive_expression_repeat1, - STATE(1631), 1, - aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, - aux_sym__if_null_expression, - STATE(1654), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(602), 4, anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(600), 16, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [34114] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3230), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, - anon_sym_QMARK, - ACTIONS(3234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, - anon_sym_AMP_AMP, - ACTIONS(3238), 1, - sym_equality_operator, - ACTIONS(3240), 1, - anon_sym_PIPE, - ACTIONS(3242), 1, - anon_sym_CARET, - ACTIONS(3244), 1, - anon_sym_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, - sym_multiplicative_operator, - STATE(1616), 1, - aux_sym_additive_expression_repeat1, - STATE(1631), 1, - aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, - aux_sym__if_null_expression, - STATE(1654), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1050), 2, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(560), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(598), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(596), 16, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1511), 30, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [34221] = 28, + [33979] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3240), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3301), 1, anon_sym_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1678), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1654), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(610), 4, + ACTIONS(574), 4, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(608), 16, + ACTIONS(572), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -131559,148 +136098,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [34328] = 28, + [34086] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, + ACTIONS(3261), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(3265), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(3240), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3273), 1, anon_sym_AMP, - STATE(622), 1, + STATE(592), 1, sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(663), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1681), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1654), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(575), 4, + ACTIONS(590), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(573), 16, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(588), 14, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [34435] = 28, + [34193] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3240), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3301), 1, anon_sym_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1678), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1654), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(571), 4, + ACTIONS(586), 4, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(569), 16, + ACTIONS(584), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -131717,91 +136256,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [34542] = 30, + [34300] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3411), 1, anon_sym_AMP, - ACTIONS(3350), 1, + ACTIONS(3415), 1, anon_sym_DOT_DOT, - STATE(579), 1, - sym_multiplicative_operator, - STATE(582), 1, - sym_additive_operator, - STATE(583), 1, + STATE(741), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1903), 1, aux_sym_shift_expression_repeat1, + STATE(1904), 1, + aux_sym_additive_expression_repeat1, STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2019), 1, aux_sym__if_null_expression, - STATE(1987), 1, + STATE(2024), 1, aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(2025), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(2026), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(2027), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1871), 2, + STATE(1902), 2, sym_cascade_section, aux_sym__expression_repeat1, + ACTIONS(536), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(536), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(534), 12, - anon_sym_LBRACE, + ACTIONS(534), 14, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [34653] = 3, + [34411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 16, + ACTIONS(3420), 16, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, @@ -131818,7 +136357,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_AT, anon_sym_SEMI, - ACTIONS(3353), 33, + ACTIONS(3418), 33, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -131852,71 +136391,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_this, sym_identifier, - [34710] = 28, + [34468] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3261), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3265), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3273), 1, anon_sym_AMP, - STATE(657), 1, + STATE(592), 1, + sym_shift_operator, + STATE(663), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(729), 1, sym_additive_operator, - STATE(671), 1, - sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1674), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1669), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(575), 6, + ACTIONS(594), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(573), 14, + ACTIONS(592), 14, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -131931,304 +136470,527 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [34817] = 24, + [34575] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3240), 1, + ACTIONS(3259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3261), 1, + anon_sym_QMARK, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_AMP_AMP, + ACTIONS(3267), 1, + sym_equality_operator, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3273), 1, anon_sym_AMP, - ACTIONS(3357), 1, - sym_equality_operator, - STATE(622), 1, + STATE(592), 1, sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(663), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1681), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1654), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(579), 5, - anon_sym_QMARK, + ACTIONS(598), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(577), 19, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(596), 14, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [34682] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, + ACTIONS(3261), 1, + anon_sym_QMARK, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, anon_sym_AMP_AMP, + ACTIONS(3267), 1, + sym_equality_operator, + ACTIONS(3269), 1, + anon_sym_PIPE, + ACTIONS(3271), 1, + anon_sym_CARET, + ACTIONS(3273), 1, + anon_sym_AMP, + STATE(592), 1, + sym_shift_operator, + STATE(663), 1, + sym_multiplicative_operator, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1680), 1, + aux_sym_additive_expression_repeat1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, + aux_sym__if_null_expression, + STATE(1726), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1732), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1735), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(556), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(602), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(600), 14, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [34916] = 28, + [34789] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, + ACTIONS(3261), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(3265), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(3240), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3273), 1, anon_sym_AMP, - STATE(622), 1, + STATE(592), 1, sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(663), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1681), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1654), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(586), 4, + ACTIONS(606), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(584), 16, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(604), 14, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [35023] = 28, + [34896] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, + ACTIONS(3261), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(3265), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(3240), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3273), 1, anon_sym_AMP, - STATE(622), 1, + STATE(592), 1, sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(663), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1681), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1654), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(606), 4, + ACTIONS(610), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(604), 16, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(608), 14, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [35003] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 1, + anon_sym_LT, + ACTIONS(1140), 1, + anon_sym_DOT, + ACTIONS(3422), 1, + anon_sym_in, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1113), 2, + anon_sym_Function, + sym_identifier, + ACTIONS(1135), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_is, anon_sym_as, + ACTIONS(1133), 25, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [35130] = 28, + [35070] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(657), 1, + ACTIONS(3440), 1, + anon_sym_DOT_DOT, + STATE(593), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(630), 1, sym_additive_operator, - STATE(671), 1, + STATE(633), 1, sym_shift_operator, - STATE(1643), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1644), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1763), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, - aux_sym__if_null_expression, - STATE(1669), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, + STATE(1968), 1, aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1938), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(536), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(534), 12, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [35181] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3259), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3261), 1, + anon_sym_QMARK, + ACTIONS(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_AMP_AMP, + ACTIONS(3267), 1, + sym_equality_operator, + ACTIONS(3269), 1, + anon_sym_PIPE, + ACTIONS(3271), 1, + anon_sym_CARET, + ACTIONS(3273), 1, + anon_sym_AMP, + STATE(592), 1, + sym_shift_operator, + STATE(663), 1, + sym_multiplicative_operator, + STATE(729), 1, + sym_additive_operator, STATE(1674), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1680), 1, + aux_sym_additive_expression_repeat1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, + aux_sym__if_null_expression, + STATE(1726), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1732), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(610), 6, + ACTIONS(586), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(608), 14, + ACTIONS(584), 14, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -132243,71 +137005,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [35237] = 28, + [35288] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3261), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3265), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3273), 1, anon_sym_AMP, - STATE(657), 1, + STATE(592), 1, + sym_shift_operator, + STATE(663), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(729), 1, sym_additive_operator, - STATE(671), 1, - sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1674), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1669), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(602), 6, + ACTIONS(582), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(600), 14, + ACTIONS(580), 14, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -132322,71 +137084,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [35344] = 28, + [35395] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3261), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3265), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3273), 1, anon_sym_AMP, - STATE(657), 1, + STATE(592), 1, + sym_shift_operator, + STATE(663), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(729), 1, sym_additive_operator, - STATE(671), 1, - sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1674), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1669), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(594), 6, + ACTIONS(574), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(592), 14, + ACTIONS(572), 14, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -132401,71 +137163,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [35451] = 28, + [35502] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3259), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3261), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3265), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3273), 1, anon_sym_AMP, - STATE(657), 1, + STATE(592), 1, + sym_shift_operator, + STATE(663), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(729), 1, sym_additive_operator, - STATE(671), 1, - sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1674), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1669), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(598), 6, + ACTIONS(578), 6, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(596), 14, + ACTIONS(576), 14, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -132480,75 +137242,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [35558] = 28, + [35609] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, - anon_sym_QMARK, - ACTIONS(3209), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, - anon_sym_AMP_AMP, - ACTIONS(3213), 1, - sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3273), 1, anon_sym_AMP, - STATE(657), 1, + ACTIONS(3443), 1, + sym_equality_operator, + STATE(592), 1, + sym_shift_operator, + STATE(663), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(729), 1, sym_additive_operator, - STATE(671), 1, - sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1674), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1686), 1, aux_sym__if_null_expression, - STATE(1669), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1726), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1735), 1, aux_sym_bitwise_and_expression_repeat1, + STATE(1738), 1, + aux_sym_logical_or_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(567), 6, + ACTIONS(567), 7, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(565), 14, + ACTIONS(565), 17, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, @@ -132559,215 +137317,215 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [35665] = 28, + [35708] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3301), 1, anon_sym_AMP, - STATE(657), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(594), 1, sym_additive_operator, - STATE(671), 1, + STATE(604), 1, sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1676), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1669), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(606), 6, + ACTIONS(578), 4, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(604), 14, - anon_sym_LBRACE, + ACTIONS(576), 16, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [35772] = 28, + [35815] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3301), 1, anon_sym_AMP, - STATE(657), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(594), 1, sym_additive_operator, - STATE(671), 1, + STATE(604), 1, sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1676), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1669), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(590), 6, + ACTIONS(590), 4, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(588), 14, - anon_sym_LBRACE, + ACTIONS(588), 16, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [35879] = 28, + [35922] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3240), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3301), 1, anon_sym_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1678), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1654), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, @@ -132796,148 +137554,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [35986] = 28, + [36029] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3301), 1, anon_sym_AMP, - STATE(657), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(594), 1, sym_additive_operator, - STATE(671), 1, + STATE(604), 1, sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1676), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1669), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(586), 6, + ACTIONS(598), 4, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(584), 14, - anon_sym_LBRACE, + ACTIONS(596), 16, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [36093] = 28, + [36136] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3240), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3301), 1, anon_sym_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1678), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1654), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(590), 4, + ACTIONS(602), 4, anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(588), 16, + ACTIONS(600), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -132954,152 +137712,203 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [36200] = 28, + [36243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3446), 1, + anon_sym_else, + ACTIONS(3283), 15, + ts_builtin_sym_end, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3281), 33, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, + anon_sym_throw, + anon_sym_DASH, + anon_sym_await, + anon_sym_assert, + anon_sym_switch, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_yield, + anon_sym_return, + anon_sym_try, + anon_sym_if, + anon_sym_for, + anon_sym_super, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_Function, + anon_sym_new, + anon_sym_const, + anon_sym_final, + anon_sym_this, + sym_identifier, + [36302] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3205), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3207), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3209), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3211), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3215), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(3301), 1, anon_sym_AMP, - STATE(657), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(594), 1, sym_additive_operator, - STATE(671), 1, + STATE(604), 1, sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(1676), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1665), 1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1669), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1670), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1671), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(571), 6, + ACTIONS(606), 4, anon_sym_LT, anon_sym_GT, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(569), 14, - anon_sym_LBRACE, + ACTIONS(604), 16, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [36307] = 30, + [36409] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3301), 1, anon_sym_AMP, - ACTIONS(3376), 1, - anon_sym_DOT_DOT, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(1895), 1, - aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, - STATE(1904), 1, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(1677), 1, + aux_sym_additive_expression_repeat1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1689), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + STATE(1690), 1, + aux_sym_logical_or_expression_repeat1, + STATE(1691), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1693), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1695), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1696), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1854), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(536), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(534), 14, + ACTIONS(610), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(608), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -133109,227 +137918,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [36418] = 3, + [36516] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 19, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, + ACTIONS(554), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1284), 29, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [36474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 19, - anon_sym_EQ, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, + ACTIONS(3289), 1, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1272), 29, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, + ACTIONS(3293), 1, anon_sym_AMP_AMP, + ACTIONS(3295), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [36530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 17, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3297), 1, anon_sym_PIPE, + ACTIONS(3299), 1, anon_sym_CARET, + ACTIONS(3301), 1, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, + STATE(591), 1, + sym_multiplicative_operator, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, + aux_sym_additive_expression_repeat1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1689), 1, + aux_sym__if_null_expression, + STATE(1690), 1, + aux_sym_logical_or_expression_repeat1, + STATE(1691), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1693), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1695), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1696), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(560), 3, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(582), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1280), 31, + ACTIONS(580), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [36586] = 3, + [36623] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 17, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3297), 1, anon_sym_PIPE, + ACTIONS(3299), 1, anon_sym_CARET, + ACTIONS(3301), 1, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, + ACTIONS(3448), 1, + sym_equality_operator, + STATE(591), 1, + sym_multiplicative_operator, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, + aux_sym_additive_expression_repeat1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1689), 1, + aux_sym__if_null_expression, + STATE(1690), 1, + aux_sym_logical_or_expression_repeat1, + STATE(1691), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1693), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1695), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1696), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(560), 3, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(567), 5, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1300), 31, + ACTIONS(565), 19, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [36642] = 3, + [36722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 19, + ACTIONS(1581), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -133349,7 +138102,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1268), 29, + ACTIONS(1579), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -133379,116 +138132,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [36698] = 3, + [36778] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 17, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, + ACTIONS(629), 1, + sym_increment_operator, + ACTIONS(634), 1, anon_sym_LT, + ACTIONS(2400), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_BANG, + ACTIONS(3451), 1, + anon_sym_LBRACK, + ACTIONS(3454), 1, + anon_sym_DOT, + ACTIONS(3457), 1, + anon_sym_QMARK_DOT, + STATE(1841), 1, + sym_assignable_selector, + STATE(1908), 1, + sym_unconditional_assignable_selector, + STATE(1987), 1, + sym_argument_part, + STATE(2013), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, + aux_sym_assignable_selector_part_repeat1, + STATE(3383), 1, + sym_type_arguments, + STATE(1603), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(2547), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + ACTIONS(622), 10, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(1232), 31, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_as, + anon_sym_async, + ACTIONS(620), 20, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [36754] = 3, + [36866] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 19, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, + ACTIONS(659), 1, anon_sym_LT, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(3463), 1, + anon_sym_LPAREN, + ACTIONS(3466), 1, + anon_sym_BANG, + ACTIONS(3469), 1, + anon_sym_DOT, + ACTIONS(3472), 1, + anon_sym_QMARK_DOT, + STATE(1742), 1, + sym_unconditional_assignable_selector, + STATE(1749), 1, + sym_assignable_selector, + STATE(1768), 1, + sym_arguments, + STATE(1853), 1, + sym_argument_part, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, + aux_sym_assignable_selector_part_repeat1, + STATE(3451), 1, + sym_type_arguments, + STATE(1590), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(2555), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + ACTIONS(651), 10, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_as, - anon_sym_DOT, anon_sym_async, - ACTIONS(1244), 29, + ACTIONS(649), 21, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [36810] = 3, + [36952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 17, + ACTIONS(1585), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -133506,7 +138290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1284), 31, + ACTIONS(1583), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -133538,42 +138322,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [36866] = 18, + [37008] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 1, + ACTIONS(629), 1, + sym_increment_operator, + ACTIONS(634), 1, anon_sym_LT, - ACTIONS(3379), 1, - anon_sym_LBRACK, - ACTIONS(3382), 1, - anon_sym_LPAREN, - ACTIONS(3385), 1, + ACTIONS(2355), 1, anon_sym_BANG, - ACTIONS(3388), 1, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(3477), 1, anon_sym_DOT, - ACTIONS(3391), 1, + ACTIONS(3479), 1, anon_sym_QMARK_DOT, - STATE(1685), 1, - sym_unconditional_assignable_selector, - STATE(1700), 1, + STATE(1794), 1, sym_assignable_selector, - STATE(1715), 1, - sym_argument_part, - STATE(1783), 1, + STATE(1852), 1, + sym_unconditional_assignable_selector, + STATE(1994), 1, sym_arguments, - STATE(1911), 1, + STATE(1996), 1, + sym_argument_part, + STATE(2492), 1, sym__type_args, - STATE(2584), 1, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3384), 1, + STATE(3506), 1, sym_type_arguments, - STATE(1554), 2, + STATE(1616), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2515), 2, + STATE(2547), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(661), 10, + ACTIONS(622), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -133582,11 +138368,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(659), 21, - anon_sym_LBRACE, + ACTIONS(620), 22, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133599,51 +138386,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [36952] = 19, + [37096] = 38, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(625), 1, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(3325), 1, + sym_identifier, + ACTIONS(3329), 1, + anon_sym_static, + ACTIONS(3331), 1, + anon_sym_covariant, + ACTIONS(3333), 1, + anon_sym_factory, + ACTIONS(3335), 1, + anon_sym_get, + ACTIONS(3337), 1, + anon_sym_operator, + ACTIONS(3339), 1, + anon_sym_set, + ACTIONS(3341), 1, + anon_sym_const, + ACTIONS(3343), 1, + anon_sym_final, + ACTIONS(3345), 1, + anon_sym_external, + STATE(2394), 1, + sym__operator, + STATE(2435), 1, + sym__static, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2483), 1, + sym__external_and_static, + STATE(2582), 1, + sym__final_builtin, + STATE(2749), 1, + sym_constructor_signature, + STATE(2770), 1, + sym__type, + STATE(2879), 1, + sym_method_signature, + STATE(3020), 1, + sym_factory_constructor_signature, + STATE(3062), 1, + sym_constant_constructor_signature, + STATE(3243), 1, + sym_inferred_type, + STATE(3544), 1, + sym_declaration, + STATE(3578), 1, + sym__const_builtin, + STATE(3603), 1, + sym__factory, + STATE(3616), 1, + sym__get, + STATE(3619), 1, + sym__set, + STATE(2438), 2, + sym__external, + sym__external_builtin, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2587), 2, + sym__static_or_covariant, + sym__covariant, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(2429), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + STATE(2934), 4, + sym_getter_signature, + sym_setter_signature, + sym_operator_signature, + sym_function_signature, + [37222] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(629), 1, sym_increment_operator, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2359), 1, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(2403), 1, anon_sym_BANG, - ACTIONS(3394), 1, + ACTIONS(2428), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, anon_sym_LBRACK, - ACTIONS(3397), 1, + ACTIONS(3483), 1, anon_sym_DOT, - ACTIONS(3400), 1, + ACTIONS(3485), 1, anon_sym_QMARK_DOT, - STATE(1792), 1, + STATE(1841), 1, + sym_assignable_selector, + STATE(1908), 1, sym_unconditional_assignable_selector, - STATE(1793), 1, + STATE(1987), 1, + sym_argument_part, + STATE(2013), 1, sym_arguments, - STATE(1870), 1, - sym_assignable_selector, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(1913), 1, - sym_argument_part, - STATE(2584), 1, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3451), 1, + STATE(3383), 1, sym_type_arguments, - STATE(1556), 2, + STATE(1598), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2512), 2, + STATE(2547), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(614), 8, + ACTIONS(622), 10, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -133652,12 +138525,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(612), 22, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(620), 20, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133671,14 +138543,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [37040] = 3, + [37310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 19, + ACTIONS(1267), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -133695,13 +138568,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1300), 29, - anon_sym_LBRACE, + ACTIONS(1265), 31, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133715,6 +138588,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -133722,16 +138596,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [37096] = 3, + [37366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 19, + ACTIONS(1206), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -133751,7 +138624,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1252), 29, + ACTIONS(1204), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -133781,10 +138654,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [37152] = 3, + [37422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 19, + ACTIONS(1267), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -133804,7 +138677,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1280), 29, + ACTIONS(1265), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -133834,216 +138707,169 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [37208] = 19, + [37478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(647), 1, - sym_increment_operator, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_BANG, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_DOT, - ACTIONS(3407), 1, - anon_sym_QMARK_DOT, - STATE(1718), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1922), 1, - sym_unconditional_assignable_selector, - STATE(1942), 1, - sym_argument_part, - STATE(1956), 1, - sym_arguments, - STATE(2584), 1, - aux_sym_assignable_selector_part_repeat1, - STATE(3336), 1, - sym_type_arguments, - STATE(1561), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(2512), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - ACTIONS(614), 10, + ACTIONS(1423), 19, + anon_sym_EQ, + anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(612), 20, + ACTIONS(1421), 29, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_QMARK_QMARK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [37296] = 18, + [37534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 1, - anon_sym_LT, - ACTIONS(3409), 1, - anon_sym_LBRACK, - ACTIONS(3412), 1, - anon_sym_LPAREN, - ACTIONS(3415), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_DOT, - ACTIONS(3421), 1, - anon_sym_QMARK_DOT, - STATE(1650), 1, - sym_unconditional_assignable_selector, - STATE(1690), 1, - sym_assignable_selector, - STATE(1793), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(1913), 1, - sym_argument_part, - STATE(2584), 1, - aux_sym_assignable_selector_part_repeat1, - STATE(3451), 1, - sym_type_arguments, - STATE(1550), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(2515), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - ACTIONS(661), 8, + ACTIONS(1549), 17, + anon_sym_EQ, + anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(659), 23, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(1547), 31, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [37382] = 19, + [37590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(647), 1, - sym_increment_operator, - ACTIONS(2328), 1, - anon_sym_BANG, - ACTIONS(2353), 1, - anon_sym_LPAREN, - ACTIONS(3424), 1, - anon_sym_LBRACK, - ACTIONS(3427), 1, - anon_sym_DOT, - ACTIONS(3430), 1, - anon_sym_QMARK_DOT, - STATE(1718), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1922), 1, - sym_unconditional_assignable_selector, - STATE(1942), 1, - sym_argument_part, - STATE(1956), 1, - sym_arguments, - STATE(2584), 1, - aux_sym_assignable_selector_part_repeat1, - STATE(3336), 1, - sym_type_arguments, - STATE(1571), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(2512), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - ACTIONS(614), 10, + ACTIONS(1339), 19, + anon_sym_EQ, + anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(612), 20, + ACTIONS(1337), 29, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_QMARK_QMARK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [37470] = 3, + [37646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 19, + ACTIONS(1565), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134060,13 +138886,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1380), 29, - anon_sym_LBRACE, + ACTIONS(1563), 31, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134080,6 +138906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -134087,50 +138914,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [37526] = 19, + [37702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(1581), 17, + anon_sym_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(647), 1, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(1579), 31, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [37758] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(629), 1, sym_increment_operator, - ACTIONS(2322), 1, - anon_sym_BANG, - ACTIONS(2374), 1, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(2352), 1, anon_sym_LPAREN, - ACTIONS(3433), 1, + ACTIONS(2355), 1, + anon_sym_BANG, + ACTIONS(3487), 1, anon_sym_LBRACK, - ACTIONS(3435), 1, + ACTIONS(3490), 1, anon_sym_DOT, - ACTIONS(3437), 1, + ACTIONS(3493), 1, anon_sym_QMARK_DOT, - STATE(1792), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1915), 1, + STATE(1794), 1, sym_assignable_selector, - STATE(1928), 1, + STATE(1852), 1, + sym_unconditional_assignable_selector, + STATE(1994), 1, sym_arguments, - STATE(1943), 1, + STATE(1996), 1, sym_argument_part, - STATE(2584), 1, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3363), 1, + STATE(3506), 1, sym_type_arguments, - STATE(1567), 2, + STATE(1611), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2512), 2, + STATE(2547), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(614), 8, + ACTIONS(622), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -134139,7 +139018,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(612), 22, + ACTIONS(620), 22, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -134162,98 +139041,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [37614] = 38, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(3297), 1, - sym_identifier, - ACTIONS(3301), 1, - anon_sym_static, - ACTIONS(3303), 1, - anon_sym_covariant, - ACTIONS(3305), 1, - anon_sym_factory, - ACTIONS(3307), 1, - anon_sym_get, - ACTIONS(3309), 1, - anon_sym_operator, - ACTIONS(3311), 1, - anon_sym_set, - ACTIONS(3313), 1, - anon_sym_const, - ACTIONS(3315), 1, - anon_sym_final, - ACTIONS(3317), 1, - anon_sym_external, - STATE(2381), 1, - sym__operator, - STATE(2403), 1, - sym__static, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2451), 1, - sym__external_and_static, - STATE(2535), 1, - sym__final_builtin, - STATE(2688), 1, - sym_constructor_signature, - STATE(2717), 1, - sym__type, - STATE(2839), 1, - sym_method_signature, - STATE(2969), 1, - sym_factory_constructor_signature, - STATE(3059), 1, - sym_constant_constructor_signature, - STATE(3176), 1, - sym_inferred_type, - STATE(3425), 1, - sym__const_builtin, - STATE(3482), 1, - sym_declaration, - STATE(3661), 1, - sym__factory, - STATE(3731), 1, - sym__set, - STATE(3732), 1, - sym__get, - STATE(2406), 2, - sym__external, - sym__external_builtin, - STATE(2543), 2, - sym__static_or_covariant, - sym__covariant, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(2393), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - STATE(2930), 4, - sym_getter_signature, - sym_setter_signature, - sym_operator_signature, - sym_function_signature, - [37740] = 3, + [37846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 19, + ACTIONS(1439), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134273,7 +139064,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1220), 29, + ACTIONS(1437), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -134303,10 +139094,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [37796] = 3, + [37902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 17, + ACTIONS(1565), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134323,13 +139114,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_as, anon_sym_DOT, - ACTIONS(1380), 31, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1563), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134343,7 +139134,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -134351,15 +139141,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [37852] = 3, + [37958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 17, + ACTIONS(3496), 1, + anon_sym_DOT, + ACTIONS(1135), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134376,8 +139169,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(1268), 31, + anon_sym_BANG, + ACTIONS(1133), 30, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -134403,16 +139196,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [37908] = 3, + [38016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 17, + ACTIONS(1343), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134429,13 +139221,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_as, anon_sym_DOT, - ACTIONS(1252), 31, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1341), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134449,7 +139241,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -134457,15 +139248,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [38072] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(637), 1, + sym_increment_operator, + ACTIONS(2378), 1, + anon_sym_LPAREN, + ACTIONS(2381), 1, + anon_sym_BANG, + ACTIONS(3451), 1, + anon_sym_LBRACK, + ACTIONS(3454), 1, + anon_sym_DOT, + ACTIONS(3457), 1, + anon_sym_QMARK_DOT, + STATE(1768), 1, + sym_arguments, + STATE(1831), 1, + sym_assignable_selector, + STATE(1853), 1, + sym_argument_part, + STATE(1908), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, + aux_sym_assignable_selector_part_repeat1, + STATE(3451), 1, + sym_type_arguments, + STATE(1596), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(2547), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + ACTIONS(622), 10, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_as, + anon_sym_async, + ACTIONS(620), 20, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [37964] = 3, + [38160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 17, + ACTIONS(1339), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134483,7 +139344,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1260), 31, + ACTIONS(1337), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -134515,10 +139376,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [38020] = 3, + [38216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 17, + ACTIONS(1549), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134535,13 +139396,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_as, anon_sym_DOT, - ACTIONS(1244), 31, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1547), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134555,7 +139416,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -134563,84 +139423,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [38076] = 19, + [38272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - anon_sym_LT, - ACTIONS(647), 1, - sym_increment_operator, - ACTIONS(2319), 1, - anon_sym_LPAREN, - ACTIONS(2322), 1, - anon_sym_BANG, - ACTIONS(3394), 1, - anon_sym_LBRACK, - ACTIONS(3397), 1, - anon_sym_DOT, - ACTIONS(3400), 1, - anon_sym_QMARK_DOT, - STATE(1792), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1915), 1, - sym_assignable_selector, - STATE(1928), 1, - sym_arguments, - STATE(1943), 1, - sym_argument_part, - STATE(2584), 1, - aux_sym_assignable_selector_part_repeat1, - STATE(3363), 1, - sym_type_arguments, - STATE(1574), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(2512), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - ACTIONS(614), 8, + ACTIONS(1206), 17, + anon_sym_EQ, + anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(612), 22, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(1204), 31, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [38164] = 3, + [38328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 19, + ACTIONS(1303), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134657,13 +139502,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1232), 29, - anon_sym_LBRACE, + ACTIONS(1301), 31, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134677,6 +139522,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -134684,16 +139530,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [38220] = 3, + [38384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 19, + ACTIONS(1303), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134713,7 +139558,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1260), 29, + ACTIONS(1301), 29, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -134743,12 +139588,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [38276] = 4, + [38440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, - anon_sym_DOT, - ACTIONS(1075), 17, + ACTIONS(1585), 19, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134765,13 +139608,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(1073), 30, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1583), 29, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134785,56 +139628,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - [38334] = 19, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [38496] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(659), 1, anon_sym_LT, - ACTIONS(625), 1, - sym_increment_operator, - ACTIONS(2362), 1, + ACTIONS(3499), 1, + anon_sym_LBRACK, + ACTIONS(3502), 1, anon_sym_LPAREN, - ACTIONS(2365), 1, + ACTIONS(3505), 1, anon_sym_BANG, - ACTIONS(3424), 1, - anon_sym_LBRACK, - ACTIONS(3427), 1, + ACTIONS(3508), 1, anon_sym_DOT, - ACTIONS(3430), 1, + ACTIONS(3511), 1, anon_sym_QMARK_DOT, - STATE(1715), 1, - sym_argument_part, - STATE(1730), 1, + STATE(1697), 1, + sym_unconditional_assignable_selector, + STATE(1713), 1, sym_assignable_selector, - STATE(1783), 1, + STATE(1769), 1, + sym_argument_part, + STATE(1854), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(1922), 1, - sym_unconditional_assignable_selector, - STATE(2584), 1, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3384), 1, + STATE(3531), 1, sym_type_arguments, - STATE(1552), 2, + STATE(1594), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2512), 2, + STATE(2555), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(614), 10, + ACTIONS(651), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -134843,11 +139685,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(612), 20, - anon_sym_LBRACE, + ACTIONS(649), 23, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134860,16 +139703,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [38422] = 3, + [38582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 17, + ACTIONS(1343), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134887,7 +139730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1220), 31, + ACTIONS(1341), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -134919,10 +139762,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [38478] = 3, + [38638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 17, + ACTIONS(1423), 17, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -134940,7 +139783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(1272), 31, + ACTIONS(1421), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -134972,301 +139815,192 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [38534] = 28, + [38694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(1439), 17, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, anon_sym_QMARK, - ACTIONS(3336), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, - anon_sym_AMP_AMP, - ACTIONS(3340), 1, - sym_equality_operator, - ACTIONS(3342), 1, - anon_sym_PIPE, - ACTIONS(3344), 1, - anon_sym_CARET, - ACTIONS(3346), 1, - anon_sym_AMP, - STATE(579), 1, - sym_multiplicative_operator, - STATE(582), 1, - sym_additive_operator, - STATE(583), 1, - sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, - aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, - aux_sym__if_null_expression, - STATE(1987), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(598), 5, anon_sym_LT, anon_sym_GT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(596), 13, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [38639] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3360), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, - anon_sym_QMARK, - ACTIONS(3364), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, - anon_sym_AMP_AMP, - ACTIONS(3368), 1, - sym_equality_operator, - ACTIONS(3370), 1, anon_sym_PIPE, - ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3374), 1, anon_sym_AMP, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, - sym_multiplicative_operator, - STATE(1895), 1, - aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, - STATE(1904), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(560), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(606), 3, - anon_sym_LT, - anon_sym_GT, anon_sym_DOT, - ACTIONS(604), 15, + ACTIONS(1437), 31, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [38744] = 28, + [38750] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3360), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(634), 1, + anon_sym_LT, + ACTIONS(637), 1, + sym_increment_operator, + ACTIONS(2394), 1, + anon_sym_LPAREN, + ACTIONS(2397), 1, + anon_sym_BANG, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3490), 1, + anon_sym_DOT, + ACTIONS(3493), 1, + anon_sym_QMARK_DOT, + STATE(1769), 1, + sym_argument_part, + STATE(1787), 1, + sym_assignable_selector, + STATE(1852), 1, + sym_unconditional_assignable_selector, + STATE(1854), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, + aux_sym_assignable_selector_part_repeat1, + STATE(3531), 1, + sym_type_arguments, + STATE(1595), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(2547), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + ACTIONS(622), 8, anon_sym_QMARK, - ACTIONS(3364), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, - anon_sym_AMP_AMP, - ACTIONS(3368), 1, - sym_equality_operator, - ACTIONS(3370), 1, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3372), 1, - anon_sym_CARET, - ACTIONS(3374), 1, anon_sym_AMP, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, - sym_multiplicative_operator, - STATE(1895), 1, - aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, - STATE(1904), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(571), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - ACTIONS(569), 15, + anon_sym_SLASH, + ACTIONS(620), 22, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [38849] = 28, + [38838] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(579), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(630), 1, sym_additive_operator, - STATE(583), 1, + STATE(633), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, - aux_sym__if_null_expression, - STATE(1987), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(1763), 1, + aux_sym_additive_expression_repeat1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(1968), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(602), 5, + ACTIONS(594), 5, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(600), 13, + ACTIONS(592), 13, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -135280,68 +140014,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [38954] = 28, + [38943] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3411), 1, anon_sym_AMP, - STATE(599), 1, + STATE(741), 1, sym_shift_operator, - STATE(600), 1, + STATE(743), 1, sym_additive_operator, - STATE(601), 1, + STATE(744), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(2019), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2024), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2025), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(586), 3, + ACTIONS(602), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(584), 15, + ACTIONS(600), 15, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -135357,137 +140091,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [39059] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(669), 1, - anon_sym_LT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_BANG, - ACTIONS(3442), 1, - anon_sym_LBRACK, - ACTIONS(3444), 1, - anon_sym_DOT, - ACTIONS(3446), 1, - anon_sym_QMARK_DOT, - STATE(1778), 1, - sym_unconditional_assignable_selector, - STATE(1893), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1942), 1, - sym_argument_part, - STATE(1956), 1, - sym_arguments, - STATE(2584), 1, - aux_sym_assignable_selector_part_repeat1, - STATE(3336), 1, - sym_type_arguments, - STATE(1560), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(2515), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - ACTIONS(661), 8, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(659), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [39144] = 28, + [39048] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(579), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(630), 1, sym_additive_operator, - STATE(583), 1, + STATE(633), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, - aux_sym__if_null_expression, - STATE(1987), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(1763), 1, + aux_sym_additive_expression_repeat1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(1968), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(606), 5, + ACTIONS(582), 5, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(604), 13, + ACTIONS(580), 13, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -135501,145 +140168,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [39249] = 28, + [39153] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(630), 1, + sym_additive_operator, + STATE(633), 1, + sym_shift_operator, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, + STATE(1763), 1, aux_sym_additive_expression_repeat1, - STATE(1904), 1, + STATE(1764), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(1961), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(1965), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1968), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(598), 3, + ACTIONS(574), 5, anon_sym_LT, anon_sym_GT, + anon_sym_as, anon_sym_DOT, - ACTIONS(596), 15, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(572), 13, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [39354] = 28, + [39258] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3411), 1, anon_sym_AMP, - STATE(599), 1, + STATE(741), 1, sym_shift_operator, - STATE(600), 1, + STATE(743), 1, sym_additive_operator, - STATE(601), 1, + STATE(744), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(2019), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2024), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2025), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(567), 3, + ACTIONS(594), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(565), 15, + ACTIONS(592), 15, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -135655,70 +140322,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [39459] = 28, + [39363] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(579), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(630), 1, sym_additive_operator, - STATE(583), 1, + STATE(633), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, - aux_sym__if_null_expression, - STATE(1987), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(1763), 1, + aux_sym_additive_expression_repeat1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(1968), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(571), 5, + ACTIONS(578), 5, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(569), 13, + ACTIONS(576), 13, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -135732,68 +140399,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [39564] = 28, + [39468] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_LT, + ACTIONS(2403), 1, + anon_sym_BANG, + ACTIONS(3514), 1, + anon_sym_LBRACK, + ACTIONS(3517), 1, + anon_sym_LPAREN, + ACTIONS(3520), 1, + anon_sym_DOT, + ACTIONS(3523), 1, + anon_sym_QMARK_DOT, + STATE(1770), 1, + sym_assignable_selector, + STATE(1893), 1, + sym_unconditional_assignable_selector, + STATE(1987), 1, + sym_argument_part, + STATE(2013), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, + aux_sym_assignable_selector_part_repeat1, + STATE(3383), 1, + sym_type_arguments, + STATE(1604), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(2555), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + ACTIONS(651), 8, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, + anon_sym_async, + ACTIONS(649), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [39553] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3411), 1, anon_sym_AMP, - STATE(599), 1, + STATE(741), 1, sym_shift_operator, - STATE(600), 1, + STATE(743), 1, sym_additive_operator, - STATE(601), 1, + STATE(744), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(2019), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2024), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2025), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(590), 3, + ACTIONS(598), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(588), 15, + ACTIONS(596), 15, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -135809,140 +140543,119 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [39669] = 28, + [39658] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(1137), 1, + anon_sym_LT, + ACTIONS(1140), 1, + anon_sym_DOT, + ACTIONS(3526), 1, + anon_sym_COLON, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1135), 16, + anon_sym_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, anon_sym_QMARK, - ACTIONS(3364), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, - anon_sym_AMP_AMP, - ACTIONS(3368), 1, - sym_equality_operator, - ACTIONS(3370), 1, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3374), 1, anon_sym_AMP, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, - sym_multiplicative_operator, - STATE(1895), 1, - aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, - STATE(1904), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(560), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(594), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - ACTIONS(592), 15, - anon_sym_RBRACE, + anon_sym_BANG, + ACTIONS(1133), 27, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [39774] = 24, + [39721] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3342), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3438), 1, anon_sym_AMP, - ACTIONS(3448), 1, + ACTIONS(3528), 1, sym_equality_operator, - STATE(579), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(630), 1, sym_additive_operator, - STATE(583), 1, + STATE(633), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, - aux_sym__if_null_expression, - STATE(1987), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(1763), 1, + aux_sym_additive_expression_repeat1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(1968), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(579), 6, + ACTIONS(567), 6, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(577), 16, + ACTIONS(565), 16, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -135959,70 +140672,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [39871] = 28, + [39818] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(659), 1, + anon_sym_LT, + ACTIONS(2355), 1, + anon_sym_BANG, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(3531), 1, + anon_sym_LBRACK, + ACTIONS(3533), 1, + anon_sym_DOT, + ACTIONS(3535), 1, + anon_sym_QMARK_DOT, + STATE(1905), 1, + sym_unconditional_assignable_selector, + STATE(1906), 1, + sym_assignable_selector, + STATE(1994), 1, + sym_arguments, + STATE(1996), 1, + sym_argument_part, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, + aux_sym_assignable_selector_part_repeat1, + STATE(3506), 1, + sym_type_arguments, + STATE(1615), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(2555), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + ACTIONS(651), 6, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(649), 24, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [39903] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(579), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(630), 1, sym_additive_operator, - STATE(583), 1, + STATE(633), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, - aux_sym__if_null_expression, - STATE(1987), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(1763), 1, + aux_sym_additive_expression_repeat1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(1968), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(567), 5, + ACTIONS(602), 5, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(565), 13, + ACTIONS(600), 13, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -136036,145 +140816,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [39976] = 28, + [40008] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3411), 1, anon_sym_AMP, - STATE(579), 1, - sym_multiplicative_operator, - STATE(582), 1, - sym_additive_operator, - STATE(583), 1, + STATE(741), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1903), 1, aux_sym_shift_expression_repeat1, + STATE(1904), 1, + aux_sym_additive_expression_repeat1, STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2019), 1, aux_sym__if_null_expression, - STATE(1987), 1, + STATE(2024), 1, aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(2025), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(2026), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(2027), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(586), 5, + ACTIONS(586), 3, anon_sym_LT, anon_sym_GT, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(584), 13, - anon_sym_LBRACE, + ACTIONS(584), 15, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [40081] = 28, + [40113] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3411), 1, anon_sym_AMP, - STATE(599), 1, + STATE(741), 1, sym_shift_operator, - STATE(600), 1, + STATE(743), 1, sym_additive_operator, - STATE(601), 1, + STATE(744), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(2019), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2024), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2025), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(602), 3, + ACTIONS(606), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(600), 15, + ACTIONS(604), 15, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -136190,116 +140970,126 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [40186] = 18, + [40218] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 1, - anon_sym_LT, - ACTIONS(2328), 1, - anon_sym_BANG, - ACTIONS(3451), 1, - anon_sym_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN, - ACTIONS(3457), 1, - anon_sym_DOT, - ACTIONS(3460), 1, - anon_sym_QMARK_DOT, - STATE(1778), 1, - sym_unconditional_assignable_selector, - STATE(1893), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1942), 1, - sym_argument_part, - STATE(1956), 1, - sym_arguments, - STATE(2584), 1, - aux_sym_assignable_selector_part_repeat1, - STATE(3336), 1, - sym_type_arguments, - STATE(1565), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(2515), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - ACTIONS(661), 8, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(659), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, + ACTIONS(3399), 1, + anon_sym_QMARK, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, + ACTIONS(3403), 1, anon_sym_AMP_AMP, + ACTIONS(3405), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3407), 1, + anon_sym_PIPE, + ACTIONS(3409), 1, anon_sym_CARET, + ACTIONS(3411), 1, + anon_sym_AMP, + STATE(741), 1, + sym_shift_operator, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1903), 1, + aux_sym_shift_expression_repeat1, + STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2019), 1, + aux_sym__if_null_expression, + STATE(2024), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2025), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + ACTIONS(582), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + ACTIONS(580), 15, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [40271] = 18, + [40323] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 1, + ACTIONS(659), 1, anon_sym_LT, - ACTIONS(2322), 1, + ACTIONS(2355), 1, anon_sym_BANG, - ACTIONS(2374), 1, - anon_sym_LPAREN, - ACTIONS(3463), 1, + ACTIONS(3537), 1, anon_sym_LBRACK, - ACTIONS(3465), 1, + ACTIONS(3540), 1, + anon_sym_LPAREN, + ACTIONS(3543), 1, anon_sym_DOT, - ACTIONS(3467), 1, + ACTIONS(3546), 1, anon_sym_QMARK_DOT, - STATE(1800), 1, + STATE(1905), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1926), 1, + STATE(1906), 1, sym_assignable_selector, - STATE(1928), 1, + STATE(1994), 1, sym_arguments, - STATE(1943), 1, + STATE(1996), 1, sym_argument_part, - STATE(2584), 1, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3363), 1, + STATE(3506), 1, sym_type_arguments, - STATE(1566), 2, + STATE(1609), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2515), 2, + STATE(2555), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(661), 6, + ACTIONS(651), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(659), 24, + ACTIONS(649), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -136324,70 +141114,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [40356] = 28, + [40408] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(579), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(630), 1, sym_additive_operator, - STATE(583), 1, + STATE(633), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, - aux_sym__if_null_expression, - STATE(1987), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(1763), 1, + aux_sym_additive_expression_repeat1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(1968), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(590), 5, + ACTIONS(610), 5, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(588), 13, + ACTIONS(608), 13, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -136401,70 +141191,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [40461] = 28, + [40513] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(579), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(630), 1, sym_additive_operator, - STATE(583), 1, + STATE(633), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, - aux_sym__if_null_expression, - STATE(1987), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(1763), 1, + aux_sym_additive_expression_repeat1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(1968), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(594), 5, + ACTIONS(586), 5, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(592), 13, + ACTIONS(584), 13, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -136478,61 +141268,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [40566] = 24, + [40618] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3370), 1, + ACTIONS(3397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3399), 1, + anon_sym_QMARK, + ACTIONS(3401), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3403), 1, + anon_sym_AMP_AMP, + ACTIONS(3405), 1, + sym_equality_operator, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3411), 1, anon_sym_AMP, - ACTIONS(3469), 1, - sym_equality_operator, - STATE(599), 1, + STATE(741), 1, sym_shift_operator, - STATE(600), 1, + STATE(743), 1, sym_additive_operator, - STATE(601), 1, + STATE(744), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(2019), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2024), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2025), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(579), 4, - anon_sym_QMARK, + ACTIONS(574), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(577), 18, + ACTIONS(572), 15, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -136540,9 +141337,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, @@ -136551,57 +141345,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [40663] = 28, + [40723] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3411), 1, anon_sym_AMP, - STATE(599), 1, + STATE(741), 1, sym_shift_operator, - STATE(600), 1, + STATE(743), 1, sym_additive_operator, - STATE(601), 1, + STATE(744), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, - aux_sym_additive_expression_repeat1, STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(2019), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2024), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2025), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, @@ -136628,285 +141422,361 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [40768] = 28, + [40828] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(579), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(630), 1, sym_additive_operator, - STATE(583), 1, + STATE(633), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, + STATE(1762), 1, + aux_sym_shift_expression_repeat1, + STATE(1763), 1, aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1968), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(590), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(588), 13, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [40933] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3399), 1, + anon_sym_QMARK, + ACTIONS(3401), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3403), 1, + anon_sym_AMP_AMP, + ACTIONS(3405), 1, + sym_equality_operator, + ACTIONS(3407), 1, + anon_sym_PIPE, + ACTIONS(3409), 1, + anon_sym_CARET, + ACTIONS(3411), 1, + anon_sym_AMP, + STATE(741), 1, + sym_shift_operator, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1903), 1, aux_sym_shift_expression_repeat1, + STATE(1904), 1, + aux_sym_additive_expression_repeat1, STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2019), 1, aux_sym__if_null_expression, - STATE(1987), 1, + STATE(2024), 1, aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(2025), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(2026), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(2027), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(610), 5, + ACTIONS(578), 3, anon_sym_LT, anon_sym_GT, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(608), 13, - anon_sym_LBRACE, + ACTIONS(576), 15, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [40873] = 28, + [41038] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3332), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3334), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3336), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3338), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3340), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3342), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3346), 1, + ACTIONS(3411), 1, anon_sym_AMP, - STATE(579), 1, - sym_multiplicative_operator, - STATE(582), 1, - sym_additive_operator, - STATE(583), 1, + STATE(741), 1, sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, - aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1903), 1, aux_sym_shift_expression_repeat1, + STATE(1904), 1, + aux_sym_additive_expression_repeat1, STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1986), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2019), 1, aux_sym__if_null_expression, - STATE(1987), 1, + STATE(2024), 1, aux_sym_logical_or_expression_repeat1, - STATE(1989), 1, + STATE(2025), 1, aux_sym_logical_and_expression_repeat1, - STATE(1990), 1, + STATE(2026), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(2027), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(575), 5, + ACTIONS(590), 3, anon_sym_LT, anon_sym_GT, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(573), 13, - anon_sym_LBRACE, + ACTIONS(588), 15, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [40978] = 28, + [41143] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3426), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3428), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3430), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3438), 1, anon_sym_AMP, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(630), 1, + sym_additive_operator, + STATE(633), 1, + sym_shift_operator, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, + STATE(1763), 1, aux_sym_additive_expression_repeat1, - STATE(1904), 1, + STATE(1764), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, + STATE(1959), 1, aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(1961), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(1965), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1968), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(575), 3, + ACTIONS(598), 5, anon_sym_LT, anon_sym_GT, + anon_sym_as, anon_sym_DOT, - ACTIONS(573), 15, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(596), 13, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [41083] = 18, + [41248] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(669), 1, + ACTIONS(659), 1, anon_sym_LT, - ACTIONS(2322), 1, + ACTIONS(2403), 1, anon_sym_BANG, - ACTIONS(3472), 1, - anon_sym_LBRACK, - ACTIONS(3475), 1, + ACTIONS(2428), 1, anon_sym_LPAREN, - ACTIONS(3478), 1, + ACTIONS(3549), 1, + anon_sym_LBRACK, + ACTIONS(3551), 1, anon_sym_DOT, - ACTIONS(3481), 1, + ACTIONS(3553), 1, anon_sym_QMARK_DOT, - STATE(1800), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1926), 1, + STATE(1770), 1, sym_assignable_selector, - STATE(1928), 1, - sym_arguments, - STATE(1943), 1, + STATE(1893), 1, + sym_unconditional_assignable_selector, + STATE(1987), 1, sym_argument_part, - STATE(2584), 1, + STATE(2013), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(2601), 1, aux_sym_assignable_selector_part_repeat1, - STATE(3363), 1, + STATE(3383), 1, sym_type_arguments, - STATE(1570), 2, + STATE(1606), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(2515), 2, + STATE(2555), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - ACTIONS(661), 6, + ACTIONS(651), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(659), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(649), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136922,96 +141792,191 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [41168] = 7, + [41333] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3407), 1, + anon_sym_PIPE, + ACTIONS(3409), 1, + anon_sym_CARET, + ACTIONS(3411), 1, + anon_sym_AMP, + ACTIONS(3555), 1, + sym_equality_operator, + STATE(741), 1, + sym_shift_operator, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1903), 1, + aux_sym_shift_expression_repeat1, + STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2019), 1, + aux_sym__if_null_expression, + STATE(2024), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2025), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(567), 4, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(1080), 1, + anon_sym_GT, anon_sym_DOT, - ACTIONS(3484), 1, + ACTIONS(565), 18, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_COLON, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1075), 16, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [41430] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3424), 1, anon_sym_QMARK_QMARK, + ACTIONS(3426), 1, anon_sym_QMARK, - anon_sym_GT, + ACTIONS(3428), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3430), 1, + anon_sym_AMP_AMP, + ACTIONS(3432), 1, + sym_equality_operator, + ACTIONS(3434), 1, anon_sym_PIPE, + ACTIONS(3436), 1, anon_sym_CARET, + ACTIONS(3438), 1, anon_sym_AMP, + STATE(593), 1, + sym_multiplicative_operator, + STATE(630), 1, + sym_additive_operator, + STATE(633), 1, + sym_shift_operator, + STATE(1762), 1, + aux_sym_shift_expression_repeat1, + STATE(1763), 1, + aux_sym_additive_expression_repeat1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1959), 1, + aux_sym_logical_and_expression_repeat1, + STATE(1961), 1, + aux_sym__if_null_expression, + STATE(1965), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1968), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2003), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_BANG, - ACTIONS(1073), 27, + anon_sym_TILDE_SLASH, + ACTIONS(606), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(604), 13, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - [41231] = 15, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [41535] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(714), 1, + ACTIONS(710), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(713), 1, anon_sym_LT, - ACTIONS(3486), 1, + ACTIONS(3558), 1, anon_sym_LBRACK, - ACTIONS(3489), 1, + ACTIONS(3561), 1, anon_sym_DOT, - ACTIONS(3492), 1, + ACTIONS(3564), 1, anon_sym_QMARK_DOT, - STATE(1842), 1, + STATE(1771), 1, sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1922), 1, + STATE(1908), 1, sym_unconditional_assignable_selector, - STATE(2967), 1, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1545), 2, + STATE(1587), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2587), 2, + STATE(2598), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(709), 11, + ACTIONS(705), 11, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137023,7 +141988,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_as, anon_sym_async, - ACTIONS(707), 21, + ACTIONS(703), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -137045,36 +142010,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [41309] = 15, + [41613] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(694), 1, anon_sym_LT, - ACTIONS(3495), 1, + ACTIONS(3567), 1, anon_sym_LBRACK, - ACTIONS(3498), 1, + ACTIONS(3570), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3573), 1, anon_sym_QMARK_DOT, - STATE(1792), 1, - sym_unconditional_assignable_selector, - STATE(1892), 1, + STATE(1771), 1, sym_assignable_selector, - STATE(1911), 1, + STATE(1908), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1546), 2, + STATE(1582), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2568), 2, + STATE(2598), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(645), 9, + ACTIONS(627), 11, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137084,12 +142049,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - ACTIONS(647), 23, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(629), 21, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137104,40 +142068,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [41387] = 15, + [41691] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 1, + ACTIONS(729), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(732), 1, anon_sym_LT, - ACTIONS(3504), 1, + ACTIONS(3576), 1, anon_sym_LBRACK, - ACTIONS(3507), 1, + ACTIONS(3579), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3582), 1, anon_sym_QMARK_DOT, - STATE(1792), 1, - sym_unconditional_assignable_selector, - STATE(1892), 1, + STATE(1828), 1, sym_assignable_selector, - STATE(1911), 1, + STATE(1852), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1544), 2, + STATE(1584), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2568), 2, + STATE(2638), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(690), 9, + ACTIONS(724), 9, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137147,7 +142112,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - ACTIONS(688), 23, + ACTIONS(722), 23, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -137171,99 +142136,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [41465] = 15, + [41769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LT, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3519), 1, - anon_sym_QMARK_DOT, - STATE(1842), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1922), 1, - sym_unconditional_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(1545), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2587), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(690), 11, + ACTIONS(1325), 2, + anon_sym_while, + anon_sym_else, + ACTIONS(1323), 18, + anon_sym_EQ, + anon_sym_QMARK_QMARK, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(688), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, + anon_sym_DOT, + ACTIONS(1321), 26, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, anon_sym_SEMI, - [41543] = 15, + [41825] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(714), 1, + ACTIONS(710), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(713), 1, anon_sym_LT, - ACTIONS(3522), 1, + ACTIONS(3585), 1, anon_sym_LBRACK, - ACTIONS(3525), 1, + ACTIONS(3588), 1, anon_sym_DOT, - ACTIONS(3528), 1, + ACTIONS(3591), 1, anon_sym_QMARK_DOT, - STATE(1792), 1, - sym_unconditional_assignable_selector, - STATE(1892), 1, + STATE(1828), 1, sym_assignable_selector, - STATE(1911), 1, + STATE(1852), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1544), 2, + STATE(1584), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2568), 2, + STATE(2638), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(709), 9, + ACTIONS(705), 9, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137273,7 +142227,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - ACTIONS(707), 23, + ACTIONS(703), 23, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -137297,88 +142251,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [41621] = 4, + [41903] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 2, - anon_sym_while, - anon_sym_else, - ACTIONS(1402), 18, - anon_sym_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, anon_sym_LT, + ACTIONS(3594), 1, + anon_sym_LBRACK, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3600), 1, + anon_sym_QMARK_DOT, + STATE(1771), 1, + sym_assignable_selector, + STATE(1908), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(1587), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2598), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(724), 11, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1400), 26, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_async, + ACTIONS(722), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [41677] = 15, + [41981] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(694), 1, anon_sym_LT, - ACTIONS(3531), 1, + ACTIONS(3603), 1, anon_sym_LBRACK, - ACTIONS(3534), 1, + ACTIONS(3606), 1, anon_sym_DOT, - ACTIONS(3537), 1, + ACTIONS(3609), 1, anon_sym_QMARK_DOT, - STATE(1842), 1, + STATE(1828), 1, sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1922), 1, + STATE(1852), 1, sym_unconditional_assignable_selector, - STATE(2967), 1, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1542), 2, + STATE(1586), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2587), 2, + STATE(2638), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(645), 11, + ACTIONS(627), 9, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137388,11 +142353,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(647), 21, - anon_sym_LBRACE, + ACTIONS(629), 23, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137407,20 +142373,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [41755] = 5, + [42059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(2556), 1, anon_sym_DOT_DOT, - STATE(1212), 2, + STATE(1247), 2, sym_cascade_section, aux_sym__expression_repeat1, - ACTIONS(998), 18, + ACTIONS(1072), 18, anon_sym_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, @@ -137439,7 +142404,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_BANG, anon_sym_DOT, - ACTIONS(996), 25, + ACTIONS(1070), 25, anon_sym_LBRACK, anon_sym_COLON, anon_sym_PLUS_EQ, @@ -137465,36 +142430,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, - [41813] = 15, + [42117] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LT, - ACTIONS(3540), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - ACTIONS(3543), 1, + ACTIONS(3615), 1, anon_sym_LPAREN, - ACTIONS(3546), 1, + ACTIONS(3618), 1, anon_sym_BANG, - ACTIONS(3549), 1, + ACTIONS(3621), 1, anon_sym_DOT, - ACTIONS(3552), 1, + ACTIONS(3624), 1, anon_sym_QMARK_DOT, - STATE(1792), 1, - sym_unconditional_assignable_selector, - STATE(1793), 1, + STATE(1768), 1, sym_arguments, - STATE(1911), 1, + STATE(1908), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, sym__type_args, STATE(3451), 1, sym_type_arguments, - STATE(1555), 2, + STATE(1593), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1907), 2, + STATE(1851), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(787), 8, + ACTIONS(743), 10, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137503,12 +142468,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(785), 23, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(741), 21, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137523,66 +142487,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [41890] = 30, + [42194] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3230), 1, + ACTIONS(3287), 1, anon_sym_QMARK_QMARK, - ACTIONS(3232), 1, + ACTIONS(3289), 1, anon_sym_QMARK, - ACTIONS(3234), 1, + ACTIONS(3291), 1, anon_sym_PIPE_PIPE, - ACTIONS(3236), 1, + ACTIONS(3293), 1, anon_sym_AMP_AMP, - ACTIONS(3238), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(3240), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3242), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3301), 1, anon_sym_AMP, - ACTIONS(3555), 1, + ACTIONS(3627), 1, anon_sym_DOT_DOT, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(1616), 1, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(1678), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1653), 1, + STATE(1689), 1, aux_sym__if_null_expression, - STATE(1654), 1, + STATE(1690), 1, aux_sym_logical_or_expression_repeat1, - STATE(1655), 1, + STATE(1691), 1, aux_sym_logical_and_expression_repeat1, - STATE(1656), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, ACTIONS(556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - STATE(2173), 2, + STATE(2210), 2, sym_cascade_section, aux_sym__expression_repeat1, ACTIONS(560), 3, @@ -137604,36 +142569,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, - [41997] = 15, + [42301] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(751), 1, + ACTIONS(773), 1, anon_sym_LT, - ACTIONS(3557), 1, + ACTIONS(3629), 1, anon_sym_LBRACK, - ACTIONS(3560), 1, + ACTIONS(3632), 1, anon_sym_LPAREN, - ACTIONS(3563), 1, + ACTIONS(3635), 1, anon_sym_BANG, - ACTIONS(3566), 1, + ACTIONS(3638), 1, anon_sym_DOT, - ACTIONS(3569), 1, + ACTIONS(3641), 1, anon_sym_QMARK_DOT, - STATE(1783), 1, + STATE(1852), 1, + sym_unconditional_assignable_selector, + STATE(1854), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(1922), 1, - sym_unconditional_assignable_selector, - STATE(3384), 1, + STATE(3531), 1, sym_type_arguments, - STATE(1553), 2, + STATE(1592), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1819), 2, + STATE(1761), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(743), 10, + ACTIONS(765), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137642,11 +142607,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(741), 21, - anon_sym_LBRACE, + ACTIONS(763), 23, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137661,38 +142627,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [42074] = 15, + [42378] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(773), 1, anon_sym_LT, - ACTIONS(3572), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3575), 1, + ACTIONS(3647), 1, anon_sym_LPAREN, - ACTIONS(3578), 1, + ACTIONS(3650), 1, anon_sym_BANG, - ACTIONS(3581), 1, + ACTIONS(3653), 1, anon_sym_DOT, - ACTIONS(3584), 1, + ACTIONS(3656), 1, anon_sym_QMARK_DOT, - STATE(1783), 1, + STATE(1768), 1, sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(1922), 1, + STATE(1908), 1, sym_unconditional_assignable_selector, - STATE(3384), 1, + STATE(2492), 1, + sym__type_args, + STATE(3451), 1, sym_type_arguments, - STATE(1553), 2, + STATE(1593), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1819), 2, + STATE(1851), 2, sym_argument_part, sym_assignable_selector, ACTIONS(765), 10, @@ -137728,36 +142693,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [42151] = 15, + [42455] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LT, - ACTIONS(3587), 1, + ACTIONS(3659), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3662), 1, anon_sym_LPAREN, - ACTIONS(3593), 1, + ACTIONS(3665), 1, anon_sym_BANG, - ACTIONS(3596), 1, + ACTIONS(3668), 1, anon_sym_DOT, - ACTIONS(3599), 1, + ACTIONS(3671), 1, anon_sym_QMARK_DOT, - STATE(1783), 1, + STATE(1852), 1, + sym_unconditional_assignable_selector, + STATE(1854), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(1922), 1, - sym_unconditional_assignable_selector, - STATE(3384), 1, + STATE(3531), 1, sym_type_arguments, - STATE(1553), 2, + STATE(1592), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1819), 2, + STATE(1761), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(787), 10, + ACTIONS(743), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137766,11 +142731,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(785), 21, - anon_sym_LBRACE, + ACTIONS(741), 23, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137785,41 +142751,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [42228] = 15, + [42532] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LT, - ACTIONS(3602), 1, + ACTIONS(3674), 1, anon_sym_LBRACK, - ACTIONS(3605), 1, + ACTIONS(3677), 1, anon_sym_LPAREN, - ACTIONS(3608), 1, + ACTIONS(3680), 1, anon_sym_BANG, - ACTIONS(3611), 1, + ACTIONS(3683), 1, anon_sym_DOT, - ACTIONS(3614), 1, + ACTIONS(3686), 1, anon_sym_QMARK_DOT, - STATE(1792), 1, + STATE(1852), 1, sym_unconditional_assignable_selector, - STATE(1793), 1, + STATE(1854), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3451), 1, + STATE(3531), 1, sym_type_arguments, - STATE(1555), 2, + STATE(1592), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1907), 2, + STATE(1761), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(765), 8, + ACTIONS(787), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137828,7 +142793,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(763), 23, + ACTIONS(785), 23, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -137852,36 +142817,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [42305] = 15, + [42609] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(751), 1, + ACTIONS(795), 1, anon_sym_LT, - ACTIONS(3617), 1, + ACTIONS(3689), 1, anon_sym_LBRACK, - ACTIONS(3620), 1, + ACTIONS(3692), 1, anon_sym_LPAREN, - ACTIONS(3623), 1, + ACTIONS(3695), 1, anon_sym_BANG, - ACTIONS(3626), 1, + ACTIONS(3698), 1, anon_sym_DOT, - ACTIONS(3629), 1, + ACTIONS(3701), 1, anon_sym_QMARK_DOT, - STATE(1792), 1, - sym_unconditional_assignable_selector, - STATE(1793), 1, + STATE(1768), 1, sym_arguments, - STATE(1911), 1, + STATE(1908), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, sym__type_args, STATE(3451), 1, sym_type_arguments, - STATE(1555), 2, + STATE(1593), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1907), 2, + STATE(1851), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(743), 8, + ACTIONS(787), 10, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -137890,12 +142855,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(741), 23, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(785), 21, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137910,52 +142874,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [42382] = 15, + [42686] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(694), 1, anon_sym_LT, - ACTIONS(3632), 1, + ACTIONS(3704), 1, anon_sym_LBRACK, - ACTIONS(3635), 1, + ACTIONS(3707), 1, anon_sym_DOT, - ACTIONS(3638), 1, + ACTIONS(3710), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1933), 1, + STATE(2043), 1, sym_unconditional_assignable_selector, - STATE(2150), 1, + STATE(2092), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1562), 2, + STATE(1599), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2602), 2, + STATE(2619), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(645), 6, + ACTIONS(627), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(647), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(629), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137971,52 +142935,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [42458] = 15, + [42762] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(717), 1, + ACTIONS(795), 1, anon_sym_LT, - ACTIONS(3641), 1, - anon_sym_LBRACK, - ACTIONS(3643), 1, + ACTIONS(2403), 1, + anon_sym_BANG, + ACTIONS(2428), 1, anon_sym_LPAREN, - ACTIONS(3645), 1, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3715), 1, anon_sym_DOT, - ACTIONS(3647), 1, + ACTIONS(3717), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1933), 1, - sym_unconditional_assignable_selector, - STATE(2150), 1, - sym_assignable_selector, - STATE(2967), 1, + STATE(2013), 1, sym_arguments, - STATE(3505), 1, + STATE(2043), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3383), 1, sym_type_arguments, - STATE(1559), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2602), 2, + STATE(1613), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(1985), 2, sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(709), 6, + sym_assignable_selector, + ACTIONS(787), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(707), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(785), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138032,52 +142996,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [42534] = 15, + [42838] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 1, + ACTIONS(710), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(713), 1, anon_sym_LT, - ACTIONS(3649), 1, + ACTIONS(3719), 1, anon_sym_LBRACK, - ACTIONS(3652), 1, + ACTIONS(3722), 1, anon_sym_DOT, - ACTIONS(3655), 1, + ACTIONS(3725), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1933), 1, + STATE(2043), 1, sym_unconditional_assignable_selector, - STATE(2150), 1, + STATE(2092), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1559), 2, + STATE(1605), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2602), 2, + STATE(2619), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(690), 6, + ACTIONS(705), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(688), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(703), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138093,51 +143057,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [42610] = 15, + [42914] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LT, - ACTIONS(2326), 1, + ACTIONS(3728), 1, + anon_sym_LBRACK, + ACTIONS(3731), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(3734), 1, anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3737), 1, anon_sym_DOT, - ACTIONS(3662), 1, + ACTIONS(3740), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1956), 1, + STATE(1994), 1, sym_arguments, - STATE(2012), 1, + STATE(2034), 1, sym_unconditional_assignable_selector, - STATE(3336), 1, + STATE(2492), 1, + sym__type_args, + STATE(3506), 1, sym_type_arguments, - STATE(1576), 2, + STATE(1600), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1934), 2, + STATE(1992), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(787), 8, + ACTIONS(765), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(785), 22, - anon_sym_LBRACE, + ACTIONS(763), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138153,52 +143119,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [42686] = 15, + [42990] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(751), 1, - anon_sym_LT, - ACTIONS(2326), 1, + ACTIONS(729), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_BANG, - ACTIONS(3658), 1, + ACTIONS(732), 1, + anon_sym_LT, + ACTIONS(3743), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3746), 1, anon_sym_DOT, - ACTIONS(3662), 1, + ACTIONS(3749), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2034), 1, + sym_unconditional_assignable_selector, + STATE(2183), 1, + sym_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(1956), 1, + STATE(2989), 1, sym_arguments, - STATE(2012), 1, - sym_unconditional_assignable_selector, - STATE(3336), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1576), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(1934), 2, + STATE(1601), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2627), 2, sym_argument_part, - sym_assignable_selector, - ACTIONS(743), 8, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(724), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(741), 22, - anon_sym_LBRACE, + ACTIONS(722), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138214,48 +143180,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [42762] = 15, + [43066] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(713), 1, anon_sym_LT, - ACTIONS(3664), 1, + ACTIONS(3752), 1, anon_sym_LBRACK, - ACTIONS(3667), 1, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3670), 1, + ACTIONS(3758), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1933), 1, + STATE(2034), 1, sym_unconditional_assignable_selector, - STATE(2150), 1, + STATE(2183), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1559), 2, + STATE(1601), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2602), 2, + STATE(2627), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(709), 6, + ACTIONS(705), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(707), 24, + ACTIONS(703), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -138280,36 +143245,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [42838] = 15, + [43142] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, + ACTIONS(795), 1, anon_sym_LT, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(3658), 1, + ACTIONS(2403), 1, + anon_sym_BANG, + ACTIONS(3760), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3763), 1, + anon_sym_LPAREN, + ACTIONS(3766), 1, anon_sym_DOT, - ACTIONS(3662), 1, + ACTIONS(3769), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2012), 1, - sym_unconditional_assignable_selector, - STATE(2031), 1, - sym_assignable_selector, - STATE(2967), 1, + STATE(2013), 1, sym_arguments, - STATE(3505), 1, + STATE(2043), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3383), 1, sym_type_arguments, - STATE(1575), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2580), 2, + STATE(1613), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(1985), 2, sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(645), 8, + sym_assignable_selector, + ACTIONS(787), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -138318,7 +143283,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(647), 22, + ACTIONS(785), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -138341,48 +143306,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [42914] = 15, + [43218] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, + ACTIONS(751), 1, anon_sym_LT, - ACTIONS(3641), 1, + ACTIONS(2403), 1, + anon_sym_BANG, + ACTIONS(3772), 1, anon_sym_LBRACK, - ACTIONS(3643), 1, + ACTIONS(3775), 1, anon_sym_LPAREN, - ACTIONS(3645), 1, + ACTIONS(3778), 1, anon_sym_DOT, - ACTIONS(3647), 1, + ACTIONS(3781), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1933), 1, - sym_unconditional_assignable_selector, - STATE(2150), 1, - sym_assignable_selector, - STATE(2967), 1, + STATE(2013), 1, sym_arguments, - STATE(3505), 1, + STATE(2043), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3383), 1, sym_type_arguments, - STATE(1558), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2602), 2, + STATE(1613), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(1985), 2, sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(645), 6, + sym_assignable_selector, + ACTIONS(743), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(647), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(741), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138398,40 +143362,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [42990] = 15, + [43294] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, anon_sym_LT, - ACTIONS(2328), 1, - anon_sym_BANG, - ACTIONS(3673), 1, + ACTIONS(3784), 1, anon_sym_LBRACK, - ACTIONS(3676), 1, - anon_sym_LPAREN, - ACTIONS(3679), 1, + ACTIONS(3787), 1, anon_sym_DOT, - ACTIONS(3682), 1, + ACTIONS(3790), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2043), 1, + sym_unconditional_assignable_selector, + STATE(2092), 1, + sym_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(1956), 1, + STATE(2989), 1, sym_arguments, - STATE(2012), 1, - sym_unconditional_assignable_selector, - STATE(3336), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1576), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(1934), 2, + STATE(1605), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2619), 2, sym_argument_part, - sym_assignable_selector, - ACTIONS(787), 8, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(724), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -138440,7 +143405,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(785), 22, + ACTIONS(722), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -138463,48 +143428,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [43066] = 15, + [43370] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LT, - ACTIONS(2322), 1, + ACTIONS(2403), 1, anon_sym_BANG, - ACTIONS(2374), 1, + ACTIONS(2428), 1, anon_sym_LPAREN, - ACTIONS(3641), 1, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(3645), 1, + ACTIONS(3715), 1, anon_sym_DOT, - ACTIONS(3647), 1, + ACTIONS(3717), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1928), 1, + STATE(2013), 1, sym_arguments, - STATE(1933), 1, + STATE(2043), 1, sym_unconditional_assignable_selector, - STATE(3363), 1, + STATE(2492), 1, + sym__type_args, + STATE(3383), 1, sym_type_arguments, - STATE(1569), 2, + STATE(1613), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1929), 2, + STATE(1985), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(787), 6, + ACTIONS(743), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(785), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(741), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138520,47 +143484,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [43142] = 15, + [43446] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(751), 1, - anon_sym_LT, - ACTIONS(2322), 1, - anon_sym_BANG, - ACTIONS(2374), 1, + ACTIONS(710), 1, anon_sym_LPAREN, - ACTIONS(3641), 1, + ACTIONS(713), 1, + anon_sym_LT, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3645), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3647), 1, + ACTIONS(3799), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2034), 1, + sym_unconditional_assignable_selector, + STATE(2183), 1, + sym_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(1928), 1, + STATE(2989), 1, sym_arguments, - STATE(1933), 1, - sym_unconditional_assignable_selector, - STATE(3363), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1569), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(1929), 2, + STATE(1601), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2627), 2, sym_argument_part, - sym_assignable_selector, - ACTIONS(743), 6, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(705), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(741), 24, + ACTIONS(703), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -138585,36 +143550,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [43218] = 15, + [43522] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(694), 1, anon_sym_LT, - ACTIONS(3685), 1, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(3688), 1, + ACTIONS(3715), 1, anon_sym_DOT, - ACTIONS(3691), 1, + ACTIONS(3717), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2012), 1, + ACTIONS(3754), 1, + anon_sym_LPAREN, + STATE(2043), 1, sym_unconditional_assignable_selector, - STATE(2031), 1, + STATE(2092), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1573), 2, + STATE(1614), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2580), 2, + STATE(2619), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(709), 8, + ACTIONS(627), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -138623,7 +143588,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(707), 22, + ACTIONS(629), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -138646,43 +143611,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [43294] = 15, + [43598] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LT, - ACTIONS(3694), 1, + ACTIONS(2355), 1, + anon_sym_BANG, + ACTIONS(3802), 1, anon_sym_LBRACK, - ACTIONS(3697), 1, + ACTIONS(3805), 1, anon_sym_LPAREN, - ACTIONS(3700), 1, - anon_sym_BANG, - ACTIONS(3703), 1, + ACTIONS(3808), 1, anon_sym_DOT, - ACTIONS(3706), 1, + ACTIONS(3811), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1928), 1, + STATE(1994), 1, sym_arguments, - STATE(1933), 1, + STATE(2034), 1, sym_unconditional_assignable_selector, - STATE(3363), 1, + STATE(2492), 1, + sym__type_args, + STATE(3506), 1, sym_type_arguments, - STATE(1569), 2, + STATE(1600), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1929), 2, + STATE(1992), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(765), 6, + ACTIONS(743), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(763), 24, + ACTIONS(741), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -138707,43 +143672,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [43370] = 15, + [43674] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(795), 1, + ACTIONS(694), 1, anon_sym_LT, - ACTIONS(2322), 1, - anon_sym_BANG, - ACTIONS(3709), 1, + ACTIONS(3752), 1, anon_sym_LBRACK, - ACTIONS(3712), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(3715), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3718), 1, + ACTIONS(3758), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2034), 1, + sym_unconditional_assignable_selector, + STATE(2183), 1, + sym_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(1928), 1, + STATE(2989), 1, sym_arguments, - STATE(1933), 1, - sym_unconditional_assignable_selector, - STATE(3363), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1569), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(1929), 2, + STATE(1602), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2627), 2, sym_argument_part, - sym_assignable_selector, - ACTIONS(787), 6, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(627), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(785), 24, + ACTIONS(629), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -138768,47 +143733,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [43446] = 15, + [43750] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(751), 1, + ACTIONS(795), 1, anon_sym_LT, - ACTIONS(2328), 1, + ACTIONS(2355), 1, anon_sym_BANG, - ACTIONS(3721), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3724), 1, + ACTIONS(3817), 1, anon_sym_LPAREN, - ACTIONS(3727), 1, + ACTIONS(3820), 1, anon_sym_DOT, - ACTIONS(3730), 1, + ACTIONS(3823), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1956), 1, + STATE(1994), 1, sym_arguments, - STATE(2012), 1, + STATE(2034), 1, sym_unconditional_assignable_selector, - STATE(3336), 1, + STATE(2492), 1, + sym__type_args, + STATE(3506), 1, sym_type_arguments, - STATE(1576), 2, + STATE(1600), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1934), 2, + STATE(1992), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(743), 8, + ACTIONS(787), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(741), 22, - anon_sym_LBRACE, + ACTIONS(785), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138824,52 +143790,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [43522] = 15, + [43826] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(729), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(694), 1, anon_sym_LT, - ACTIONS(3733), 1, + ACTIONS(3826), 1, anon_sym_LBRACK, - ACTIONS(3736), 1, + ACTIONS(3829), 1, anon_sym_DOT, - ACTIONS(3739), 1, + ACTIONS(3832), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2012), 1, + STATE(2034), 1, sym_unconditional_assignable_selector, - STATE(2031), 1, + STATE(2183), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1568), 2, + STATE(1607), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2580), 2, + STATE(2627), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(645), 8, + ACTIONS(627), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(647), 22, - anon_sym_LBRACE, + ACTIONS(629), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138885,41 +143851,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [43598] = 15, + [43902] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(773), 1, anon_sym_LT, - ACTIONS(3742), 1, + ACTIONS(3835), 1, anon_sym_LBRACK, - ACTIONS(3745), 1, + ACTIONS(3838), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, + anon_sym_BANG, + ACTIONS(3844), 1, anon_sym_DOT, - ACTIONS(3748), 1, + ACTIONS(3847), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2012), 1, - sym_unconditional_assignable_selector, - STATE(2031), 1, - sym_assignable_selector, - STATE(2967), 1, + STATE(2013), 1, sym_arguments, - STATE(3505), 1, + STATE(2043), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3383), 1, sym_type_arguments, - STATE(1573), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2580), 2, + STATE(1613), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(1985), 2, sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(690), 8, + sym_assignable_selector, + ACTIONS(765), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -138928,7 +143893,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(688), 22, + ACTIONS(763), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -138951,48 +143916,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [43674] = 15, + [43978] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(751), 1, + ACTIONS(713), 1, anon_sym_LT, - ACTIONS(2322), 1, - anon_sym_BANG, - ACTIONS(3751), 1, + ACTIONS(3713), 1, anon_sym_LBRACK, - ACTIONS(3754), 1, - anon_sym_LPAREN, - ACTIONS(3757), 1, + ACTIONS(3715), 1, anon_sym_DOT, - ACTIONS(3760), 1, + ACTIONS(3717), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + ACTIONS(3754), 1, + anon_sym_LPAREN, + STATE(2043), 1, + sym_unconditional_assignable_selector, + STATE(2092), 1, + sym_assignable_selector, + STATE(2492), 1, sym__type_args, - STATE(1928), 1, + STATE(2989), 1, sym_arguments, - STATE(1933), 1, - sym_unconditional_assignable_selector, - STATE(3363), 1, + STATE(3384), 1, sym_type_arguments, - STATE(1569), 2, - sym_selector, - aux_sym__postfix_expression_repeat1, - STATE(1929), 2, + STATE(1605), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2619), 2, sym_argument_part, - sym_assignable_selector, - ACTIONS(743), 6, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(705), 8, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(741), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(703), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139008,51 +143972,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [43750] = 15, + [44054] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(717), 1, + ACTIONS(751), 1, anon_sym_LT, - ACTIONS(3643), 1, + ACTIONS(2355), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_LPAREN, - ACTIONS(3658), 1, + ACTIONS(3752), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3662), 1, + ACTIONS(3758), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2012), 1, - sym_unconditional_assignable_selector, - STATE(2031), 1, - sym_assignable_selector, - STATE(2967), 1, + STATE(1994), 1, sym_arguments, - STATE(3505), 1, + STATE(2034), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3506), 1, sym_type_arguments, - STATE(1573), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2580), 2, + STATE(1600), 2, + sym_selector, + aux_sym__postfix_expression_repeat1, + STATE(1992), 2, sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(709), 8, + sym_assignable_selector, + ACTIONS(743), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(707), 22, - anon_sym_LBRACE, + ACTIONS(741), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139068,52 +144034,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [43826] = 15, + [44130] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LT, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3766), 1, - anon_sym_LPAREN, - ACTIONS(3769), 1, + ACTIONS(2355), 1, anon_sym_BANG, - ACTIONS(3772), 1, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, + anon_sym_LBRACK, + ACTIONS(3756), 1, anon_sym_DOT, - ACTIONS(3775), 1, + ACTIONS(3758), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1956), 1, + STATE(1994), 1, sym_arguments, - STATE(2012), 1, + STATE(2034), 1, sym_unconditional_assignable_selector, - STATE(3336), 1, + STATE(2492), 1, + sym__type_args, + STATE(3506), 1, sym_type_arguments, - STATE(1576), 2, + STATE(1600), 2, sym_selector, aux_sym__postfix_expression_repeat1, - STATE(1934), 2, + STATE(1992), 2, sym_argument_part, sym_assignable_selector, - ACTIONS(765), 8, + ACTIONS(787), 6, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(763), 22, - anon_sym_LBRACE, + ACTIONS(785), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139129,74 +144095,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [43902] = 28, + [44206] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, STATE(2232), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2267), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(575), 4, + ACTIONS(578), 4, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_async, - ACTIONS(573), 10, + ACTIONS(576), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_GT_EQ, @@ -139207,291 +144172,287 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [44003] = 28, + [44307] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(658), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(714), 1, sym_additive_operator, - STATE(660), 1, + STATE(717), 1, sym_shift_operator, - STATE(2171), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, - aux_sym__if_null_expression, STATE(2216), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2232), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2238), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(590), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, + aux_sym__if_null_expression, + STATE(2267), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(588), 12, - anon_sym_RBRACE, + ACTIONS(598), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + anon_sym_async, + ACTIONS(596), 10, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [44104] = 28, + [44408] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(677), 1, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, sym_shift_operator, - STATE(678), 1, + STATE(600), 1, sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, + STATE(2206), 1, aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2232), 1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(606), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(594), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - anon_sym_async, - ACTIONS(592), 10, - anon_sym_LBRACE, + ACTIONS(604), 12, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [44205] = 28, + [44509] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(677), 1, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, sym_shift_operator, - STATE(678), 1, + STATE(600), 1, sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, + STATE(2206), 1, aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2232), 1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(594), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(590), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - anon_sym_async, - ACTIONS(588), 10, - anon_sym_LBRACE, + ACTIONS(592), 12, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [44306] = 28, + [44610] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, - anon_sym_QMARK, - ACTIONS(3798), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, - anon_sym_AMP_AMP, - ACTIONS(3802), 1, - sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(658), 1, + ACTIONS(3882), 1, + sym_equality_operator, + STATE(590), 1, sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + STATE(596), 1, sym_shift_operator, - STATE(2171), 1, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2216), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(571), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(569), 12, + ACTIONS(567), 3, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + ACTIONS(565), 15, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, @@ -139499,213 +144460,213 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [44407] = 28, + [44703] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(677), 1, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, sym_shift_operator, - STATE(678), 1, + STATE(600), 1, sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, + STATE(2206), 1, aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2232), 1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(582), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(602), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - anon_sym_async, - ACTIONS(600), 10, - anon_sym_LBRACE, + ACTIONS(580), 12, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [44508] = 28, + [44804] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(677), 1, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, sym_shift_operator, - STATE(678), 1, + STATE(600), 1, sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, + STATE(2206), 1, aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2232), 1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(574), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(606), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - anon_sym_async, - ACTIONS(604), 10, - anon_sym_LBRACE, + ACTIONS(572), 12, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [44609] = 28, + [44905] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(658), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + STATE(596), 1, sym_shift_operator, - STATE(2171), 1, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2216), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(606), 2, + ACTIONS(590), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(604), 12, + ACTIONS(588), 12, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -139718,142 +144679,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [44710] = 28, + [45006] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(658), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(714), 1, sym_additive_operator, - STATE(660), 1, + STATE(717), 1, sym_shift_operator, - STATE(2171), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, - aux_sym__if_null_expression, STATE(2216), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2232), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2238), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, + aux_sym__if_null_expression, + STATE(2267), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(565), 12, - anon_sym_RBRACE, + ACTIONS(606), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + anon_sym_async, + ACTIONS(604), 10, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [44811] = 28, + [45107] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, STATE(2232), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2267), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(567), 4, + ACTIONS(582), 4, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_async, - ACTIONS(565), 10, + ACTIONS(580), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_GT_EQ, @@ -139864,67 +144825,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [44912] = 28, + [45208] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(658), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + STATE(596), 1, sym_shift_operator, - STATE(2171), 1, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2216), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(586), 2, + ACTIONS(578), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(584), 12, + ACTIONS(576), 12, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -139937,71 +144898,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [45013] = 28, + [45309] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, - anon_sym_QMARK, - ACTIONS(3782), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, - anon_sym_AMP_AMP, - ACTIONS(3786), 1, - sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + ACTIONS(3885), 1, + sym_equality_operator, + STATE(711), 1, sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, STATE(2232), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2267), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(610), 4, + ACTIONS(567), 5, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_async, - ACTIONS(608), 10, + ACTIONS(565), 13, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, @@ -140010,67 +144967,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [45114] = 24, + [45402] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3788), 1, + ACTIONS(3850), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3852), 1, + anon_sym_QMARK, + ACTIONS(3854), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3856), 1, + anon_sym_AMP_AMP, + ACTIONS(3858), 1, + sym_equality_operator, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3864), 1, anon_sym_AMP, - ACTIONS(3810), 1, - sym_equality_operator, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, STATE(2232), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2267), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(579), 5, - anon_sym_QMARK, + ACTIONS(610), 4, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_async, - ACTIONS(577), 13, + ACTIONS(608), 10, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, @@ -140079,68 +145040,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [45207] = 24, + [45503] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3804), 1, + ACTIONS(3866), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3868), 1, + anon_sym_QMARK, + ACTIONS(3870), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3872), 1, + anon_sym_AMP_AMP, + ACTIONS(3874), 1, + sym_equality_operator, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3880), 1, anon_sym_AMP, - ACTIONS(3813), 1, - sym_equality_operator, - STATE(658), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + STATE(596), 1, sym_shift_operator, - STATE(2171), 1, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2216), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(586), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(579), 3, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - ACTIONS(577), 15, + ACTIONS(584), 12, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, @@ -140148,67 +145113,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [45300] = 28, + [45604] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(658), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + STATE(596), 1, sym_shift_operator, - STATE(2171), 1, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2216), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(575), 2, + ACTIONS(602), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(573), 12, + ACTIONS(600), 12, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -140221,361 +145186,363 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [45401] = 28, + [45705] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(658), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(714), 1, sym_additive_operator, - STATE(660), 1, + STATE(717), 1, sym_shift_operator, - STATE(2171), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, - aux_sym__if_null_expression, STATE(2216), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2232), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2238), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(594), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, + aux_sym__if_null_expression, + STATE(2267), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(592), 12, - anon_sym_RBRACE, + ACTIONS(586), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + anon_sym_async, + ACTIONS(584), 10, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [45502] = 28, + [45806] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(658), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(714), 1, sym_additive_operator, - STATE(660), 1, + STATE(717), 1, sym_shift_operator, - STATE(2171), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, - aux_sym__if_null_expression, STATE(2216), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2232), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2238), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(610), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, + aux_sym__if_null_expression, + STATE(2267), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(608), 12, - anon_sym_RBRACE, + ACTIONS(602), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + anon_sym_async, + ACTIONS(600), 10, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [45603] = 28, + [45907] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3397), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3399), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3401), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3403), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3411), 1, anon_sym_AMP, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + ACTIONS(3888), 1, + anon_sym_DOT_DOT, + STATE(741), 1, sym_shift_operator, - STATE(2171), 1, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, + STATE(1904), 1, aux_sym_additive_expression_repeat1, - STATE(2200), 1, + STATE(1927), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2019), 1, aux_sym__if_null_expression, - STATE(2216), 1, + STATE(2024), 1, aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + STATE(2025), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, + STATE(2026), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2027), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, + STATE(2028), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(602), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2298), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(536), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(600), 12, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(534), 8, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [45704] = 28, + anon_sym_QMARK_DOT, + [46012] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3880), 1, anon_sym_AMP, - STATE(677), 1, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, sym_shift_operator, - STATE(678), 1, + STATE(600), 1, sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, + STATE(2206), 1, aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2232), 1, + STATE(2244), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, + STATE(2260), 1, aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(610), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(586), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - anon_sym_async, - ACTIONS(584), 10, - anon_sym_LBRACE, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(608), 12, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [45805] = 28, + [46113] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, STATE(2232), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2267), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(598), 4, + ACTIONS(574), 4, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_async, - ACTIONS(596), 10, + ACTIONS(572), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_GT_EQ, @@ -140586,144 +145553,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [45906] = 30, + [46214] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3360), 1, + ACTIONS(3866), 1, anon_sym_QMARK_QMARK, - ACTIONS(3362), 1, + ACTIONS(3868), 1, anon_sym_QMARK, - ACTIONS(3364), 1, + ACTIONS(3870), 1, anon_sym_PIPE_PIPE, - ACTIONS(3366), 1, + ACTIONS(3872), 1, anon_sym_AMP_AMP, - ACTIONS(3368), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3370), 1, + ACTIONS(3876), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3880), 1, anon_sym_AMP, - ACTIONS(3816), 1, - anon_sym_DOT_DOT, - STATE(599), 1, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, sym_shift_operator, STATE(600), 1, sym_additive_operator, - STATE(601), 1, - sym_multiplicative_operator, - STATE(1895), 1, - aux_sym_shift_expression_repeat1, - STATE(1902), 1, + STATE(2206), 1, aux_sym_additive_expression_repeat1, - STATE(1904), 1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, + STATE(2237), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, + STATE(2243), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1955), 1, - aux_sym_logical_and_expression_repeat1, - STATE(1967), 1, - aux_sym_logical_or_expression_repeat1, - STATE(1973), 1, + STATE(2244), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2259), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2260), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(598), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2274), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(536), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(534), 8, - anon_sym_LBRACK, + ACTIONS(596), 12, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, - [46011] = 28, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [46315] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3778), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3780), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3782), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3784), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3786), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3788), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, STATE(2232), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, aux_sym__if_null_expression, - STATE(2233), 1, + STATE(2267), 1, aux_sym_logical_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2238), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(571), 4, + ACTIONS(594), 4, anon_sym_LT, anon_sym_GT, anon_sym_as, anon_sym_async, - ACTIONS(569), 10, + ACTIONS(592), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_GT_EQ, @@ -140734,102 +145699,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [46112] = 28, + [46416] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3794), 1, + ACTIONS(3850), 1, anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, + ACTIONS(3852), 1, anon_sym_QMARK, - ACTIONS(3798), 1, + ACTIONS(3854), 1, anon_sym_PIPE_PIPE, - ACTIONS(3800), 1, + ACTIONS(3856), 1, anon_sym_AMP_AMP, - ACTIONS(3802), 1, + ACTIONS(3858), 1, sym_equality_operator, - ACTIONS(3804), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3864), 1, anon_sym_AMP, - STATE(658), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(714), 1, sym_additive_operator, - STATE(660), 1, + STATE(717), 1, sym_shift_operator, - STATE(2171), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2200), 1, - aux_sym__if_null_expression, STATE(2216), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2222), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2232), 1, aux_sym_logical_and_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2238), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(598), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2250), 1, + aux_sym__if_null_expression, + STATE(2267), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(596), 12, - anon_sym_RBRACE, + ACTIONS(590), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + anon_sym_async, + ACTIONS(588), 10, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [46213] = 11, + [46517] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(834), 1, + ACTIONS(1004), 1, anon_sym_as, - ACTIONS(2680), 1, + ACTIONS(2853), 1, anon_sym_is, - STATE(586), 1, + STATE(713), 1, sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, + STATE(2633), 1, sym_is_operator, - ACTIONS(825), 2, + STATE(2640), 1, + sym_as_operator, + ACTIONS(995), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(828), 2, + ACTIONS(998), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2247), 2, + STATE(2280), 2, sym_type_test, sym_type_cast, - ACTIONS(823), 10, + ACTIONS(993), 10, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, @@ -140840,7 +145805,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_DOT, anon_sym_async, - ACTIONS(821), 21, + ACTIONS(991), 21, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -140862,29 +145827,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [46279] = 11, + [46583] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, + ACTIONS(2853), 1, anon_sym_is, - ACTIONS(2683), 1, + ACTIONS(2856), 1, anon_sym_as, - STATE(586), 1, + STATE(713), 1, sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, + STATE(2633), 1, sym_is_operator, - ACTIONS(825), 2, + STATE(2640), 1, + sym_as_operator, + ACTIONS(995), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(828), 2, + ACTIONS(998), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2247), 2, + STATE(2280), 2, sym_type_test, sym_type_cast, - ACTIONS(823), 9, + ACTIONS(993), 9, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, @@ -140894,7 +145859,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(821), 22, + ACTIONS(991), 22, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -140917,17 +145882,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [46345] = 6, + [46649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 1, + ACTIONS(3890), 1, anon_sym_Function, - STATE(3047), 1, + STATE(3063), 1, sym__function_builtin_identifier, - STATE(1605), 2, + STATE(1644), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(974), 11, + ACTIONS(1039), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -140938,15 +145903,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(972), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1037), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140961,22 +145925,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [46400] = 6, + [46704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 1, + ACTIONS(3890), 1, anon_sym_Function, - STATE(3047), 1, + STATE(3063), 1, sym__function_builtin_identifier, - STATE(1605), 2, + STATE(1644), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(968), 11, + ACTIONS(1045), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -140987,15 +145952,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(966), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1043), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141010,22 +145974,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [46455] = 6, + [46759] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3892), 1, anon_sym_Function, - STATE(3044), 1, + STATE(3063), 1, sym__function_builtin_identifier, - STATE(1604), 2, + STATE(1644), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(978), 13, + ACTIONS(1032), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -141039,7 +146004,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(976), 24, + ACTIONS(1030), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -141064,17 +146029,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [46510] = 6, + [46814] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(3895), 1, anon_sym_Function, - STATE(3047), 1, + STATE(3081), 1, sym__function_builtin_identifier, - STATE(1605), 2, + STATE(1645), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(978), 11, + ACTIONS(1032), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -141086,7 +146051,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(976), 26, + ACTIONS(1030), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -141113,17 +146078,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [46565] = 6, + [46869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(3898), 1, anon_sym_Function, - STATE(3044), 1, + STATE(3081), 1, sym__function_builtin_identifier, - STATE(1604), 2, + STATE(1645), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(968), 13, + ACTIONS(1039), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -141134,14 +146099,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(966), 24, - anon_sym_LBRACE, + ACTIONS(1037), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141156,23 +146122,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [46620] = 6, + [46924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(3898), 1, anon_sym_Function, - STATE(3044), 1, + STATE(3081), 1, sym__function_builtin_identifier, - STATE(1604), 2, + STATE(1645), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(974), 13, + ACTIONS(1045), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -141183,185 +146148,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(972), 24, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [46675] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(834), 1, - anon_sym_as, - ACTIONS(2680), 1, - anon_sym_is, - STATE(586), 1, - sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, - sym_is_operator, - ACTIONS(825), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(828), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(2247), 2, - sym_type_test, - sym_type_cast, - ACTIONS(823), 7, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, anon_sym_DOT, - anon_sym_async, - ACTIONS(821), 22, - anon_sym_LBRACE, + ACTIONS(1043), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [46739] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(514), 1, - anon_sym_covariant, - ACTIONS(526), 1, anon_sym_RPAREN, - ACTIONS(3828), 1, - sym_identifier, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3832), 1, - anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2444), 1, - sym__covariant, - STATE(2905), 1, - sym__declared_identifier, - STATE(3202), 1, - sym_formal_parameter, - STATE(3343), 1, - sym__type, - STATE(3344), 1, - sym__normal_formal_parameters, - STATE(3725), 1, - sym_this, - STATE(3765), 1, - sym_optional_formal_parameters, - ACTIONS(135), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(3090), 2, - sym__final_const_var_or_type, - sym_inferred_type, - STATE(3764), 2, - sym__optional_postional_formal_parameters, - sym__named_formal_parameters, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(2270), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - STATE(2940), 4, - sym__normal_formal_parameter, - sym__function_formal_parameter, - sym__simple_formal_parameter, - sym_constructor_param, - [46837] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1029), 1, - anon_sym_LT, - ACTIONS(3834), 1, - anon_sym_LPAREN, - STATE(1713), 1, - sym_parameter_type_list, - STATE(3419), 1, - sym_type_parameters, - ACTIONS(985), 12, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(983), 24, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141376,183 +146171,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, - anon_sym_SEMI, - [46893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3836), 1, - anon_sym_LT, - STATE(1697), 1, - sym__type_args, - STATE(1705), 1, - sym_type_arguments, - ACTIONS(985), 12, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(983), 25, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [46947] = 11, + [46979] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, + ACTIONS(2853), 1, anon_sym_is, - ACTIONS(2683), 1, + ACTIONS(2856), 1, anon_sym_as, - STATE(586), 1, + STATE(713), 1, sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, + STATE(2633), 1, sym_is_operator, - ACTIONS(825), 2, + STATE(2640), 1, + sym_as_operator, + ACTIONS(995), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(828), 2, + ACTIONS(998), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2247), 2, + STATE(2280), 2, sym_type_test, sym_type_cast, - ACTIONS(823), 6, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(821), 23, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [47011] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3838), 1, - anon_sym_Function, - STATE(3072), 1, - sym__function_builtin_identifier, - STATE(1613), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(978), 15, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(976), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_SEMI, - [47065] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3841), 1, - anon_sym_LT, - STATE(1696), 1, - sym__type_args, - STATE(1711), 1, - sym_type_arguments, - ACTIONS(985), 10, + ACTIONS(993), 6, anon_sym_QMARK, - anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(983), 27, + ACTIONS(991), 23, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -141564,34 +146217,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [47119] = 7, + [47043] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(1068), 1, anon_sym_LT, - ACTIONS(3843), 1, + ACTIONS(3900), 1, anon_sym_LPAREN, - STATE(1698), 1, + STATE(1715), 1, sym_parameter_type_list, - STATE(3413), 1, + STATE(3536), 1, sym_type_parameters, - ACTIONS(985), 10, + ACTIONS(1059), 10, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -141602,7 +146251,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(983), 26, + ACTIONS(1057), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -141629,16 +146278,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [47175] = 5, + [47099] = 6, ACTIONS(3), 1, sym_comment, - STATE(623), 1, - sym_additive_operator, - STATE(1622), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 11, - anon_sym_QMARK, + ACTIONS(3902), 1, anon_sym_LT, + STATE(1708), 1, + sym__type_args, + STATE(1721), 1, + sym_type_arguments, + ACTIONS(1059), 10, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -141648,7 +146298,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1003), 26, + ACTIONS(1057), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -141674,98 +146324,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [47226] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3804), 1, - anon_sym_PIPE, - ACTIONS(3806), 1, - anon_sym_CARET, - ACTIONS(3808), 1, - anon_sym_AMP, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_QMARK, - ACTIONS(3849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3851), 1, - anon_sym_AMP_AMP, - ACTIONS(3853), 1, - sym_equality_operator, - ACTIONS(3855), 1, - anon_sym_DOT_DOT, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, - sym_shift_operator, - STATE(2171), 1, - aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2362), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2367), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2370), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2670), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(534), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_SEMI, - [47325] = 3, + [47153] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 9, - anon_sym_QMARK, + ACTIONS(1068), 1, anon_sym_LT, + ACTIONS(3904), 1, + anon_sym_LPAREN, + STATE(1730), 1, + sym_parameter_type_list, + STATE(3454), 1, + sym_type_parameters, + ACTIONS(1059), 12, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1244), 30, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1057), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141775,31 +146363,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_AT, - anon_sym_export, - anon_sym_import, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [47372] = 5, + [47209] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3857), 1, - anon_sym_DOT_DOT, - STATE(1619), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(1018), 11, - anon_sym_QMARK, + ACTIONS(3906), 1, anon_sym_LT, + STATE(1704), 1, + sym__type_args, + STATE(1750), 1, + sym_type_arguments, + ACTIONS(1059), 12, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -141808,15 +146394,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1016), 25, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1057), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141831,43 +146416,122 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [47423] = 6, + [47263] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, + ACTIONS(93), 1, anon_sym_Function, - STATE(3000), 1, + ACTIONS(109), 1, + anon_sym_this, + ACTIONS(514), 1, + anon_sym_covariant, + ACTIONS(526), 1, + anon_sym_RPAREN, + ACTIONS(3908), 1, + sym_identifier, + ACTIONS(3910), 1, + anon_sym_LBRACE, + ACTIONS(3912), 1, + anon_sym_LBRACK, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(1641), 2, + STATE(2442), 1, + sym__type_name, + STATE(2459), 1, + sym__covariant, + STATE(2942), 1, + sym__declared_identifier, + STATE(3350), 1, + sym_formal_parameter, + STATE(3405), 1, + sym__normal_formal_parameters, + STATE(3406), 1, + sym__type, + STATE(3711), 1, + sym_this, + STATE(3830), 1, + sym_optional_formal_parameters, + ACTIONS(135), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(968), 8, - anon_sym_QMARK, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(3348), 2, + sym__final_const_var_or_type, + sym_inferred_type, + STATE(3834), 2, + sym__optional_postional_formal_parameters, + sym__named_formal_parameters, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(2306), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + STATE(2940), 4, + sym__normal_formal_parameter, + sym__function_formal_parameter, + sym__simple_formal_parameter, + sym_constructor_param, + [47361] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1004), 1, + anon_sym_as, + ACTIONS(2853), 1, + anon_sym_is, + STATE(713), 1, + sym_relational_operator, + STATE(2633), 1, + sym_is_operator, + STATE(2640), 1, + sym_as_operator, + ACTIONS(995), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(998), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + ACTIONS(993), 7, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(966), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(991), 22, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -141876,79 +146540,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [47476] = 5, + [47425] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 1, - anon_sym_DOT_DOT, - STATE(1619), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(998), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1051), 1, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(996), 25, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(591), 1, + sym_multiplicative_operator, + STATE(1655), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1054), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_else, - anon_sym_SEMI, - [47527] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(623), 1, - sym_additive_operator, - STATE(1622), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(993), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(610), 9, + ACTIONS(590), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(608), 26, + ACTIONS(588), 23, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -141965,9 +146587,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, anon_sym_as, @@ -141975,15 +146594,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [47580] = 5, + [47480] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(3914), 1, anon_sym_DOT_DOT, - STATE(1623), 2, + STATE(1669), 2, sym_cascade_section, aux_sym__expression_repeat1, - ACTIONS(1018), 13, + ACTIONS(1072), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -141997,7 +146616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1016), 23, + ACTIONS(1070), 23, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142021,77 +146640,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [47631] = 6, + [47531] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, - anon_sym_Function, - STATE(3000), 1, - sym__function_builtin_identifier, - STATE(1641), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(974), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(972), 27, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3876), 1, + anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, + anon_sym_AMP, + ACTIONS(3917), 1, anon_sym_QMARK_QMARK, + ACTIONS(3919), 1, + anon_sym_QMARK, + ACTIONS(3921), 1, anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, anon_sym_AMP_AMP, + ACTIONS(3925), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, + ACTIONS(3927), 1, + anon_sym_DOT_DOT, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2406), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2412), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2415), 1, + aux_sym__if_null_expression, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2714), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, + ACTIONS(534), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_else, anon_sym_SEMI, - [47684] = 4, + [47630] = 3, ACTIONS(3), 1, sym_comment, - STATE(1695), 1, - sym__type_dot_identifier, - ACTIONS(1060), 13, + ACTIONS(1581), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1058), 25, - anon_sym_LBRACE, + ACTIONS(1579), 30, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142101,43 +146740,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, + anon_sym_AT, + anon_sym_export, + anon_sym_import, anon_sym_SEMI, - [47733] = 4, + [47677] = 7, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, - sym__type_dot_identifier, - ACTIONS(1060), 11, + ACTIONS(1063), 1, + anon_sym_GT_GT, + STATE(592), 1, + sym_shift_operator, + STATE(1659), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(2181), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(598), 12, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1058), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(596), 22, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142145,30 +146791,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [47782] = 6, + [47732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, - anon_sym_Function, - STATE(3002), 1, - sym__function_builtin_identifier, - STATE(1627), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(978), 10, + STATE(729), 1, + sym_additive_operator, + STATE(1660), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(594), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -142176,10 +146820,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(976), 25, + ACTIONS(592), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142193,11 +146838,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -142205,16 +146849,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [47835] = 7, + [47785] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 1, + ACTIONS(1063), 1, anon_sym_GT_GT, - STATE(622), 1, + STATE(604), 1, sym_shift_operator, - STATE(1628), 1, + STATE(1661), 1, aux_sym_shift_expression_repeat1, - ACTIONS(2104), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, ACTIONS(598), 10, @@ -142253,28 +146897,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [47890] = 6, + [47840] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, - anon_sym_Function, - STATE(3002), 1, - sym__function_builtin_identifier, - STATE(1627), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(968), 10, + ACTIONS(1051), 1, + anon_sym_SLASH, + STATE(663), 1, + sym_multiplicative_operator, + STATE(1662), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1054), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(590), 12, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(966), 25, + ACTIONS(588), 21, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142288,11 +146937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -142300,17 +146945,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [47943] = 6, + [47895] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3929), 1, anon_sym_Function, - STATE(3002), 1, + STATE(3077), 1, sym__function_builtin_identifier, - STATE(1627), 2, + STATE(1665), 2, aux_sym__function_type_tails, sym__function_type_tail, - ACTIONS(974), 10, + ACTIONS(1039), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -142318,14 +146963,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(972), 25, - anon_sym_LBRACE, + ACTIONS(1037), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142341,20 +146987,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [47996] = 5, + [47948] = 4, ACTIONS(3), 1, sym_comment, - STATE(622), 1, - sym_shift_operator, - STATE(1628), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 11, + STATE(1710), 1, + sym__type_dot_identifier, + ACTIONS(1113), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -142366,7 +147009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(989), 26, + ACTIONS(1111), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142392,37 +147035,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [48047] = 7, + [47997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 1, - anon_sym_GT_GT, - STATE(671), 1, - sym_shift_operator, - STATE(1632), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(2104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(598), 12, + ACTIONS(3931), 1, + anon_sym_Function, + STATE(3077), 1, + sym__function_builtin_identifier, + STATE(1665), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1032), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(596), 22, - anon_sym_LBRACE, + ACTIONS(1030), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142430,40 +147071,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [48102] = 6, + [48050] = 30, ACTIONS(3), 1, sym_comment, - STATE(668), 1, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3860), 1, + anon_sym_PIPE, + ACTIONS(3862), 1, + anon_sym_CARET, + ACTIONS(3864), 1, + anon_sym_AMP, + ACTIONS(3936), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3938), 1, + anon_sym_QMARK, + ACTIONS(3940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3942), 1, + anon_sym_AMP_AMP, + ACTIONS(3944), 1, + sym_equality_operator, + ACTIONS(3946), 1, + anon_sym_DOT_DOT, + ACTIONS(3948), 1, + anon_sym_async, + STATE(711), 1, + sym_multiplicative_operator, + STATE(714), 1, sym_additive_operator, - STATE(1633), 1, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, + aux_sym_shift_expression_repeat1, + STATE(2216), 1, aux_sym_additive_expression_repeat1, - ACTIONS(993), 2, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2395), 1, + aux_sym__if_null_expression, + STATE(2397), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2398), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(610), 11, + STATE(2708), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(3934), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [48151] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1743), 1, + sym__type_dot_identifier, + ACTIONS(1113), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(608), 24, + ACTIONS(1111), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142487,38 +147198,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [48155] = 7, + [48200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1010), 1, - anon_sym_SLASH, - STATE(657), 1, - sym_multiplicative_operator, - STATE(1634), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1013), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(575), 12, + STATE(594), 1, + sym_additive_operator, + STATE(1668), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(594), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(573), 21, - anon_sym_LBRACE, + ACTIONS(592), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142528,22 +147237,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [48210] = 5, + [48253] = 5, ACTIONS(3), 1, sym_comment, - STATE(624), 1, - sym_multiplicative_operator, - STATE(1637), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 11, + ACTIONS(3950), 1, + anon_sym_DOT_DOT, + STATE(1669), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1079), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -142554,15 +147266,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1023), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1077), 23, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142577,15 +147288,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [48261] = 3, + [48304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 9, + ACTIONS(3953), 1, + anon_sym_Function, + STATE(3084), 1, + sym__function_builtin_identifier, + STATE(1684), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1045), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -142593,16 +147311,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1252), 30, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1043), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142618,39 +147334,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_AT, - anon_sym_export, - anon_sym_import, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [48308] = 7, + [48357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1010), 1, - anon_sym_SLASH, - STATE(624), 1, - sym_multiplicative_operator, - STATE(1637), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1013), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(575), 10, + ACTIONS(3929), 1, + anon_sym_Function, + STATE(3077), 1, + sym__function_builtin_identifier, + STATE(1665), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1045), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_DOT, - ACTIONS(573), 23, + ACTIONS(1043), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142667,164 +147376,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - sym_increment_operator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [48363] = 30, + [48410] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3788), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3790), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3792), 1, + ACTIONS(3864), 1, anon_sym_AMP, - ACTIONS(3875), 1, + ACTIONS(3936), 1, anon_sym_QMARK_QMARK, - ACTIONS(3877), 1, + ACTIONS(3938), 1, anon_sym_QMARK, - ACTIONS(3879), 1, + ACTIONS(3940), 1, anon_sym_PIPE_PIPE, - ACTIONS(3881), 1, + ACTIONS(3942), 1, anon_sym_AMP_AMP, - ACTIONS(3883), 1, + ACTIONS(3944), 1, sym_equality_operator, - ACTIONS(3885), 1, + ACTIONS(3946), 1, anon_sym_DOT_DOT, - ACTIONS(3887), 1, + ACTIONS(3957), 1, anon_sym_async, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, + STATE(2230), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2363), 1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2395), 1, aux_sym__if_null_expression, - STATE(2365), 1, + STATE(2397), 1, aux_sym_logical_or_expression_repeat1, - STATE(2366), 1, + STATE(2398), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2666), 2, + STATE(2707), 2, sym_cascade_section, aux_sym__expression_repeat1, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(3873), 6, + ACTIONS(3955), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [48464] = 30, + [48511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3788), 1, + ACTIONS(1585), 9, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3792), 1, anon_sym_AMP, - ACTIONS(3875), 1, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1583), 30, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, - ACTIONS(3877), 1, - anon_sym_QMARK, - ACTIONS(3879), 1, anon_sym_PIPE_PIPE, - ACTIONS(3881), 1, anon_sym_AMP_AMP, - ACTIONS(3883), 1, sym_equality_operator, - ACTIONS(3885), 1, - anon_sym_DOT_DOT, - ACTIONS(3891), 1, - anon_sym_async, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, - aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2363), 1, - aux_sym__if_null_expression, - STATE(2365), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2366), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1050), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2667), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(3889), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_AT, + anon_sym_export, + anon_sym_import, anon_sym_SEMI, - [48565] = 5, + [48558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 1, - anon_sym_DOT_DOT, - STATE(1623), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(998), 13, + STATE(663), 1, + sym_multiplicative_operator, + STATE(1662), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1086), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -142838,7 +147523,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(996), 23, + ACTIONS(1084), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142858,30 +147543,32 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [48616] = 6, + [48609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, - anon_sym_Function, - STATE(3000), 1, - sym__function_builtin_identifier, - STATE(1641), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(978), 8, + ACTIONS(3959), 1, + anon_sym_DOT_DOT, + STATE(1675), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1079), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(976), 27, + ACTIONS(1077), 25, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142898,31 +147585,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [48669] = 3, + [48660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 9, + STATE(591), 1, + sym_multiplicative_operator, + STATE(1655), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1086), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1220), 30, + ACTIONS(1084), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -142939,28 +147630,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_AT, - anon_sym_export, - anon_sym_import, anon_sym_SEMI, - [48716] = 5, + [48711] = 5, ACTIONS(3), 1, sym_comment, - STATE(671), 1, - sym_shift_operator, - STATE(1632), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 13, + STATE(594), 1, + sym_additive_operator, + STATE(1668), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -142971,14 +147658,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(989), 24, - anon_sym_LBRACE, + ACTIONS(1047), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142993,20 +147681,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [48767] = 5, + [48762] = 5, ACTIONS(3), 1, sym_comment, - STATE(657), 1, - sym_multiplicative_operator, - STATE(1634), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 13, + STATE(604), 1, + sym_shift_operator, + STATE(1661), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143017,14 +147704,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1023), 24, - anon_sym_LBRACE, + ACTIONS(1091), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143039,20 +147727,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [48818] = 5, + [48813] = 5, ACTIONS(3), 1, sym_comment, - STATE(668), 1, - sym_additive_operator, - STATE(1633), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 13, + ACTIONS(3962), 1, + anon_sym_DOT_DOT, + STATE(1675), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1072), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143063,14 +147751,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1003), 24, - anon_sym_LBRACE, + ACTIONS(1070), 25, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143085,23 +147774,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [48869] = 6, + [48864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_LT, - ACTIONS(1080), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1075), 11, + STATE(729), 1, + sym_additive_operator, + STATE(1660), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 13, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -143111,8 +147797,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(1073), 24, + ACTIONS(1047), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143137,10 +147824,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [48921] = 3, + [48915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 13, + STATE(592), 1, + sym_shift_operator, + STATE(1659), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143154,7 +147845,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1304), 25, + ACTIONS(1091), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143178,28 +147869,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [48967] = 3, + [48966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 15, + ACTIONS(1549), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, - anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1280), 23, + ACTIONS(1547), 30, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143216,40 +147900,138 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_AT, + anon_sym_export, + anon_sym_import, anon_sym_SEMI, - [49013] = 3, + [49013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 15, + ACTIONS(3953), 1, + anon_sym_Function, + STATE(3084), 1, + sym__function_builtin_identifier, + STATE(1684), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1039), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1037), 25, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [49066] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3965), 1, + anon_sym_Function, + STATE(3084), 1, + sym__function_builtin_identifier, + STATE(1684), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1032), 10, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1030), 25, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [49119] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1729), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(1145), 13, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1284), 23, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1143), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143263,13 +148045,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [49059] = 3, + [49167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 15, + STATE(1740), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143280,19 +148068,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1260), 23, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1125), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143306,21 +148089,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [49105] = 7, + [49215] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(1068), 1, anon_sym_LT, - ACTIONS(3899), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - STATE(1947), 1, + STATE(2030), 1, sym_parameter_type_list, - STATE(3446), 1, + STATE(3491), 1, sym_type_parameters, - ACTIONS(985), 7, + ACTIONS(1059), 7, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, @@ -143328,7 +148115,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(983), 27, + ACTIONS(1057), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143356,26 +148143,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [49159] = 3, + [49269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 15, - anon_sym_QMARK, + ACTIONS(3970), 1, anon_sym_LT, + STATE(2021), 1, + sym_type_arguments, + STATE(2035), 1, + sym__type_args, + ACTIONS(1059), 7, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_is, - anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1300), 23, + ACTIONS(1057), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143392,19 +148177,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [49205] = 4, + [49321] = 4, ACTIONS(3), 1, sym_comment, - STATE(1660), 1, + STATE(1698), 1, aux_sym__if_null_expression, - ACTIONS(1097), 11, + ACTIONS(1127), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143416,7 +148206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1095), 26, + ACTIONS(1125), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143443,12 +148233,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49253] = 4, + [49369] = 4, ACTIONS(3), 1, sym_comment, - STATE(1672), 1, + STATE(1699), 1, aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 11, + ACTIONS(1123), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143460,7 +148250,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1087), 26, + ACTIONS(1121), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143487,12 +148277,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49301] = 4, + [49417] = 4, ACTIONS(3), 1, sym_comment, - STATE(1661), 1, + STATE(1700), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 11, + ACTIONS(1119), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143504,7 +148294,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1083), 26, + ACTIONS(1117), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143531,12 +148321,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49349] = 4, + [49465] = 6, ACTIONS(3), 1, sym_comment, - STATE(1662), 1, + ACTIONS(1137), 1, + anon_sym_LT, + ACTIONS(1140), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1135), 11, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, + anon_sym_async, + ACTIONS(1133), 24, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [49517] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1701), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 11, + ACTIONS(1105), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143548,7 +148384,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1091), 26, + ACTIONS(1103), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143575,12 +148411,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49397] = 4, + [49565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1267), 15, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_is, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + sym_identifier, + ACTIONS(1265), 23, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [49611] = 4, ACTIONS(3), 1, sym_comment, - STATE(1663), 1, + STATE(1702), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 11, + ACTIONS(1145), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143592,7 +148471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1066), 26, + ACTIONS(1143), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143619,12 +148498,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49445] = 4, + [49659] = 4, ACTIONS(3), 1, sym_comment, - STATE(1664), 1, + STATE(1703), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 11, + ACTIONS(1097), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143636,7 +148515,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1062), 26, + ACTIONS(1095), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143663,24 +148542,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49493] = 6, + [49707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 1, - anon_sym_LT, - STATE(1932), 1, - sym__type_args, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(985), 7, + ACTIONS(1423), 15, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(983), 28, + anon_sym_else, + sym_identifier, + ACTIONS(1421), 23, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143697,26 +148578,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, + sym_increment_operator, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [49545] = 5, + [49753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 1, + ACTIONS(3972), 1, anon_sym_QMARK_QMARK, - STATE(1660), 1, + STATE(1698), 1, aux_sym__if_null_expression, - ACTIONS(1107), 11, + ACTIONS(1160), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143728,7 +148604,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1105), 25, + ACTIONS(1158), 25, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143754,14 +148630,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49595] = 5, + [49803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(3975), 1, + anon_sym_PIPE_PIPE, + STATE(1699), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 11, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(572), 25, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, anon_sym_AMP_AMP, - STATE(1661), 1, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [49853] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_AMP_AMP, + STATE(1700), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 11, + ACTIONS(578), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143773,7 +148694,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(584), 25, + ACTIONS(576), 25, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143799,14 +148720,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49645] = 5, + [49903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(3981), 1, anon_sym_PIPE, - STATE(1662), 1, + STATE(1701), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 10, + ACTIONS(610), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143817,7 +148738,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(569), 26, + ACTIONS(608), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143844,12 +148765,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49695] = 5, + [49953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3912), 1, + ACTIONS(3984), 1, anon_sym_CARET, - STATE(1663), 1, + STATE(1702), 1, aux_sym_bitwise_xor_expression_repeat1, ACTIONS(606), 11, anon_sym_QMARK, @@ -143889,14 +148810,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49745] = 5, + [50003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3915), 1, + ACTIONS(3987), 1, anon_sym_AMP, - STATE(1664), 1, + STATE(1703), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 10, + ACTIONS(602), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143907,7 +148828,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(565), 26, + ACTIONS(600), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143934,12 +148855,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [49795] = 4, + [50053] = 3, ACTIONS(3), 1, sym_comment, - STATE(1687), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 13, + ACTIONS(1455), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143953,7 +148872,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1095), 24, + ACTIONS(1453), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -143977,11 +148896,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [49843] = 3, + [50099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 15, + ACTIONS(1311), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -143992,12 +148912,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - sym_identifier, - ACTIONS(1300), 23, + ACTIONS(1309), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144015,16 +148933,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [49889] = 3, + [50145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 15, + ACTIONS(1303), 15, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144040,7 +148960,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_async, sym_identifier, - ACTIONS(1284), 23, + ACTIONS(1301), 23, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144064,10 +148984,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [49935] = 3, + [50191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 15, + ACTIONS(3245), 1, + anon_sym_Function, + ACTIONS(1226), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144078,12 +149000,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - sym_identifier, - ACTIONS(1280), 23, + ACTIONS(1224), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144101,18 +149021,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [49981] = 4, + [50239] = 3, ACTIONS(3), 1, sym_comment, - STATE(1688), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 13, + ACTIONS(1455), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144123,14 +149042,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1087), 24, - anon_sym_LBRACE, + ACTIONS(1453), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144145,18 +149065,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [50029] = 4, + [50285] = 3, ACTIONS(3), 1, sym_comment, - STATE(1691), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 13, + ACTIONS(1311), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144167,14 +149085,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1083), 24, - anon_sym_LBRACE, + ACTIONS(1309), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144189,18 +149108,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [50077] = 4, + [50331] = 3, ACTIONS(3), 1, sym_comment, - STATE(1692), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 13, + ACTIONS(1411), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144211,14 +149128,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1091), 24, - anon_sym_LBRACE, + ACTIONS(1409), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144233,20 +149151,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [50125] = 5, + [50377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 1, - anon_sym_PIPE_PIPE, - STATE(1672), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 11, + ACTIONS(1343), 15, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144257,8 +149171,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(588), 25, + anon_sym_else, + sym_identifier, + ACTIONS(1341), 23, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144267,6 +149185,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -144278,18 +149197,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [50175] = 4, + [50423] = 3, ACTIONS(3), 1, sym_comment, - STATE(1693), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 13, + ACTIONS(1303), 15, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144300,14 +149214,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1066), 24, - anon_sym_LBRACE, + anon_sym_else, + sym_identifier, + ACTIONS(1301), 23, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144321,21 +149240,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, anon_sym_SEMI, - [50223] = 4, + [50469] = 6, ACTIONS(3), 1, sym_comment, - STATE(1694), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 13, - anon_sym_QMARK, + ACTIONS(1413), 1, + sym_identifier, + ACTIONS(1262), 2, anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 12, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -144344,10 +149265,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, + anon_sym_as, + anon_sym_else, + ACTIONS(1255), 20, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_DOT_DOT, + anon_sym_SEMI, + [50521] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3990), 1, + anon_sym_LT, + STATE(1995), 1, + sym__type_args, + STATE(2001), 1, + sym_type_arguments, + ACTIONS(1059), 9, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1062), 24, + ACTIONS(1057), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144361,21 +149322,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [50271] = 3, + [50573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 11, + ACTIONS(1557), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144387,7 +149350,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1138), 27, + ACTIONS(1555), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144415,30 +149378,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [50317] = 4, + [50619] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_Function, - ACTIONS(1442), 13, - anon_sym_QMARK, + ACTIONS(1068), 1, anon_sym_LT, + ACTIONS(3992), 1, + anon_sym_LPAREN, + STATE(1999), 1, + sym_parameter_type_list, + STATE(3485), 1, + sym_type_parameters, + ACTIONS(1059), 9, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1440), 24, + ACTIONS(1057), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144448,21 +149412,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [50365] = 3, + [50673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 11, + ACTIONS(1267), 15, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144473,8 +149439,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(1150), 27, + anon_sym_else, + sym_identifier, + ACTIONS(1265), 23, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144495,17 +149465,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [50411] = 3, + [50719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 11, + ACTIONS(1459), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144516,15 +149482,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1154), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1457), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144539,16 +149504,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [50457] = 3, + [50765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 11, + ACTIONS(1463), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144559,15 +149525,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1158), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1461), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144582,18 +149547,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [50503] = 4, + [50811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_Function, - ACTIONS(1442), 11, + ACTIONS(1467), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144604,15 +149568,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1440), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1465), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144627,22 +149590,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [50551] = 6, + [50857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_LT, - ACTIONS(1080), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1075), 9, + ACTIONS(1355), 11, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -144651,7 +149611,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - ACTIONS(1073), 26, + anon_sym_DOT, + ACTIONS(1353), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144677,27 +149638,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [50603] = 6, + [50903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3921), 1, - anon_sym_LT, - STATE(1980), 1, - sym__type_args, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(985), 9, + ACTIONS(1479), 13, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(983), 26, + ACTIONS(1477), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144711,11 +149671,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -144724,31 +149683,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [50655] = 7, + [50949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, - anon_sym_LT, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(1974), 1, - sym_parameter_type_list, - STATE(3447), 1, - sym_type_parameters, - ACTIONS(985), 9, + ACTIONS(1351), 11, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_as, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - ACTIONS(983), 25, - anon_sym_LBRACE, + ACTIONS(1349), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144758,23 +149715,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [50709] = 3, + [50995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 13, + ACTIONS(1495), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144788,7 +149743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1138), 25, + ACTIONS(1493), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144814,10 +149769,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [50755] = 3, + [51041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 15, + ACTIONS(1509), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144828,12 +149783,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - sym_identifier, - ACTIONS(1260), 23, + ACTIONS(1507), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144851,16 +149804,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [50801] = 3, + [51087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 13, + STATE(1733), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144874,7 +149831,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1150), 25, + ACTIONS(1117), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -144898,16 +149855,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [50847] = 5, + [51135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 1, - anon_sym_QMARK_QMARK, - STATE(1687), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 13, + ACTIONS(1343), 15, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -144918,14 +149870,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1105), 23, + sym_identifier, + ACTIONS(1341), 23, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -144938,26 +149893,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [50897] = 5, + [51181] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, - anon_sym_PIPE_PIPE, - STATE(1688), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 13, + ACTIONS(3994), 1, + anon_sym_AMP, + STATE(1728), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(602), 12, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -144966,12 +149919,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(588), 23, + ACTIONS(600), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -144990,10 +149944,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [50947] = 3, + [51231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 11, + ACTIONS(3997), 1, + anon_sym_CARET, + STATE(1729), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(606), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145004,22 +149962,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1146), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(604), 23, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_STAR, @@ -145027,66 +149983,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, - anon_sym_SEMI, - [50993] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 1, - sym_identifier, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 12, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_is, - anon_sym_as, - anon_sym_else, - ACTIONS(1182), 20, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [51045] = 5, + [51281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, - anon_sym_AMP_AMP, - STATE(1691), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 13, + ACTIONS(1557), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145100,13 +150006,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(584), 23, + ACTIONS(1555), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -145123,15 +150030,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [51095] = 5, + [51327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3934), 1, + ACTIONS(4000), 1, anon_sym_PIPE, - STATE(1692), 1, + STATE(1731), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 12, + ACTIONS(610), 12, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145144,7 +150052,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(569), 24, + ACTIONS(608), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145169,14 +150077,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [51145] = 5, + [51377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 1, - anon_sym_CARET, - STATE(1693), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(606), 13, + STATE(1731), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1105), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145190,7 +150096,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(604), 23, + ACTIONS(1103), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145201,6 +150107,7 @@ static uint16_t ts_small_parse_table[] = { sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_STAR, @@ -145214,18 +150121,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [51195] = 5, + [51425] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, - anon_sym_AMP, - STATE(1694), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 12, + ACTIONS(4003), 1, + anon_sym_AMP_AMP, + STATE(1733), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -145234,14 +150142,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(565), 24, + ACTIONS(576), 23, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -145259,10 +150166,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [51245] = 3, + [51475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 13, + ACTIONS(4006), 1, + anon_sym_PIPE_PIPE, + STATE(1734), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145276,13 +150187,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1146), 25, + ACTIONS(572), 23, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -145300,12 +150210,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [51291] = 3, + [51525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 11, + STATE(1728), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1097), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145316,15 +150227,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1120), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1095), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145339,18 +150249,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [51337] = 3, + [51573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 13, - anon_sym_QMARK, + ACTIONS(1137), 1, anon_sym_LT, + ACTIONS(1140), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1135), 9, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -145359,14 +150274,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1120), 25, - anon_sym_LBRACE, + ACTIONS(1133), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145381,17 +150296,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [51383] = 3, + [51625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 11, + ACTIONS(1479), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145403,7 +150316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1162), 27, + ACTIONS(1477), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145431,10 +150344,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [51429] = 3, + [51671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 13, + STATE(1734), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1123), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145448,7 +150363,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1364), 25, + ACTIONS(1121), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145472,22 +150387,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [51475] = 6, + [51719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, - sym_identifier, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 12, + ACTIONS(1459), 11, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -145496,12 +150402,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, - anon_sym_as, - anon_sym_async, - ACTIONS(1182), 20, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1457), 27, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145515,15 +150424,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [51527] = 3, + [51765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 13, + ACTIONS(4009), 1, + anon_sym_QMARK_QMARK, + STATE(1740), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145537,12 +150452,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1348), 25, + ACTIONS(1158), 23, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -145561,12 +150475,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [51573] = 3, + [51815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 13, + ACTIONS(1463), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145577,14 +150490,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1154), 25, - anon_sym_LBRACE, + ACTIONS(1461), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145599,17 +150513,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [51619] = 3, + [51861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 13, + ACTIONS(1423), 15, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145620,10 +150533,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1158), 25, + sym_identifier, + ACTIONS(1421), 23, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145641,18 +150556,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [51665] = 3, + [51907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 11, + ACTIONS(1411), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145663,15 +150576,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1324), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1409), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145686,16 +150598,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [51711] = 3, + [51953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 13, + ACTIONS(1467), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145706,14 +150619,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1344), 25, - anon_sym_LBRACE, + ACTIONS(1465), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145728,17 +150642,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [51757] = 3, + [51999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 11, + ACTIONS(1553), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145750,7 +150663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1348), 27, + ACTIONS(1551), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145778,10 +150691,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [51803] = 3, + [52045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 11, + ACTIONS(1495), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145793,7 +150706,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1134), 27, + ACTIONS(1493), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145821,10 +150734,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [51849] = 3, + [52091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 13, + ACTIONS(1553), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145838,7 +150751,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1134), 25, + ACTIONS(1551), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145864,10 +150777,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [51895] = 3, + [52137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 11, + ACTIONS(3245), 1, + anon_sym_Function, + ACTIONS(1226), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145879,7 +150794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1304), 27, + ACTIONS(1224), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -145905,14 +150820,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [51941] = 3, + [52185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 11, - anon_sym_QMARK, + ACTIONS(1413), 1, + sym_identifier, + ACTIONS(1262), 2, anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 12, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -145921,15 +150843,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1364), 27, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_is, + anon_sym_as, + anon_sym_async, + ACTIONS(1255), 20, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145943,17 +150862,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [51987] = 3, + [52237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 11, + ACTIONS(1355), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -145964,15 +150881,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1344), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1353), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145987,16 +150903,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [52033] = 3, + [52283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 13, + ACTIONS(1351), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146010,7 +150927,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1324), 25, + ACTIONS(1349), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146036,10 +150953,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [52079] = 3, + [52329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 13, + ACTIONS(1509), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146050,14 +150967,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1162), 25, - anon_sym_LBRACE, + ACTIONS(1507), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146072,17 +150990,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [52125] = 3, + [52375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 11, + ACTIONS(1218), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146094,7 +151011,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1264), 26, + ACTIONS(1216), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146121,18 +151038,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [52170] = 5, + [52420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1186), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 11, + ACTIONS(1291), 11, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -146141,11 +151052,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(1182), 21, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1289), 26, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146160,15 +151075,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [52219] = 3, + [52465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 11, + ACTIONS(1327), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146180,7 +151095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1178), 26, + ACTIONS(1325), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146207,86 +151122,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [52264] = 27, + [52510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3804), 1, - anon_sym_PIPE, - ACTIONS(3806), 1, - anon_sym_CARET, - ACTIONS(3808), 1, - anon_sym_AMP, - ACTIONS(3845), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(1573), 13, anon_sym_QMARK, - ACTIONS(3849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3851), 1, - anon_sym_AMP_AMP, - ACTIONS(3853), 1, - sym_equality_operator, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, - sym_shift_operator, - STATE(2171), 1, - aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2362), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2367), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2370), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(588), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [52357] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 1, - sym_increment_operator, - ACTIONS(1199), 2, anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 11, - anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -146296,10 +151137,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(1182), 20, + ACTIONS(1571), 24, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146312,16 +151156,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [52408] = 3, + [52555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 13, + ACTIONS(1210), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146332,14 +151178,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1252), 24, - anon_sym_LBRACE, + ACTIONS(1208), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146354,145 +151201,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [52453] = 27, + [52600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3804), 1, + ACTIONS(1569), 13, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3806), 1, - anon_sym_CARET, - ACTIONS(3808), 1, anon_sym_AMP, - ACTIONS(3845), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1567), 24, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_QMARK, - ACTIONS(3849), 1, anon_sym_PIPE_PIPE, - ACTIONS(3851), 1, anon_sym_AMP_AMP, - ACTIONS(3853), 1, sym_equality_operator, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, - sym_shift_operator, - STATE(2171), 1, - aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2362), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2367), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2370), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(584), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [52546] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_QMARK, - ACTIONS(3804), 1, - anon_sym_PIPE, - ACTIONS(3806), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, - ACTIONS(3808), 1, - anon_sym_AMP, - ACTIONS(3943), 1, - sym_equality_operator, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, - sym_shift_operator, - STATE(2171), 1, - aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2362), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2367), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2370), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(577), 11, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [52633] = 3, + [52645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 13, + ACTIONS(1491), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146506,7 +151265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1248), 24, + ACTIONS(1489), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146531,10 +151290,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [52678] = 3, + [52690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 11, + ACTIONS(1214), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146546,7 +151305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1300), 26, + ACTIONS(1212), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146573,86 +151332,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [52723] = 17, + [52735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2079), 1, - anon_sym_DOT, - ACTIONS(2081), 1, - anon_sym_QMARK_DOT, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_LT, - STATE(539), 1, - sym__assignment_operator, - STATE(871), 1, - sym_unconditional_assignable_selector, - STATE(890), 1, - sym_arguments, - STATE(1448), 1, - sym__cascade_assignment_section, - STATE(1911), 1, - sym__type_args, - STATE(2264), 1, - sym_assignable_selector, - STATE(3516), 1, - sym_type_arguments, - STATE(1853), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - STATE(2283), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(681), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - ACTIONS(3948), 13, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [52796] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3954), 1, - anon_sym_DOT_DOT, - STATE(1725), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(1018), 10, + ACTIONS(1257), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_as, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - ACTIONS(1016), 24, - anon_sym_LBRACE, + ACTIONS(1255), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146662,35 +151364,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [52845] = 3, + [52780] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 13, + STATE(633), 1, + sym_shift_operator, + STATE(1900), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1244), 24, + ACTIONS(1091), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146704,10 +151406,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -146715,24 +151418,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [52890] = 3, + [52829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 13, + STATE(630), 1, + sym_additive_operator, + STATE(1803), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1236), 24, + ACTIONS(1047), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146746,10 +151450,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -146757,35 +151462,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [52935] = 7, + [52878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1010), 1, - anon_sym_SLASH, - STATE(601), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(1728), 1, + STATE(1806), 1, aux_sym_multiplicative_expression_repeat1, - ACTIONS(1013), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(575), 7, + ACTIONS(1086), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(573), 24, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1084), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146797,16 +151496,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [52988] = 3, + [52927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 11, + ACTIONS(1475), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146818,7 +151521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1202), 26, + ACTIONS(1473), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146845,19 +151548,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [53033] = 5, + [52972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_increment_operator, - anon_sym_QMARK_DOT, - ACTIONS(1184), 11, + ACTIONS(1419), 11, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -146866,11 +151562,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(1182), 20, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1417), 26, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146883,60 +151583,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [53082] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1210), 7, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1213), 10, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(1206), 14, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [53131] = 3, + [53017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 11, + ACTIONS(1483), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146948,7 +151605,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1332), 26, + ACTIONS(1481), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -146975,10 +151632,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [53176] = 3, + [53062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 11, + ACTIONS(1206), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -146989,15 +151646,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1232), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1204), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147012,17 +151668,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [53221] = 3, + [53107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 13, - anon_sym_QMARK, + ACTIONS(1500), 2, anon_sym_LT, + anon_sym_DOT, + ACTIONS(1497), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 9, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -147031,14 +151694,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + ACTIONS(1255), 23, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [53156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + sym_identifier, + ACTIONS(1262), 2, + anon_sym_LT, anon_sym_DOT, + ACTIONS(1259), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 10, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_async, - ACTIONS(1232), 24, + ACTIONS(1255), 21, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147048,45 +151753,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [53266] = 7, + [53207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 1, - anon_sym_GT_GT, - STATE(599), 1, - sym_shift_operator, - STATE(1735), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(2104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(598), 7, + ACTIONS(1413), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(596), 25, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1415), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147094,40 +151792,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [53319] = 3, + [53252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 16, + ACTIONS(1487), 11, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1304), 21, - anon_sym_LBRACE, + ACTIONS(1485), 26, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -147137,20 +151832,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [53364] = 3, + [53297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 13, + ACTIONS(1267), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147161,14 +151861,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1220), 24, - anon_sym_LBRACE, + ACTIONS(1265), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147183,36 +151884,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [53409] = 7, + [53342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1010), 1, - anon_sym_SLASH, - STATE(579), 1, - sym_multiplicative_operator, - STATE(1738), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1013), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(575), 9, - anon_sym_QMARK, + ACTIONS(1249), 3, anon_sym_LT, anon_sym_GT, + anon_sym_as, + ACTIONS(1252), 3, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + ACTIONS(1247), 10, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, anon_sym_async, - ACTIONS(573), 22, + ACTIONS(1245), 21, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147221,42 +151920,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_is, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [53462] = 3, + [53391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 13, + ACTIONS(1529), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - sym_identifier, - ACTIONS(1300), 24, - anon_sym_LBRACE, + ACTIONS(1527), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147266,39 +151965,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [53507] = 6, + [53436] = 3, ACTIONS(3), 1, sym_comment, - STATE(582), 1, - sym_additive_operator, - STATE(1740), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(3957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(610), 10, + ACTIONS(1359), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(608), 23, + ACTIONS(1357), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147315,6 +152009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -147322,33 +152017,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [53558] = 7, + [53481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 1, - anon_sym_GT_GT, - STATE(583), 1, - sym_shift_operator, - STATE(1741), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(2104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(598), 9, + ACTIONS(1513), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_as, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - ACTIONS(596), 23, - anon_sym_LBRACE, + ACTIONS(1511), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147356,22 +152047,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [53611] = 3, + [53526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 11, + ACTIONS(1565), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147383,7 +152074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1284), 26, + ACTIONS(1563), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147410,10 +152101,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [53656] = 3, + [53571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 11, + ACTIONS(1363), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147424,15 +152115,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1280), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1361), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147447,15 +152137,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [53701] = 3, + [53616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 11, + ACTIONS(1367), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147466,15 +152157,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1376), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1365), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147489,29 +152179,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [53746] = 3, + [53661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 13, + ACTIONS(1371), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - sym_identifier, - ACTIONS(1284), 24, + ACTIONS(1369), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147525,21 +152216,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [53791] = 3, + [53706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 13, + ACTIONS(1375), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147553,7 +152244,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1376), 24, + ACTIONS(1373), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147578,24 +152269,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [53836] = 3, + [53751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 13, + ACTIONS(1379), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - sym_identifier, - ACTIONS(1280), 24, + ACTIONS(1377), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147609,21 +152300,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [53881] = 3, + [53796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 13, + ACTIONS(1383), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147637,7 +152328,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1116), 24, + ACTIONS(1381), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147662,10 +152353,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [53926] = 3, + [53841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 13, + ACTIONS(1387), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147679,7 +152370,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1368), 24, + ACTIONS(1385), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147704,10 +152395,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [53971] = 3, + [53886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 13, + ACTIONS(1391), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147721,7 +152412,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1356), 24, + ACTIONS(1389), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147746,12 +152437,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54016] = 3, + [53931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 13, - anon_sym_QMARK, + ACTIONS(1262), 2, anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_increment_operator, + anon_sym_QMARK_DOT, + ACTIONS(1257), 9, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -147760,14 +152458,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1352), 24, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(1255), 22, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147780,18 +152476,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [54061] = 3, + [53980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 13, + ACTIONS(1303), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147802,14 +152495,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1340), 24, - anon_sym_LBRACE, + ACTIONS(1301), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147824,16 +152518,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [54106] = 3, + [54025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 13, + ACTIONS(686), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147847,7 +152540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1336), 24, + ACTIONS(684), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147872,10 +152565,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54151] = 3, + [54070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 13, + ACTIONS(743), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147889,7 +152582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1320), 24, + ACTIONS(741), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147914,10 +152607,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54196] = 3, + [54115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 13, + ACTIONS(1271), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -147931,7 +152624,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1316), 24, + ACTIONS(1269), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -147956,52 +152649,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 16, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1158), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_SEMI, - [54286] = 3, + [54160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 13, + ACTIONS(1525), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148015,7 +152666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(637), 24, + ACTIONS(1523), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148040,10 +152691,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54331] = 3, + [54205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 13, + ACTIONS(1343), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148054,14 +152705,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1178), 24, - anon_sym_LBRACE, + ACTIONS(1341), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148076,18 +152728,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [54376] = 3, + [54250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 11, - anon_sym_QMARK, + ACTIONS(1415), 1, + sym_increment_operator, + ACTIONS(1262), 2, anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 9, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -148096,14 +152755,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1388), 26, + ACTIONS(1255), 22, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -148117,17 +152773,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [54421] = 3, + [54301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 11, + ACTIONS(1395), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148138,15 +152792,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1116), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1393), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148161,15 +152814,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [54466] = 3, + [54346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 11, + ACTIONS(1537), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148181,7 +152835,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1356), 26, + ACTIONS(1535), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148208,10 +152862,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [54511] = 3, + [54391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 11, + ACTIONS(1399), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148222,15 +152876,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1352), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1397), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148245,15 +152898,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [54556] = 3, + [54436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 13, + ACTIONS(1427), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148267,7 +152921,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1308), 24, + ACTIONS(1425), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148292,10 +152946,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54601] = 3, + [54481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 11, + ACTIONS(1431), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148306,15 +152960,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1340), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1429), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148329,15 +152982,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [54646] = 3, + [54526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 13, + ACTIONS(1435), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148351,7 +153005,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1296), 24, + ACTIONS(1433), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148376,10 +153030,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54691] = 3, + [54571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 13, + ACTIONS(1541), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148390,14 +153044,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1292), 24, - anon_sym_LBRACE, + ACTIONS(1539), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148412,16 +153067,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [54736] = 3, + [54616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 13, + ACTIONS(1589), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148435,7 +153089,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1288), 24, + ACTIONS(1587), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148460,24 +153114,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54781] = 3, + [54661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 13, + STATE(630), 1, + sym_additive_operator, + STATE(1803), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(4012), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(594), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1276), 24, + ACTIONS(592), 23, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148494,7 +153152,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -148502,10 +153159,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54826] = 3, + [54712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 11, + ACTIONS(915), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148516,15 +153173,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1336), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(913), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148539,34 +153195,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [54871] = 3, + [54757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 16, + ACTIONS(1451), 11, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1154), 21, - anon_sym_LBRACE, + ACTIONS(1449), 26, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -148576,34 +153228,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [54916] = 3, + [54802] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 13, + ACTIONS(1051), 1, + anon_sym_SLASH, + STATE(593), 1, + sym_multiplicative_operator, + STATE(1806), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1054), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(590), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1463), 24, + ACTIONS(588), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148617,10 +153280,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -148628,24 +153289,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [54961] = 5, + [54855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_DOT_DOT, - STATE(1772), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(1018), 8, + ACTIONS(1391), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1016), 26, + ACTIONS(1389), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148662,20 +153321,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [55010] = 3, + [54900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(809), 13, + ACTIONS(1533), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148689,7 +153348,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(807), 24, + ACTIONS(1531), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148714,10 +153373,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55055] = 3, + [54945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 11, + ACTIONS(1443), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148728,15 +153387,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1228), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1441), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148751,15 +153409,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [55100] = 3, + [54990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 11, + ACTIONS(1447), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148770,15 +153429,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1320), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1445), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148793,29 +153451,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [55145] = 3, + [55035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 13, + ACTIONS(1573), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, - anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1280), 24, + ACTIONS(1571), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148832,18 +153489,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [55190] = 3, + [55080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 11, + ACTIONS(1569), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148855,7 +153514,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1316), 26, + ACTIONS(1567), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148882,24 +153541,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [55235] = 3, + [55125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 13, + ACTIONS(1491), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1489), 26, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [55170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 13, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, anon_sym_DOT, anon_sym_async, - sym_identifier, - ACTIONS(1260), 24, + ACTIONS(1449), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148913,21 +153614,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55280] = 3, + [55215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1144), 13, + ACTIONS(1347), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -148941,7 +153642,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1142), 24, + ACTIONS(1345), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -148966,31 +153667,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55325] = 3, + [55260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 13, + ACTIONS(1549), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1284), 24, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1547), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149000,18 +153698,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [55370] = 3, + [55305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 13, + ACTIONS(1565), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149025,7 +153726,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1392), 24, + ACTIONS(1563), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149050,52 +153751,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55415] = 3, + [55350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 16, + ACTIONS(1487), 13, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1344), 21, + anon_sym_async, + ACTIONS(1485), 24, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [55460] = 3, + [55395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 13, + ACTIONS(1331), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149109,7 +153810,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1268), 24, + ACTIONS(1329), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149134,25 +153835,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55505] = 5, + [55440] = 3, ACTIONS(3), 1, sym_comment, - STATE(579), 1, - sym_multiplicative_operator, - STATE(1738), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 10, + ACTIONS(1577), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1023), 25, + ACTIONS(1575), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149166,11 +153866,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -149178,10 +153877,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55554] = 3, + [55485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 13, + ACTIONS(1403), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149195,7 +153894,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1264), 24, + ACTIONS(1401), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149220,25 +153919,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55599] = 5, + [55530] = 3, ACTIONS(3), 1, sym_comment, - STATE(582), 1, - sym_additive_operator, - STATE(1740), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 10, + ACTIONS(1529), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1003), 25, + ACTIONS(1527), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149252,11 +153950,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -149264,25 +153961,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55648] = 5, + [55575] = 3, ACTIONS(3), 1, sym_comment, - STATE(583), 1, - sym_shift_operator, - STATE(1741), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 10, + ACTIONS(1222), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1220), 26, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [55620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1585), 13, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(989), 25, + ACTIONS(1583), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149296,11 +154034,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -149308,28 +154045,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55697] = 4, + [55665] = 3, ACTIONS(3), 1, sym_comment, - STATE(1946), 1, - sym__type_dot_identifier, - ACTIONS(1060), 8, + ACTIONS(1323), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1058), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1321), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149339,22 +154076,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [55710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1319), 13, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1317), 24, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [55744] = 3, + [55755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 13, + ACTIONS(1505), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149368,7 +154146,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1388), 24, + ACTIONS(1503), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149393,10 +154171,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55789] = 3, + [55800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 11, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1415), 26, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [55845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 13, + ACTIONS(1307), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149410,7 +154230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1328), 24, + ACTIONS(1305), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149435,10 +154255,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55834] = 3, + [55890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 13, + ACTIONS(1210), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149452,7 +154272,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1400), 24, + ACTIONS(1208), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149477,12 +154297,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [55879] = 3, + [55935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 11, - anon_sym_QMARK, + ACTIONS(1262), 2, anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_increment_operator, + anon_sym_QMARK_DOT, + ACTIONS(1257), 11, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -149491,15 +154318,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1260), 26, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_as, + anon_sym_async, + ACTIONS(1255), 20, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149512,17 +154335,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [55924] = 3, + [55984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 11, + ACTIONS(1561), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149533,15 +154355,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1268), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1559), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149556,57 +154377,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [55969] = 3, + [56029] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 11, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(567), 1, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3876), 1, anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(4015), 1, + sym_equality_operator, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2406), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2412), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2415), 1, + aux_sym__if_null_expression, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(637), 26, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(565), 11, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [56014] = 3, + [56116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 13, + ACTIONS(1593), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149620,7 +154463,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1174), 24, + ACTIONS(1591), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149645,10 +154488,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [56059] = 3, + [56161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 11, + ACTIONS(1239), 1, + sym_increment_operator, + ACTIONS(1275), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149660,7 +154505,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1308), 26, + ACTIONS(1273), 25, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149680,17 +154525,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [56104] = 3, + [56208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 11, + ACTIONS(1581), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149701,15 +154545,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1296), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1579), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149724,15 +154567,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [56149] = 3, + [56253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 13, + ACTIONS(1299), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149746,7 +154590,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1404), 24, + ACTIONS(1297), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149771,34 +154615,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [56194] = 5, + [56298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 4, + ACTIONS(1295), 13, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1210), 7, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1213), 10, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1293), 24, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(1206), 16, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [56343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 11, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1231), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149806,8 +154680,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, anon_sym_as, @@ -149815,31 +154699,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [56243] = 3, + [56388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 13, + ACTIONS(1291), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1260), 24, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1289), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149849,18 +154730,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [56433] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1415), 1, + sym_increment_operator, + ACTIONS(1262), 2, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1259), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 11, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, + anon_sym_async, + ACTIONS(1255), 20, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_QMARK_DOT, + anon_sym_is, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [56288] = 3, + [56484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 13, + ACTIONS(1287), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149874,7 +154803,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1240), 24, + ACTIONS(1285), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149899,10 +154828,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [56333] = 3, + [56529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 11, + ACTIONS(1279), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -149914,7 +154843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1392), 26, + ACTIONS(1277), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -149941,82 +154870,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [56378] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(683), 1, - anon_sym_async, - ACTIONS(3952), 1, - anon_sym_LT, - ACTIONS(3963), 1, - anon_sym_LBRACK, - ACTIONS(3965), 1, - anon_sym_EQ, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(3973), 1, - anon_sym_QMARK_DOT, - STATE(463), 1, - sym__assignment_operator, - STATE(1757), 1, - sym__cascade_assignment_section, - STATE(1911), 1, - sym__type_args, - STATE(2269), 1, - sym_assignable_selector, - STATE(2360), 1, - sym_unconditional_assignable_selector, - STATE(2364), 1, - sym_arguments, - STATE(3345), 1, - sym_type_arguments, - STATE(1826), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - STATE(2297), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(681), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(3967), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [56455] = 3, + [56574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 13, + ACTIONS(1283), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, - anon_sym_as, anon_sym_DOT, - anon_sym_else, - sym_identifier, - ACTIONS(1300), 24, + ACTIONS(1281), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150033,18 +154902,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [56500] = 3, + [56619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 13, + ACTIONS(1283), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150058,7 +154929,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1216), 24, + ACTIONS(1281), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150083,10 +154954,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [56545] = 3, + [56664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 13, + ACTIONS(1279), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150100,7 +154971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1224), 24, + ACTIONS(1277), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150125,52 +154996,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [56590] = 3, + [56709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 11, - anon_sym_QMARK, + ACTIONS(1407), 6, anon_sym_LT, anon_sym_GT, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1249), 7, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1292), 26, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1252), 10, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + ACTIONS(1405), 14, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [56635] = 3, + [56758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 11, + ACTIONS(1315), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150182,7 +155055,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1288), 26, + ACTIONS(1313), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150209,29 +155082,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [56680] = 3, + [56803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 16, + STATE(2032), 1, + sym__type_dot_identifier, + ACTIONS(1113), 8, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1364), 21, - anon_sym_LBRACE, + ACTIONS(1111), 28, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -150241,6 +155108,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -150249,12 +155118,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [56725] = 3, + [56850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 11, + ACTIONS(1287), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150266,7 +155140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1400), 26, + ACTIONS(1285), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150293,10 +155167,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [56770] = 3, + [56895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 13, + ACTIONS(1257), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150310,7 +155184,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1332), 24, + ACTIONS(1255), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150335,10 +155209,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [56815] = 3, + [56940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 11, + ACTIONS(1423), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150350,7 +155224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1276), 26, + ACTIONS(1421), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150377,54 +155251,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [56860] = 3, + [56985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 11, - anon_sym_QMARK, + ACTIONS(1500), 2, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1404), 26, - anon_sym_RBRACE, + ACTIONS(1497), 3, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [56905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 13, + ACTIONS(1257), 11, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -150434,13 +155272,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_as, - anon_sym_DOT, anon_sym_async, - ACTIONS(1312), 24, + ACTIONS(1255), 21, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150455,16 +155290,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [56950] = 3, + [57034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 13, + ACTIONS(1206), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150475,14 +155309,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1228), 24, - anon_sym_LBRACE, + ACTIONS(1204), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150497,58 +155332,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [56995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 13, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1384), 24, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [57040] = 3, + [57079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 13, + ACTIONS(1233), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150562,7 +155354,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1408), 24, + ACTIONS(1231), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150587,10 +155379,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [57085] = 3, + [57124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 13, + ACTIONS(1335), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150604,7 +155396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1412), 24, + ACTIONS(1333), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150629,10 +155421,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [57130] = 3, + [57169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 13, + ACTIONS(1295), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150643,14 +155435,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1182), 24, - anon_sym_LBRACE, + ACTIONS(1293), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150665,16 +155458,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [57175] = 3, + [57214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 13, + ACTIONS(1299), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150685,14 +155477,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1416), 24, - anon_sym_LBRACE, + ACTIONS(1297), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150707,16 +155500,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [57220] = 3, + [57259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 11, + ACTIONS(1307), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150728,7 +155520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1459), 26, + ACTIONS(1305), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150755,10 +155547,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [57265] = 3, + [57304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 13, + ACTIONS(1319), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150769,14 +155561,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1420), 24, - anon_sym_LBRACE, + ACTIONS(1317), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150791,16 +155584,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [57310] = 3, + [57349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 13, + ACTIONS(1323), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150811,14 +155603,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1424), 24, - anon_sym_LBRACE, + ACTIONS(1321), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150833,16 +155626,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [57355] = 3, + [57394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 13, + ACTIONS(1237), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150856,7 +155648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1428), 24, + ACTIONS(1235), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -150881,10 +155673,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [57400] = 3, + [57439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 13, + ACTIONS(1331), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150895,14 +155687,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1432), 24, - anon_sym_LBRACE, + ACTIONS(1329), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150917,74 +155710,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [57445] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_async, - ACTIONS(3952), 1, - anon_sym_LT, - ACTIONS(3963), 1, - anon_sym_LBRACK, - ACTIONS(3965), 1, - anon_sym_EQ, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(3973), 1, - anon_sym_QMARK_DOT, - STATE(463), 1, - sym__assignment_operator, - STATE(1773), 1, - sym__cascade_assignment_section, - STATE(1911), 1, - sym__type_args, - STATE(2269), 1, - sym_assignable_selector, - STATE(2360), 1, - sym_unconditional_assignable_selector, - STATE(2364), 1, - sym_arguments, - STATE(3345), 1, - sym_type_arguments, - STATE(2261), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - STATE(2293), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(637), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - ACTIONS(3967), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [57522] = 3, + [57484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 11, + ACTIONS(1335), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -150996,7 +155730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1216), 26, + ACTIONS(1333), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151023,10 +155757,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [57567] = 3, + [57529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 11, + ACTIONS(1541), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151037,15 +155771,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1256), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1539), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151060,15 +155793,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [57612] = 3, + [57574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 11, + ACTIONS(1242), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151080,7 +155814,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1328), 26, + ACTIONS(1239), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151107,33 +155841,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [57657] = 6, + [57619] = 3, ACTIONS(3), 1, sym_comment, - STATE(600), 1, - sym_additive_operator, - STATE(1830), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(3957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(610), 8, + ACTIONS(1537), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(608), 25, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1535), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151146,28 +155875,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [57708] = 3, + [57664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 11, + ACTIONS(1303), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(1174), 26, + anon_sym_else, + sym_identifier, + ACTIONS(1301), 24, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151184,32 +155917,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [57753] = 3, + [57709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 11, + ACTIONS(1343), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(1360), 26, + anon_sym_else, + sym_identifier, + ACTIONS(1341), 24, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151226,23 +155959,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [57798] = 3, + [57754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 11, - anon_sym_QMARK, + ACTIONS(1249), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1252), 4, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_as, + ACTIONS(1247), 9, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, @@ -151251,7 +155988,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1372), 26, + ACTIONS(1245), 22, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151263,8 +156000,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -151272,16 +156007,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [57843] = 3, + [57803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 11, + ACTIONS(1521), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151292,15 +156025,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1455), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1519), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151315,15 +156047,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [57888] = 3, + [57848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 11, + ACTIONS(1222), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151334,15 +156067,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1479), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1220), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151357,15 +156089,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [57893] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(686), 1, + anon_sym_async, + ACTIONS(4018), 1, + anon_sym_LBRACK, + ACTIONS(4020), 1, + anon_sym_EQ, + ACTIONS(4024), 1, + anon_sym_LPAREN, + ACTIONS(4026), 1, + anon_sym_LT, + ACTIONS(4028), 1, + anon_sym_DOT, + ACTIONS(4030), 1, + anon_sym_QMARK_DOT, + STATE(411), 1, + sym__assignment_operator, + STATE(1804), 1, + sym__cascade_assignment_section, + STATE(2281), 1, + sym_assignable_selector, + STATE(2389), 1, + sym_arguments, + STATE(2402), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3413), 1, + sym_type_arguments, + STATE(2309), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + STATE(2315), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(684), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [57933] = 3, + ACTIONS(4022), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [57970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 11, + ACTIONS(1218), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151376,15 +156167,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1131), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1216), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151399,34 +156189,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [57978] = 3, + [58015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 11, + ACTIONS(4032), 1, + anon_sym_DOT_DOT, + STATE(1875), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1079), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1491), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1077), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151436,20 +156228,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [58023] = 3, + [58064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 11, + ACTIONS(1239), 1, + sym_increment_operator, + ACTIONS(1275), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151460,15 +156255,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1487), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1273), 23, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151481,17 +156275,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [58068] = 3, + [58111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 11, + ACTIONS(1561), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151503,7 +156297,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1475), 26, + ACTIONS(1559), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151530,10 +156324,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [58113] = 3, + [58156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 11, + ACTIONS(1581), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151545,7 +156339,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1112), 26, + ACTIONS(1579), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151572,10 +156366,122 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [58158] = 3, + [58201] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2164), 1, + anon_sym_DOT, + ACTIONS(2166), 1, + anon_sym_QMARK_DOT, + ACTIONS(4026), 1, + anon_sym_LT, + ACTIONS(4035), 1, + anon_sym_LBRACK, + ACTIONS(4039), 1, + anon_sym_LPAREN, + STATE(543), 1, + sym__assignment_operator, + STATE(905), 1, + sym_arguments, + STATE(939), 1, + sym_unconditional_assignable_selector, + STATE(1406), 1, + sym__cascade_assignment_section, + STATE(2293), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3447), 1, + sym_type_arguments, + STATE(754), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + STATE(2312), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(684), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + ACTIONS(4037), 13, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [58274] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1438), 13, + ACTIONS(2164), 1, + anon_sym_DOT, + ACTIONS(2166), 1, + anon_sym_QMARK_DOT, + ACTIONS(4026), 1, + anon_sym_LT, + ACTIONS(4035), 1, + anon_sym_LBRACK, + ACTIONS(4039), 1, + anon_sym_LPAREN, + STATE(543), 1, + sym__assignment_operator, + STATE(905), 1, + sym_arguments, + STATE(939), 1, + sym_unconditional_assignable_selector, + STATE(1491), 1, + sym__cascade_assignment_section, + STATE(2293), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3447), 1, + sym_type_arguments, + STATE(1879), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + STATE(2324), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(612), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + ACTIONS(4037), 13, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [58347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151586,14 +156492,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1436), 24, - anon_sym_LBRACE, + ACTIONS(1591), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151608,16 +156515,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [58203] = 3, + [58392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 13, + ACTIONS(1471), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151628,14 +156534,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1166), 24, - anon_sym_LBRACE, + ACTIONS(1469), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151650,30 +156557,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [58248] = 3, + [58437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 13, + ACTIONS(1267), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1447), 24, + sym_identifier, + ACTIONS(1265), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151687,21 +156593,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [58293] = 3, + [58482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 11, + ACTIONS(1585), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151713,7 +156619,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1408), 26, + ACTIONS(1583), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151740,28 +156646,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [58338] = 3, + [58527] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 13, + ACTIONS(1063), 1, + anon_sym_GT_GT, + STATE(741), 1, + sym_shift_operator, + STATE(1885), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(2181), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(598), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1451), 24, - anon_sym_LBRACE, + ACTIONS(596), 25, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151769,79 +156681,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [58383] = 5, + [58580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - ACTIONS(1213), 3, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - ACTIONS(1469), 10, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + STATE(743), 1, + sym_additive_operator, + STATE(1886), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(4012), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1467), 21, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [58432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 11, + ACTIONS(594), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1240), 26, + ACTIONS(592), 25, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151861,19 +156731,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [58477] = 4, + [58631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - sym_increment_operator, - ACTIONS(1126), 13, + ACTIONS(1327), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151887,7 +156754,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1124), 23, + ACTIONS(1325), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151904,6 +156771,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -151911,10 +156779,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [58524] = 3, + [58676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 11, + ACTIONS(1577), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -151926,7 +156794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1463), 26, + ACTIONS(1575), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -151953,64 +156821,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [58569] = 3, + [58721] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 13, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1051), 1, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1360), 24, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1889), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1054), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [58614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(809), 11, + ACTIONS(590), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(807), 26, + ACTIONS(588), 24, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152027,39 +156859,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [58659] = 3, + [58774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 11, + ACTIONS(1303), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(1412), 26, - anon_sym_RBRACE, + anon_sym_async, + sym_identifier, + ACTIONS(1301), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152069,81 +156898,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [58704] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2079), 1, - anon_sym_DOT, - ACTIONS(2081), 1, anon_sym_QMARK_DOT, - ACTIONS(3946), 1, - anon_sym_LBRACK, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_LT, - STATE(539), 1, - sym__assignment_operator, - STATE(871), 1, - sym_unconditional_assignable_selector, - STATE(890), 1, - sym_arguments, - STATE(1373), 1, - sym__cascade_assignment_section, - STATE(1911), 1, - sym__type_args, - STATE(2264), 1, - sym_assignable_selector, - STATE(3516), 1, - sym_type_arguments, - STATE(721), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - STATE(2278), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(637), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - ACTIONS(3948), 13, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [58777] = 5, + [58819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3975), 1, - anon_sym_DOT_DOT, - STATE(1772), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(998), 8, + ACTIONS(1343), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152151,15 +156920,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(996), 26, - anon_sym_RBRACE, + anon_sym_async, + sym_identifier, + ACTIONS(1341), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152174,15 +156945,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [58826] = 3, + [58864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1144), 11, + ACTIONS(1545), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152194,7 +156966,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1142), 26, + ACTIONS(1543), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152221,29 +156993,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [58871] = 3, + [58909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 11, + ACTIONS(1423), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - ACTIONS(1170), 26, - anon_sym_RBRACE, + anon_sym_async, + sym_identifier, + ACTIONS(1421), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152253,20 +157024,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [58916] = 3, + [58954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 11, + ACTIONS(1237), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152278,7 +157050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1416), 26, + ACTIONS(1235), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152305,52 +157077,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [58961] = 3, + [58999] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1420), 26, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3876), 1, + anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, + anon_sym_AMP, + ACTIONS(3917), 1, anon_sym_QMARK_QMARK, + ACTIONS(3919), 1, + anon_sym_QMARK, + ACTIONS(3921), 1, anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, anon_sym_AMP_AMP, + ACTIONS(3925), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2406), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2412), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2415), 1, + aux_sym__if_null_expression, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(576), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59006] = 3, + [59092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 11, + ACTIONS(1549), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152362,7 +157158,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1252), 26, + ACTIONS(1547), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152389,10 +157185,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59051] = 3, + [59137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 11, + ACTIONS(1517), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152404,7 +157200,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1248), 26, + ACTIONS(1515), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152431,10 +157227,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59096] = 3, + [59182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 11, + ACTIONS(1521), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152446,7 +157242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1224), 26, + ACTIONS(1519), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152473,10 +157269,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59141] = 3, + [59227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 13, + ACTIONS(1517), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152490,7 +157286,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1300), 24, + ACTIONS(1515), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152515,71 +157311,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [59186] = 3, + [59272] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(1063), 1, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1424), 26, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, + STATE(633), 1, + sym_shift_operator, + STATE(1900), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [59231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1485), 11, + ACTIONS(598), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1483), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(596), 23, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152587,22 +157345,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [59276] = 3, + [59325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 13, + ACTIONS(1513), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152616,7 +157374,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1372), 24, + ACTIONS(1511), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152641,22 +157399,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [59321] = 3, + [59370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 11, + ACTIONS(4041), 1, + anon_sym_DOT_DOT, + STATE(1946), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1072), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1244), 26, + ACTIONS(1070), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152673,32 +157433,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59366] = 3, + [59419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 11, + STATE(741), 1, + sym_shift_operator, + STATE(1885), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1428), 26, + ACTIONS(1091), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152715,32 +157476,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59411] = 3, + [59468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 11, + STATE(743), 1, + sym_additive_operator, + STATE(1886), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1236), 26, + ACTIONS(1047), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152757,39 +157520,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59456] = 3, + [59517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 16, + ACTIONS(1423), 13, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - anon_sym_catch, anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, sym_identifier, - ACTIONS(1138), 21, - anon_sym_LBRACE, + ACTIONS(1421), 24, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -152799,6 +157560,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -152807,30 +157570,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_SEMI, - [59501] = 5, + [59562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 2, + ACTIONS(1413), 1, + sym_identifier, + ACTIONS(1262), 2, anon_sym_LT, anon_sym_DOT, - ACTIONS(1196), 4, + ACTIONS(1259), 3, anon_sym_LBRACK, anon_sym_LPAREN, - sym_increment_operator, anon_sym_QMARK_DOT, - ACTIONS(1184), 9, + ACTIONS(1257), 10, anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - ACTIONS(1182), 22, + anon_sym_is, + anon_sym_as, + anon_sym_else, + ACTIONS(1255), 21, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -152845,34 +157611,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [59550] = 5, + [59613] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3876), 1, + anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, + anon_sym_AMP, + ACTIONS(3917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3919), 1, + anon_sym_QMARK, + ACTIONS(3921), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, + anon_sym_AMP_AMP, + ACTIONS(3925), 1, + sym_equality_operator, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2406), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2412), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2415), 1, + aux_sym__if_null_expression, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(572), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_DOT_DOT, - STATE(1725), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(998), 10, + anon_sym_else, + anon_sym_SEMI, + [59706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1423), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(996), 24, + ACTIONS(1421), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -152886,21 +157715,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [59599] = 3, + [59751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 11, + ACTIONS(1315), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152911,15 +157740,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1432), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1313), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152934,15 +157762,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [59644] = 3, + [59796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 13, + ACTIONS(1359), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152953,14 +157782,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(785), 24, - anon_sym_LBRACE, + ACTIONS(1357), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152975,16 +157805,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [59841] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(614), 1, + anon_sym_async, + ACTIONS(4018), 1, + anon_sym_LBRACK, + ACTIONS(4020), 1, + anon_sym_EQ, + ACTIONS(4024), 1, + anon_sym_LPAREN, + ACTIONS(4026), 1, + anon_sym_LT, + ACTIONS(4028), 1, + anon_sym_DOT, + ACTIONS(4030), 1, anon_sym_QMARK_DOT, + STATE(411), 1, + sym__assignment_operator, + STATE(1789), 1, + sym__cascade_assignment_section, + STATE(2281), 1, + sym_assignable_selector, + STATE(2389), 1, + sym_arguments, + STATE(2402), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(3413), 1, + sym_type_arguments, + STATE(1873), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + STATE(2343), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(612), 7, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [59689] = 3, + ACTIONS(4022), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [59918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 13, + ACTIONS(1545), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -152998,7 +157885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1471), 24, + ACTIONS(1543), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153023,24 +157910,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [59734] = 3, + [59963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 13, + STATE(1998), 1, + sym__type_dot_identifier, + ACTIONS(1113), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1396), 24, + ACTIONS(1111), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153054,21 +157940,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [59779] = 3, + [60010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1438), 11, + ACTIONS(1363), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153080,7 +157968,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1436), 26, + ACTIONS(1361), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153107,12 +157995,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59824] = 4, + [60055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - sym_increment_operator, - ACTIONS(1126), 11, + ACTIONS(1367), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153124,7 +158010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1124), 25, + ACTIONS(1365), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153144,35 +158030,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [59871] = 3, + [60100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 16, + ACTIONS(1371), 11, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1348), 21, - anon_sym_LBRACE, + ACTIONS(1369), 26, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -153182,20 +158064,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [59916] = 3, + [60145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 13, + ACTIONS(1375), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153206,14 +158093,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1284), 24, - anon_sym_LBRACE, + ACTIONS(1373), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153228,16 +158116,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [59961] = 3, + [60190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 13, + ACTIONS(1379), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153248,14 +158135,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1202), 24, - anon_sym_LBRACE, + ACTIONS(1377), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153270,35 +158158,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [60006] = 3, + [60235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 16, + ACTIONS(1267), 13, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_is, + anon_sym_as, anon_sym_DOT, - anon_sym_catch, anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, sym_identifier, - ACTIONS(1150), 21, - anon_sym_LBRACE, + ACTIONS(1265), 24, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -153308,6 +158192,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -153316,12 +158202,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_SEMI, - [60051] = 3, + [60280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 13, + ACTIONS(1383), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153332,14 +158219,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1280), 24, - anon_sym_LBRACE, + ACTIONS(1381), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153354,16 +158242,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [60096] = 3, + [60325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 11, + ACTIONS(1387), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153375,7 +158262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1447), 26, + ACTIONS(1385), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153402,216 +158289,354 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [60141] = 3, + [60370] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1384), 26, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(586), 1, + anon_sym_async, + ACTIONS(3860), 1, + anon_sym_PIPE, + ACTIONS(3862), 1, + anon_sym_CARET, + ACTIONS(3864), 1, + anon_sym_AMP, + ACTIONS(3936), 1, anon_sym_QMARK_QMARK, + ACTIONS(3938), 1, + anon_sym_QMARK, + ACTIONS(3940), 1, anon_sym_PIPE_PIPE, + ACTIONS(3942), 1, anon_sym_AMP_AMP, + ACTIONS(3944), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, + STATE(711), 1, + sym_multiplicative_operator, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, + aux_sym_shift_expression_repeat1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2395), 1, + aux_sym__if_null_expression, + STATE(2397), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2398), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(584), 7, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [60186] = 5, + [60465] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1213), 4, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_as, - ACTIONS(1469), 9, - anon_sym_QMARK, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(582), 1, + anon_sym_async, + ACTIONS(3860), 1, anon_sym_PIPE, + ACTIONS(3862), 1, + anon_sym_CARET, + ACTIONS(3864), 1, anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(3936), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3938), 1, + anon_sym_QMARK, + ACTIONS(3940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3942), 1, + anon_sym_AMP_AMP, + ACTIONS(3944), 1, + sym_equality_operator, + STATE(711), 1, + sym_multiplicative_operator, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, + aux_sym_shift_expression_repeat1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2395), 1, + aux_sym__if_null_expression, + STATE(2397), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2398), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1467), 22, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(580), 7, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [60560] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(574), 1, + anon_sym_async, + ACTIONS(3860), 1, + anon_sym_PIPE, + ACTIONS(3862), 1, + anon_sym_CARET, + ACTIONS(3864), 1, + anon_sym_AMP, + ACTIONS(3936), 1, anon_sym_QMARK_QMARK, + ACTIONS(3938), 1, + anon_sym_QMARK, + ACTIONS(3940), 1, anon_sym_PIPE_PIPE, + ACTIONS(3942), 1, anon_sym_AMP_AMP, + ACTIONS(3944), 1, sym_equality_operator, - anon_sym_CARET, + STATE(711), 1, + sym_multiplicative_operator, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, + aux_sym_shift_expression_repeat1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2395), 1, + aux_sym__if_null_expression, + STATE(2397), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2398), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_QMARK_DOT, + ACTIONS(572), 7, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [60235] = 27, + [60655] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3804), 1, + ACTIONS(578), 1, + anon_sym_async, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3864), 1, anon_sym_AMP, - ACTIONS(3845), 1, + ACTIONS(3936), 1, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, + ACTIONS(3938), 1, anon_sym_QMARK, - ACTIONS(3849), 1, + ACTIONS(3940), 1, anon_sym_PIPE_PIPE, - ACTIONS(3851), 1, + ACTIONS(3942), 1, anon_sym_AMP_AMP, - ACTIONS(3853), 1, + ACTIONS(3944), 1, + sym_equality_operator, + STATE(711), 1, + sym_multiplicative_operator, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(2215), 1, + aux_sym_shift_expression_repeat1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2395), 1, + aux_sym__if_null_expression, + STATE(2397), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2398), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(576), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [60750] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3860), 1, + anon_sym_PIPE, + ACTIONS(3862), 1, + anon_sym_CARET, + ACTIONS(3864), 1, + anon_sym_AMP, + ACTIONS(4044), 1, sym_equality_operator, - STATE(658), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(714), 1, sym_additive_operator, - STATE(660), 1, + STATE(717), 1, sym_shift_operator, - STATE(2171), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, + STATE(2216), 1, aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2362), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2367), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2370), 1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2395), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2397), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2398), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(567), 2, + anon_sym_QMARK, + anon_sym_async, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(592), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [60328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 16, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1162), 21, + ACTIONS(565), 10, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [60373] = 3, + [60837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 11, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1889), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1086), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1192), 26, + ACTIONS(1084), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153628,20 +158653,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [60418] = 3, + [60886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 11, + ACTIONS(743), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153653,7 +158679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1220), 26, + ACTIONS(741), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153680,10 +158706,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [60463] = 3, + [60931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 11, + ACTIONS(1271), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153695,7 +158721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1312), 26, + ACTIONS(1269), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153722,10 +158748,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [60508] = 3, + [60976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 13, + ACTIONS(1525), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153736,14 +158762,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1256), 24, - anon_sym_LBRACE, + ACTIONS(1523), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153758,80 +158785,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [60553] = 3, + [61021] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1166), 26, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3876), 1, + anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, + anon_sym_AMP, + ACTIONS(3917), 1, anon_sym_QMARK_QMARK, + ACTIONS(3919), 1, + anon_sym_QMARK, + ACTIONS(3921), 1, anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, anon_sym_AMP_AMP, + ACTIONS(3925), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2406), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2412), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2415), 1, + aux_sym__if_null_expression, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, + ACTIONS(580), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [60598] = 6, + [61114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, - sym_identifier, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 10, + ACTIONS(1242), 13, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_is, anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(1182), 21, + ACTIONS(1239), 24, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153841,20 +158887,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [60649] = 3, + [61159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 13, + ACTIONS(1471), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153868,7 +158915,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1459), 24, + ACTIONS(1469), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153893,54 +158940,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [60694] = 5, + [61204] = 5, ACTIONS(3), 1, sym_comment, - STATE(599), 1, - sym_shift_operator, - STATE(1735), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 8, - anon_sym_QMARK, + ACTIONS(1407), 4, anon_sym_LT, anon_sym_GT, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1249), 7, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(989), 27, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1252), 10, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + ACTIONS(1405), 16, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [60743] = 3, + [61253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 13, + ACTIONS(1214), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -153954,7 +159001,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1192), 24, + ACTIONS(1212), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -153979,354 +159026,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [60788] = 24, + [61298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3788), 1, - anon_sym_PIPE, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3792), 1, - anon_sym_AMP, - ACTIONS(3981), 1, - sym_equality_operator, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, - aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2363), 1, - aux_sym__if_null_expression, - STATE(2365), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2366), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(579), 2, + ACTIONS(1475), 13, anon_sym_QMARK, - anon_sym_async, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(577), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [60875] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(586), 1, - anon_sym_async, - ACTIONS(3788), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3792), 1, anon_sym_AMP, - ACTIONS(3875), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3877), 1, - anon_sym_QMARK, - ACTIONS(3879), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3881), 1, - anon_sym_AMP_AMP, - ACTIONS(3883), 1, - sym_equality_operator, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, - aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2363), 1, - aux_sym__if_null_expression, - STATE(2365), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2366), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(584), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [60970] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(590), 1, - anon_sym_async, - ACTIONS(3788), 1, - anon_sym_PIPE, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3792), 1, - anon_sym_AMP, - ACTIONS(3875), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3877), 1, - anon_sym_QMARK, - ACTIONS(3879), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3881), 1, - anon_sym_AMP_AMP, - ACTIONS(3883), 1, - sym_equality_operator, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, - aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2363), 1, - aux_sym__if_null_expression, - STATE(2365), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2366), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(588), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [61065] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(594), 1, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(3788), 1, - anon_sym_PIPE, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3792), 1, - anon_sym_AMP, - ACTIONS(3875), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3877), 1, - anon_sym_QMARK, - ACTIONS(3879), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3881), 1, - anon_sym_AMP_AMP, - ACTIONS(3883), 1, - sym_equality_operator, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, - aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2363), 1, - aux_sym__if_null_expression, - STATE(2365), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2366), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(592), 7, + ACTIONS(1473), 24, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [61160] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(602), 1, - anon_sym_async, - ACTIONS(3788), 1, - anon_sym_PIPE, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3792), 1, - anon_sym_AMP, - ACTIONS(3875), 1, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, - ACTIONS(3877), 1, - anon_sym_QMARK, - ACTIONS(3879), 1, anon_sym_PIPE_PIPE, - ACTIONS(3881), 1, anon_sym_AMP_AMP, - ACTIONS(3883), 1, sym_equality_operator, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, - aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2363), 1, - aux_sym__if_null_expression, - STATE(2365), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2366), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1050), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(600), 7, - anon_sym_LBRACE, - anon_sym_COMMA, + sym_increment_operator, + anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [61255] = 5, + [61343] = 3, ACTIONS(3), 1, sym_comment, - STATE(600), 1, - sym_additive_operator, - STATE(1830), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 8, + ACTIONS(1347), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1003), 27, + ACTIONS(1345), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -154343,100 +159100,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [61304] = 27, + [61388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3804), 1, + ACTIONS(4047), 1, + anon_sym_DOT_DOT, + STATE(1875), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1072), 10, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3806), 1, - anon_sym_CARET, - ACTIONS(3808), 1, anon_sym_AMP, - ACTIONS(3845), 1, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1070), 24, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_QMARK, - ACTIONS(3849), 1, anon_sym_PIPE_PIPE, - ACTIONS(3851), 1, anon_sym_AMP_AMP, - ACTIONS(3853), 1, sym_equality_operator, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, - sym_shift_operator, - STATE(2171), 1, - aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2362), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2367), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2370), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(600), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [61397] = 5, + [61437] = 3, ACTIONS(3), 1, sym_comment, - STATE(601), 1, - sym_multiplicative_operator, - STATE(1728), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 8, + ACTIONS(1403), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1023), 27, + ACTIONS(1401), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -154453,21 +159186,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [61446] = 3, + [61482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 13, + ACTIONS(1419), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -154481,7 +159213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1483), 24, + ACTIONS(1417), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -154506,10 +159238,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [61491] = 3, + [61527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 13, + ACTIONS(1343), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -154523,7 +159255,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1170), 24, + ACTIONS(1341), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -154548,10 +159280,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [61536] = 3, + [61572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 11, + ACTIONS(1303), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -154562,15 +159294,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1182), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1301), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154585,15 +159316,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [61581] = 3, + [61617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 11, + ACTIONS(1267), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -154604,15 +159336,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1368), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1265), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154627,15 +159358,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [61626] = 3, + [61662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 13, + ACTIONS(1483), 13, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -154649,7 +159381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1131), 24, + ACTIONS(1481), 24, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -154674,29 +159406,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [61671] = 3, + [61707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 16, + ACTIONS(1505), 11, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1324), 21, - anon_sym_LBRACE, + ACTIONS(1503), 26, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -154706,39 +159433,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [61716] = 3, + [61752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 16, + ACTIONS(4050), 1, + anon_sym_DOT_DOT, + STATE(1946), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1079), 8, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - ACTIONS(1120), 21, - anon_sym_LBRACE, + ACTIONS(1077), 26, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -154748,6 +159477,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -154756,29 +159487,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_else, anon_sym_SEMI, - [61761] = 4, + [61801] = 3, ACTIONS(3), 1, sym_comment, - STATE(1937), 1, - sym__type_dot_identifier, - ACTIONS(1060), 10, + ACTIONS(1447), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_as, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - ACTIONS(1058), 26, - anon_sym_LBRACE, + ACTIONS(1445), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154788,31 +159524,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [61808] = 5, + [61846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1186), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 9, + ACTIONS(1443), 11, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -154821,11 +159548,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - ACTIONS(1182), 23, + anon_sym_DOT, + ACTIONS(1441), 26, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -154842,13 +159572,14 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_is, anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [61857] = 3, + [61891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 13, + ACTIONS(1533), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -154859,14 +159590,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1112), 24, - anon_sym_LBRACE, + ACTIONS(1531), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154881,26 +159613,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [61902] = 6, + [61936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 1, - sym_increment_operator, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 9, + ACTIONS(915), 11, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -154909,11 +159632,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - ACTIONS(1182), 22, + anon_sym_DOT, + ACTIONS(913), 26, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -154927,15 +159653,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + sym_increment_operator, anon_sym_is, anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [61953] = 3, + [61981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 11, + ACTIONS(1589), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -154947,7 +159675,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1451), 26, + ACTIONS(1587), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -154974,10 +159702,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [61998] = 3, + [62026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 11, + ACTIONS(1435), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -154989,7 +159717,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(785), 26, + ACTIONS(1433), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155016,10 +159744,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [62043] = 3, + [62071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 11, + ACTIONS(1431), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155031,7 +159759,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1471), 26, + ACTIONS(1429), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155058,10 +159786,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [62088] = 3, + [62116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 11, + ACTIONS(1427), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155073,7 +159801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1396), 26, + ACTIONS(1425), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155100,10 +159828,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [62133] = 3, + [62161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 13, + ACTIONS(1399), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155114,14 +159842,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1475), 24, - anon_sym_LBRACE, + ACTIONS(1397), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155136,16 +159865,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [62178] = 3, + [62206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 13, + ACTIONS(1395), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155156,14 +159884,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1487), 24, - anon_sym_LBRACE, + ACTIONS(1393), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155178,16 +159907,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_SEMI, + [62251] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3876), 1, + anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, + anon_sym_AMP, + ACTIONS(3917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3919), 1, + anon_sym_QMARK, + ACTIONS(3921), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, + anon_sym_AMP_AMP, + ACTIONS(3925), 1, + sym_equality_operator, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2406), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2412), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2415), 1, + aux_sym__if_null_expression, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(584), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + anon_sym_else, anon_sym_SEMI, - [62223] = 3, + [62344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 13, + ACTIONS(686), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155198,14 +159992,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1260), 24, - anon_sym_LBRACE, + ACTIONS(684), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155220,30 +160015,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [62268] = 3, + [62389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 13, + STATE(1983), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1491), 24, + ACTIONS(1117), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155257,10 +160050,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -155268,28 +160062,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [62313] = 3, + [62435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 13, + ACTIONS(1459), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1479), 24, - anon_sym_LBRACE, + ACTIONS(1457), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155299,35 +160091,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [62358] = 3, + [62479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 13, + STATE(1980), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1455), 24, + ACTIONS(1125), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155341,10 +160133,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -155352,57 +160145,210 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [62403] = 6, + [62525] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, - sym_identifier, - ACTIONS(1199), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1196), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 10, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(4053), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4055), 1, anon_sym_QMARK, - anon_sym_GT, + ACTIONS(4057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4059), 1, + anon_sym_AMP_AMP, + ACTIONS(4061), 1, + sym_equality_operator, + ACTIONS(4063), 1, anon_sym_PIPE, + ACTIONS(4065), 1, + anon_sym_CARET, + ACTIONS(4067), 1, anon_sym_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2434), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(590), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(588), 5, + anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_as, + [62619] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, anon_sym_GT_GT, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_BANG, + ACTIONS(4053), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4055), 1, + anon_sym_QMARK, + ACTIONS(4057), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4059), 1, + anon_sym_AMP_AMP, + ACTIONS(4061), 1, + sym_equality_operator, + ACTIONS(4063), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, + anon_sym_CARET, + ACTIONS(4067), 1, + anon_sym_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2434), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(594), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(592), 5, + anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - anon_sym_else, - ACTIONS(1182), 21, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, + [62713] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(4053), 1, anon_sym_QMARK_QMARK, + ACTIONS(4055), 1, + anon_sym_QMARK, + ACTIONS(4057), 1, anon_sym_PIPE_PIPE, + ACTIONS(4059), 1, anon_sym_AMP_AMP, + ACTIONS(4061), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4063), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, anon_sym_CARET, + ACTIONS(4067), 1, + anon_sym_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2434), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(598), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_SEMI, - [62454] = 4, + ACTIONS(596), 5, + anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_as, + [62807] = 4, ACTIONS(3), 1, sym_comment, - STATE(2007), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 10, + STATE(1984), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1105), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155413,7 +160359,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1062), 25, + ACTIONS(1103), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155439,10 +160385,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [62500] = 3, + [62853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 9, + ACTIONS(1561), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155451,15 +160397,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1268), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1559), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155475,15 +160420,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [62544] = 3, + [62897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 9, + ACTIONS(1565), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155493,7 +160439,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1182), 27, + ACTIONS(1563), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155521,12 +160467,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [62588] = 4, + [62941] = 4, ACTIONS(3), 1, sym_comment, - STATE(2013), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 8, + STATE(1986), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(1145), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155534,15 +160480,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1062), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1143), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155558,163 +160503,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [62634] = 28, + [62987] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3984), 1, + ACTIONS(4053), 1, anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, + ACTIONS(4055), 1, anon_sym_QMARK, - ACTIONS(3988), 1, + ACTIONS(4057), 1, anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(3992), 1, + ACTIONS(4061), 1, sym_equality_operator, - ACTIONS(3994), 1, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(4067), 1, anon_sym_AMP, - STATE(578), 1, + STATE(720), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(721), 1, sym_additive_operator, - STATE(605), 1, + STATE(739), 1, sym_shift_operator, - STATE(2375), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, + STATE(2434), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(594), 2, + ACTIONS(602), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(592), 5, + ACTIONS(600), 5, anon_sym_COLON, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - [62728] = 3, + [63081] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1120), 28, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4053), 1, anon_sym_QMARK_QMARK, + ACTIONS(4055), 1, + anon_sym_QMARK, + ACTIONS(4057), 1, anon_sym_PIPE_PIPE, + ACTIONS(4059), 1, anon_sym_AMP_AMP, + ACTIONS(4061), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4063), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, anon_sym_CARET, + ACTIONS(4067), 1, + anon_sym_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2434), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(606), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, - anon_sym_SEMI, - [62772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1260), 27, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(604), 5, anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [62816] = 3, + [63175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 11, + STATE(1988), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1097), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155722,11 +160654,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1182), 25, + ACTIONS(1095), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155752,144 +160683,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [62860] = 4, + [63221] = 28, ACTIONS(3), 1, sym_comment, - STATE(2014), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1066), 27, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4053), 1, anon_sym_QMARK_QMARK, + ACTIONS(4055), 1, + anon_sym_QMARK, + ACTIONS(4057), 1, anon_sym_PIPE_PIPE, + ACTIONS(4059), 1, anon_sym_AMP_AMP, + ACTIONS(4061), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4063), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [62906] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 1, - anon_sym_is, - ACTIONS(4002), 1, - anon_sym_as, - STATE(586), 1, - sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, - sym_is_operator, - ACTIONS(2091), 2, + ACTIONS(4067), 1, + anon_sym_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2434), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(610), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(2247), 2, - sym_type_test, - sym_type_cast, - ACTIONS(823), 5, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(821), 20, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [62966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1148), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1146), 26, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, + ACTIONS(608), 5, + anon_sym_COLON, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, - anon_sym_SEMI, - [63010] = 4, + anon_sym_as, + [63315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_Function, - ACTIONS(1442), 10, + ACTIONS(1581), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -155897,10 +160760,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1440), 25, + ACTIONS(1579), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -155926,335 +160790,336 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [63056] = 28, + [63359] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3984), 1, + ACTIONS(4053), 1, anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, + ACTIONS(4055), 1, anon_sym_QMARK, - ACTIONS(3988), 1, + ACTIONS(4057), 1, anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(3992), 1, + ACTIONS(4061), 1, sym_equality_operator, - ACTIONS(3994), 1, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(4067), 1, anon_sym_AMP, - STATE(578), 1, + STATE(720), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(721), 1, sym_additive_operator, - STATE(605), 1, + STATE(739), 1, sym_shift_operator, - STATE(2375), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, + STATE(2434), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(602), 2, + ACTIONS(586), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(600), 5, + ACTIONS(584), 5, anon_sym_COLON, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - [63150] = 28, + [63453] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3984), 1, + ACTIONS(4053), 1, anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, + ACTIONS(4055), 1, anon_sym_QMARK, - ACTIONS(3988), 1, + ACTIONS(4057), 1, anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(3992), 1, + ACTIONS(4061), 1, sym_equality_operator, - ACTIONS(3994), 1, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(4067), 1, anon_sym_AMP, - STATE(578), 1, + STATE(720), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(721), 1, sym_additive_operator, - STATE(605), 1, + STATE(739), 1, sym_shift_operator, - STATE(2375), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, + STATE(2434), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(590), 2, + ACTIONS(582), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(588), 5, + ACTIONS(580), 5, anon_sym_COLON, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - [63244] = 3, + [63547] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1134), 28, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4053), 1, anon_sym_QMARK_QMARK, + ACTIONS(4055), 1, + anon_sym_QMARK, + ACTIONS(4057), 1, anon_sym_PIPE_PIPE, + ACTIONS(4059), 1, anon_sym_AMP_AMP, + ACTIONS(4061), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4063), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, - anon_sym_SEMI, - [63288] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 2, + ACTIONS(4067), 1, + anon_sym_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2434), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(574), 2, anon_sym_LT, - anon_sym_DOT, - ACTIONS(1186), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 9, - anon_sym_QMARK, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, - anon_sym_async, - ACTIONS(1182), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + ACTIONS(572), 5, + anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [63336] = 5, + anon_sym_as, + [63641] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1186), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1184), 7, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(554), 1, anon_sym_GT_GT, + ACTIONS(558), 1, anon_sym_SLASH, - anon_sym_BANG, - ACTIONS(1182), 24, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(4053), 1, anon_sym_QMARK_QMARK, + ACTIONS(4055), 1, + anon_sym_QMARK, + ACTIONS(4057), 1, anon_sym_PIPE_PIPE, + ACTIONS(4059), 1, anon_sym_AMP_AMP, + ACTIONS(4061), 1, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4063), 1, + anon_sym_PIPE, + ACTIONS(4065), 1, anon_sym_CARET, + ACTIONS(4067), 1, + anon_sym_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2434), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + ACTIONS(576), 5, + anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [63384] = 28, + [63735] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, - anon_sym_QMARK, - ACTIONS(3988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, - anon_sym_AMP_AMP, - ACTIONS(3992), 1, - sym_equality_operator, - ACTIONS(3994), 1, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(4067), 1, anon_sym_AMP, - STATE(578), 1, + ACTIONS(4069), 1, + sym_equality_operator, + STATE(720), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(721), 1, sym_additive_operator, - STATE(605), 1, + STATE(739), 1, sym_shift_operator, - STATE(2375), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(2422), 1, + aux_sym__if_null_expression, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2432), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, + STATE(2434), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(584), 5, + ACTIONS(567), 3, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + ACTIONS(565), 8, anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - [63478] = 3, + [63821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 11, + ACTIONS(1585), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156266,7 +161131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1170), 25, + ACTIONS(1583), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -156292,10 +161157,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [63522] = 3, + [63865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 8, + ACTIONS(4072), 1, + anon_sym_QMARK_QMARK, + STATE(1980), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156303,16 +161172,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1146), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1158), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -156327,16 +161194,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [63566] = 3, + [63913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 8, + ACTIONS(4075), 1, + anon_sym_PIPE_PIPE, + STATE(1981), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156344,17 +161215,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1162), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(572), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -156368,16 +161237,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [63610] = 3, + [63961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 8, + ACTIONS(1561), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156385,8 +161254,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1154), 28, + ACTIONS(1559), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -156413,12 +161283,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [63654] = 3, + [64005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 8, + ACTIONS(4078), 1, + anon_sym_AMP_AMP, + STATE(1983), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156426,18 +161299,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1324), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(576), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -156450,34 +161321,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [63698] = 4, + [64053] = 5, ACTIONS(3), 1, sym_comment, - STATE(1997), 1, + ACTIONS(4081), 1, + anon_sym_PIPE, + STATE(1984), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 8, + ACTIONS(610), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1091), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(608), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156493,81 +161364,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [63744] = 28, + [64101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, + ACTIONS(1257), 11, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3984), 1, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1255), 25, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, - anon_sym_QMARK, - ACTIONS(3988), 1, anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, anon_sym_AMP_AMP, - ACTIONS(3992), 1, sym_equality_operator, - ACTIONS(3994), 1, - anon_sym_PIPE, - ACTIONS(3996), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, - ACTIONS(3998), 1, - anon_sym_AMP, - STATE(578), 1, - sym_multiplicative_operator, - STATE(604), 1, - sym_additive_operator, - STATE(605), 1, - sym_shift_operator, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, - aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(571), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(569), 5, - anon_sym_COLON, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, - [63838] = 3, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [64145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 8, + ACTIONS(4084), 1, + anon_sym_CARET, + STATE(1986), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(606), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156575,22 +161426,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1344), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(604), 24, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_PLUS, @@ -156599,32 +161448,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [63882] = 3, + [64193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 8, - anon_sym_QMARK, + ACTIONS(1500), 2, anon_sym_LT, + anon_sym_DOT, + ACTIONS(1497), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 9, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1348), 28, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_as, + anon_sym_async, + ACTIONS(1255), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156640,106 +161492,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [63926] = 28, + [64241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, + ACTIONS(4087), 1, + anon_sym_AMP, + STATE(1988), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(602), 9, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3984), 1, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(600), 25, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, - anon_sym_QMARK, - ACTIONS(3988), 1, anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, anon_sym_AMP_AMP, - ACTIONS(3992), 1, sym_equality_operator, - ACTIONS(3994), 1, - anon_sym_PIPE, - ACTIONS(3996), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, - ACTIONS(3998), 1, - anon_sym_AMP, - STATE(578), 1, - sym_multiplicative_operator, - STATE(604), 1, - sym_additive_operator, - STATE(605), 1, - sym_shift_operator, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, - aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(606), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(604), 5, - anon_sym_COLON, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_is, - anon_sym_as, - [64020] = 4, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [64289] = 11, ACTIONS(3), 1, sym_comment, - STATE(2006), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 8, - anon_sym_QMARK, + ACTIONS(4090), 1, + anon_sym_is, + ACTIONS(4092), 1, + anon_sym_as, + STATE(713), 1, + sym_relational_operator, + STATE(2633), 1, + sym_is_operator, + STATE(2640), 1, + sym_as_operator, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + ACTIONS(993), 5, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1083), 27, + ACTIONS(991), 20, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -156748,16 +161586,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [64066] = 3, + [64349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 11, + ACTIONS(1565), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156769,7 +161604,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1268), 25, + ACTIONS(1563), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -156795,10 +161630,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [64110] = 3, + [64393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 10, + ACTIONS(1549), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156806,10 +161641,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1134), 26, + ACTIONS(1547), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -156834,144 +161670,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [64154] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, - anon_sym_QMARK, - ACTIONS(3988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, - anon_sym_AMP_AMP, - ACTIONS(3992), 1, - sym_equality_operator, - ACTIONS(3994), 1, - anon_sym_PIPE, - ACTIONS(3996), 1, - anon_sym_CARET, - ACTIONS(3998), 1, - anon_sym_AMP, - STATE(578), 1, - sym_multiplicative_operator, - STATE(604), 1, - sym_additive_operator, - STATE(605), 1, - sym_shift_operator, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, - aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(567), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(565), 5, - anon_sym_COLON, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_as, - [64248] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, - anon_sym_QMARK, - ACTIONS(3988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, - anon_sym_AMP_AMP, - ACTIONS(3992), 1, - sym_equality_operator, - ACTIONS(3994), 1, - anon_sym_PIPE, - ACTIONS(3996), 1, - anon_sym_CARET, - ACTIONS(3998), 1, - anon_sym_AMP, - STATE(578), 1, - sym_multiplicative_operator, - STATE(604), 1, - sym_additive_operator, - STATE(605), 1, - sym_shift_operator, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, - aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(598), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(596), 5, - anon_sym_COLON, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_as, - [64342] = 3, + [64437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 8, + ACTIONS(1257), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -156979,8 +161682,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1364), 28, + ACTIONS(1255), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -157007,34 +161711,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [64386] = 3, + [64481] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 8, - anon_sym_QMARK, + ACTIONS(2160), 1, + anon_sym_as, + ACTIONS(4090), 1, + anon_sym_is, + STATE(713), 1, + sym_relational_operator, + STATE(2633), 1, + sym_is_operator, + STATE(2640), 1, + sym_as_operator, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + ACTIONS(993), 6, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1304), 28, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_async, + ACTIONS(991), 19, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -157043,83 +161756,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [64430] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, - anon_sym_QMARK, - ACTIONS(3988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, - anon_sym_AMP_AMP, - ACTIONS(3992), 1, - sym_equality_operator, - ACTIONS(3994), 1, - anon_sym_PIPE, - ACTIONS(3996), 1, - anon_sym_CARET, - ACTIONS(3998), 1, - anon_sym_AMP, - STATE(578), 1, - sym_multiplicative_operator, - STATE(604), 1, - sym_additive_operator, - STATE(605), 1, - sym_shift_operator, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, - aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(610), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(608), 5, - anon_sym_COLON, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_as, - [64524] = 3, + [64541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 10, + ACTIONS(1206), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157127,14 +161772,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - ACTIONS(1138), 26, - anon_sym_LBRACE, + ACTIONS(1204), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157150,17 +161797,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [64568] = 3, + [64585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 10, + ACTIONS(1455), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157171,7 +161816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1150), 26, + ACTIONS(1453), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -157198,25 +161843,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [64612] = 3, + [64629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 10, - anon_sym_QMARK, + ACTIONS(1500), 2, anon_sym_LT, + anon_sym_DOT, + ACTIONS(1497), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1257), 7, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1154), 26, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_BANG, + ACTIONS(1255), 24, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157232,17 +161882,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_QMARK_DOT, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [64656] = 3, + [64677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 10, + ACTIONS(1311), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157253,7 +161900,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1158), 26, + ACTIONS(1309), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -157280,12 +161927,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [64700] = 4, + [64721] = 3, ACTIONS(3), 1, sym_comment, - STATE(2005), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 8, + ACTIONS(1411), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157293,15 +161938,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1087), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1409), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157317,15 +161961,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [64746] = 3, + [64765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 8, + ACTIONS(1557), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157333,15 +161979,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1158), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1555), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157357,16 +162002,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [64790] = 3, + [64809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 11, + ACTIONS(1553), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157374,11 +162020,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1300), 25, + ACTIONS(1551), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -157403,11 +162048,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [64834] = 3, + [64853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 8, + ACTIONS(1355), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157415,15 +162061,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1150), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1353), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157439,16 +162084,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [64878] = 3, + [64897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 8, + ACTIONS(1351), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157456,15 +162102,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1138), 28, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1349), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157480,84 +162125,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [64922] = 28, + [64941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3984), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3986), 1, - anon_sym_QMARK, - ACTIONS(3988), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3990), 1, - anon_sym_AMP_AMP, - ACTIONS(3992), 1, - sym_equality_operator, - ACTIONS(3994), 1, - anon_sym_PIPE, - ACTIONS(3996), 1, - anon_sym_CARET, - ACTIONS(3998), 1, - anon_sym_AMP, - STATE(578), 1, - sym_multiplicative_operator, - STATE(604), 1, - sym_additive_operator, - STATE(605), 1, - sym_shift_operator, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, - aux_sym_additive_expression_repeat1, - STATE(2391), 1, + STATE(1981), 1, aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(575), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(573), 5, - anon_sym_COLON, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_as, - [65016] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2002), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 8, + ACTIONS(1123), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157565,15 +162145,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1095), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1121), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157589,15 +162168,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [65062] = 3, + [64987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 10, + ACTIONS(1463), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157605,14 +162185,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1162), 26, - anon_sym_LBRACE, + ACTIONS(1461), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157628,17 +162209,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [65106] = 3, + [65031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 10, + ACTIONS(1467), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157646,14 +162226,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1304), 26, - anon_sym_LBRACE, + ACTIONS(1465), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157669,32 +162250,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [65150] = 3, + [65075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 10, - anon_sym_QMARK, + ACTIONS(1137), 1, anon_sym_LT, + ACTIONS(1140), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1135), 6, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1364), 26, - anon_sym_LBRACE, + ACTIONS(1133), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157710,43 +162295,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [65194] = 11, + [65125] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 1, + ACTIONS(1004), 1, anon_sym_as, - ACTIONS(4000), 1, + ACTIONS(2853), 1, anon_sym_is, - STATE(586), 1, + STATE(713), 1, sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, + STATE(2633), 1, sym_is_operator, - ACTIONS(2091), 2, + STATE(2640), 1, + sym_as_operator, + ACTIONS(995), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(998), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2247), 2, + STATE(2280), 2, sym_type_test, sym_type_cast, - ACTIONS(823), 6, + ACTIONS(993), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_async, - ACTIONS(821), 19, + ACTIONS(991), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -157766,10 +162349,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [65254] = 3, + [65185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 11, + ACTIONS(1479), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157777,15 +162360,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1220), 25, - anon_sym_LBRACE, + ACTIONS(1477), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157801,16 +162384,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [65298] = 3, + [65229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 11, + ACTIONS(1495), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157818,15 +162401,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1232), 25, - anon_sym_LBRACE, + ACTIONS(1493), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157842,16 +162425,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [65342] = 3, + [65273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 10, + ACTIONS(1509), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157862,7 +162445,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1120), 26, + ACTIONS(1507), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -157889,10 +162472,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [65386] = 3, + [65317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 9, + ACTIONS(1509), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157900,9 +162483,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1232), 27, + ACTIONS(1507), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -157929,11 +162511,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [65430] = 3, + [65361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 11, + ACTIONS(1495), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -157941,11 +162524,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1244), 25, + ACTIONS(1493), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -157970,53 +162552,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_SEMI, - [65474] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3170), 1, anon_sym_Function, - ACTIONS(1442), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1440), 27, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [65520] = 3, + [65405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 11, + ACTIONS(1206), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158028,7 +162569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1252), 25, + ACTIONS(1204), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158054,25 +162595,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [65564] = 6, + [65449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_LT, - ACTIONS(1080), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1075), 8, + ACTIONS(1479), 10, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(1073), 25, + ACTIONS(1477), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158097,13 +162634,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [65614] = 4, + [65493] = 4, ACTIONS(3), 1, sym_comment, - STATE(1995), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 10, + ACTIONS(3245), 1, + anon_sym_Function, + ACTIONS(1226), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158111,14 +162649,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1095), 25, - anon_sym_LBRACE, + ACTIONS(1224), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158134,18 +162673,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [65660] = 4, + [65539] = 3, ACTIONS(3), 1, sym_comment, - STATE(1996), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 10, + ACTIONS(1467), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158156,7 +162692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1087), 25, + ACTIONS(1465), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158181,11 +162717,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [65706] = 3, + [65583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 9, + ACTIONS(1463), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158193,16 +162730,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(1300), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1461), 26, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158218,17 +162753,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [65750] = 4, + [65627] = 3, ACTIONS(3), 1, sym_comment, - STATE(1998), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 10, + ACTIONS(1459), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158239,7 +162774,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1083), 25, + ACTIONS(1457), 26, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158264,13 +162799,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [65796] = 4, + [65671] = 4, ACTIONS(3), 1, sym_comment, - STATE(2000), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 10, + STATE(2040), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158278,14 +162814,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1091), 25, - anon_sym_LBRACE, + ACTIONS(1125), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158301,18 +162838,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [65842] = 4, + [65717] = 3, ACTIONS(3), 1, sym_comment, - STATE(2004), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 10, + ACTIONS(1351), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158320,14 +162854,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1066), 25, - anon_sym_LBRACE, + ACTIONS(1349), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158343,112 +162878,164 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [65888] = 24, + [65761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3994), 1, + ACTIONS(1355), 8, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3996), 1, - anon_sym_CARET, - ACTIONS(3998), 1, anon_sym_AMP, - ACTIONS(4004), 1, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1353), 28, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, - STATE(578), 1, - sym_multiplicative_operator, - STATE(604), 1, - sym_additive_operator, - STATE(605), 1, - sym_shift_operator, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, - aux_sym_additive_expression_repeat1, - STATE(2391), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2396), 1, - aux_sym__if_null_expression, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2401), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1050), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(579), 3, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, + anon_sym_SEMI, + [65805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1553), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - ACTIONS(577), 8, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1551), 28, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [65974] = 11, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, + anon_sym_SEMI, + [65849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, - anon_sym_is, - ACTIONS(2683), 1, - anon_sym_as, - STATE(586), 1, - sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, - sym_is_operator, - ACTIONS(825), 2, + ACTIONS(3245), 1, + anon_sym_Function, + ACTIONS(1226), 10, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - ACTIONS(828), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1224), 25, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2247), 2, - sym_type_test, - sym_type_cast, - ACTIONS(823), 5, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [65895] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2044), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1123), 8, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(821), 20, + anon_sym_DOT, + ACTIONS(1121), 27, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -158457,26 +163044,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [66034] = 6, + [65941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_LT, - ACTIONS(1080), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1075), 6, + STATE(2046), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 8, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1073), 27, + anon_sym_DOT, + ACTIONS(1117), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158504,14 +163092,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [66084] = 5, + [65987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 1, - anon_sym_QMARK_QMARK, - STATE(1995), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 10, + STATE(2047), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1105), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158519,14 +163105,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1105), 24, - anon_sym_LBRACE, + ACTIONS(1103), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -158541,20 +163129,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [66132] = 5, + [66033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 1, - anon_sym_PIPE_PIPE, - STATE(1996), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 10, + STATE(2048), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(1145), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158562,15 +163147,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(588), 24, - anon_sym_LBRACE, + ACTIONS(1143), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -158584,28 +163171,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [66180] = 5, + [66079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 1, - anon_sym_PIPE, - STATE(1997), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 7, + STATE(2045), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1097), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(569), 27, + ACTIONS(1095), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158633,31 +163218,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [66228] = 5, + [66125] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 1, - anon_sym_AMP_AMP, - STATE(1998), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 10, - anon_sym_QMARK, + ACTIONS(1137), 1, anon_sym_LT, + ACTIONS(1140), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1135), 8, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, - anon_sym_DOT, anon_sym_async, - ACTIONS(584), 24, + ACTIONS(1133), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -158676,10 +163262,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [66276] = 3, + [66175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 9, + ACTIONS(1557), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158687,9 +163273,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1170), 27, + ACTIONS(1555), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158716,29 +163301,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [66320] = 5, + [66219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_PIPE, - STATE(2000), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 9, + ACTIONS(1343), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - ACTIONS(569), 25, - anon_sym_LBRACE, + ACTIONS(1341), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158754,16 +163339,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [66368] = 3, + [66263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 10, + ACTIONS(1411), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158771,14 +163355,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1348), 26, - anon_sym_LBRACE, + ACTIONS(1409), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158794,21 +163379,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [66412] = 5, + [66307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 1, - anon_sym_QMARK_QMARK, - STATE(2002), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 8, + ACTIONS(1311), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158817,7 +163397,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1105), 26, + ACTIONS(1309), 28, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158825,6 +163405,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -158843,11 +163424,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [66460] = 3, + [66351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 10, + ACTIONS(1423), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158855,14 +163437,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, + anon_sym_BANG, anon_sym_DOT, - anon_sym_async, - ACTIONS(1344), 26, - anon_sym_LBRACE, + ACTIONS(1421), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158878,21 +163462,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [66504] = 5, + [66395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, - anon_sym_CARET, - STATE(2004), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(606), 10, + ACTIONS(1455), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158900,20 +163478,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(604), 24, - anon_sym_LBRACE, + ACTIONS(1453), 28, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_PLUS, @@ -158922,20 +163502,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [66552] = 5, + [66439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 1, - anon_sym_PIPE_PIPE, - STATE(2005), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 8, + ACTIONS(1267), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158943,8 +163519,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(588), 26, + ACTIONS(1265), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -158953,6 +163530,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -158971,14 +163549,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [66600] = 5, + [66483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 1, - anon_sym_AMP_AMP, - STATE(2006), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 8, + ACTIONS(1267), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -158986,17 +163560,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, anon_sym_DOT, - ACTIONS(584), 26, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1265), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -159009,29 +163584,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [66648] = 5, + [66527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4034), 1, - anon_sym_AMP, - STATE(2007), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 9, + ACTIONS(1303), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(565), 25, + ACTIONS(1301), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159057,42 +163631,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [66696] = 11, + [66571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(834), 1, - anon_sym_as, - ACTIONS(2680), 1, - anon_sym_is, - STATE(586), 1, - sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, - sym_is_operator, - ACTIONS(825), 2, + ACTIONS(1343), 11, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - ACTIONS(828), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(2247), 2, - sym_type_test, - sym_type_cast, - ACTIONS(823), 6, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, + anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(821), 19, + ACTIONS(1341), 25, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -159101,15 +163665,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [66756] = 3, + [66615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 9, + ACTIONS(4094), 1, + anon_sym_QMARK_QMARK, + STATE(2040), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159117,9 +163687,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, anon_sym_DOT, - ACTIONS(1284), 27, + ACTIONS(1158), 26, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159127,7 +163696,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -159147,10 +163715,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [66800] = 3, + [66663] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 9, + ACTIONS(2853), 1, + anon_sym_is, + ACTIONS(2856), 1, + anon_sym_as, + STATE(713), 1, + sym_relational_operator, + STATE(2633), 1, + sym_is_operator, + STATE(2640), 1, + sym_as_operator, + ACTIONS(995), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(998), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + ACTIONS(993), 5, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(991), 20, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [66723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1303), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159160,7 +163777,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1280), 27, + ACTIONS(1301), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159188,10 +163805,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [66844] = 3, + [66767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 10, + ACTIONS(1423), 11, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159199,10 +163816,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1324), 26, + ACTIONS(1421), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159227,12 +163845,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [66888] = 3, + [66811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 11, + ACTIONS(4097), 1, + anon_sym_PIPE_PIPE, + STATE(2044), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159240,17 +163861,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1260), 25, - anon_sym_LBRACE, + ACTIONS(572), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -159264,20 +163884,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [66932] = 5, + [66859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 1, + ACTIONS(4100), 1, anon_sym_AMP, - STATE(2013), 1, + STATE(2045), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 7, + ACTIONS(602), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159285,7 +163904,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(565), 27, + ACTIONS(600), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159313,14 +163932,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [66980] = 5, + [66907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 1, - anon_sym_CARET, - STATE(2014), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(606), 8, + ACTIONS(4103), 1, + anon_sym_AMP_AMP, + STATE(2046), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159329,7 +163948,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(604), 26, + ACTIONS(576), 26, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [66955] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4106), 1, + anon_sym_PIPE, + STATE(2047), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(610), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(608), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159343,6 +164004,7 @@ static uint16_t ts_small_parse_table[] = { sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_PLUS, @@ -159356,10 +164018,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [67028] = 3, + [67003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 11, + ACTIONS(4109), 1, + anon_sym_CARET, + STATE(2048), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(606), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159367,22 +164033,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1280), 25, - anon_sym_LBRACE, + ACTIONS(604), 26, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_PLUS, @@ -159391,16 +164056,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [67072] = 3, + [67051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 11, + ACTIONS(1577), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159408,11 +164072,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_BANG, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1284), 25, + ACTIONS(1575), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159438,29 +164101,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [67116] = 7, + [67094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, - anon_sym_LT, - ACTIONS(4043), 1, - anon_sym_LPAREN, - STATE(2203), 1, - sym_parameter_type_list, - STATE(3350), 1, - sym_type_parameters, - ACTIONS(985), 8, + ACTIONS(1471), 10, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, + anon_sym_DOT, anon_sym_async, - ACTIONS(983), 23, + ACTIONS(1469), 25, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159476,23 +164135,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [67167] = 6, + [67137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, - anon_sym_Function, - STATE(3030), 1, - sym__function_builtin_identifier, - STATE(2024), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(968), 7, + ACTIONS(1307), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159500,51 +164152,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(966), 24, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [67216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1332), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1305), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159560,15 +164175,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [67259] = 3, + [67180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 8, + ACTIONS(1299), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159576,15 +164192,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1312), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1297), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159600,15 +164215,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [67302] = 3, + [67223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 8, + ACTIONS(1295), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159616,15 +164232,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1228), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1293), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159640,15 +164255,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [67345] = 3, + [67266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1144), 8, + ACTIONS(1331), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159656,15 +164272,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1142), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1329), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159680,15 +164295,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [67388] = 3, + [67309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 10, + ACTIONS(1335), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159699,7 +164315,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1308), 25, + ACTIONS(1333), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159725,17 +164341,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [67431] = 6, + [67352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4047), 1, - anon_sym_Function, - STATE(3030), 1, - sym__function_builtin_identifier, - STATE(2024), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(978), 7, + ACTIONS(1545), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159743,11 +164352,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(976), 24, + anon_sym_DOT, + ACTIONS(1543), 27, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -159765,74 +164377,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [67480] = 24, + [67395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, - ACTIONS(93), 1, + ACTIONS(4112), 1, anon_sym_Function, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(512), 1, - anon_sym_required, - ACTIONS(514), 1, - anon_sym_covariant, - ACTIONS(3828), 1, - sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(3042), 1, sym__function_builtin_identifier, - STATE(2444), 1, - sym__covariant, - STATE(2905), 1, - sym__declared_identifier, - STATE(2998), 1, - sym_formal_parameter, - STATE(3343), 1, - sym__type, - STATE(3444), 1, - sym__default_named_parameter, - STATE(3725), 1, - sym_this, - ACTIONS(135), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, + STATE(2139), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(3090), 2, - sym__final_const_var_or_type, - sym_inferred_type, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(2270), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - STATE(2940), 4, - sym__normal_formal_parameter, - sym__function_formal_parameter, - sym__simple_formal_parameter, - sym_constructor_param, - [67565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 8, + ACTIONS(1045), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159840,15 +164399,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1451), 27, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_as, + anon_sym_async, + ACTIONS(1043), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159864,15 +164419,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [67608] = 3, + [67444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 8, + ACTIONS(1521), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159881,7 +164436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1447), 27, + ACTIONS(1519), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159909,10 +164464,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [67651] = 3, + [67487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 10, + ACTIONS(1291), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -159923,7 +164478,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1202), 25, + ACTIONS(1289), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -159949,52 +164504,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [67694] = 5, + [67530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DOT, - ACTIONS(1124), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1128), 7, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1131), 24, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [67741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 10, + ACTIONS(1287), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160005,7 +164518,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1264), 25, + ACTIONS(1285), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160031,10 +164544,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [67784] = 3, + [67573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 10, + ACTIONS(1283), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160045,7 +164558,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1166), 25, + ACTIONS(1281), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160071,10 +164584,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [67827] = 3, + [67616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 8, + ACTIONS(1545), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160082,15 +164595,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1236), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1543), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160106,15 +164618,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [67870] = 3, + [67659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 10, + ACTIONS(1279), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160125,7 +164638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1236), 25, + ACTIONS(1277), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160151,10 +164664,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [67913] = 3, + [67702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 8, + ACTIONS(1517), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160163,7 +164676,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1131), 27, + ACTIONS(1515), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160191,10 +164704,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [67956] = 3, + [67745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 10, + ACTIONS(1233), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160205,7 +164718,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1332), 25, + ACTIONS(1231), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160231,78 +164744,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [67999] = 24, + [67788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(512), 1, - anon_sym_required, - ACTIONS(514), 1, - anon_sym_covariant, - ACTIONS(3828), 1, - sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2444), 1, - sym__covariant, - STATE(2905), 1, - sym__declared_identifier, - STATE(2998), 1, - sym_formal_parameter, - STATE(3294), 1, - sym__default_named_parameter, - STATE(3343), 1, - sym__type, - STATE(3725), 1, - sym_this, - ACTIONS(135), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(3090), 2, - sym__final_const_var_or_type, - sym_inferred_type, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(2270), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - STATE(2940), 4, - sym__normal_formal_parameter, - sym__function_formal_parameter, - sym__simple_formal_parameter, - sym_constructor_param, - [68084] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4050), 1, - anon_sym_Function, - STATE(3021), 1, - sym__function_builtin_identifier, - STATE(2037), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(978), 9, + ACTIONS(1379), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160310,11 +164755,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(976), 22, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(1377), 27, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160330,15 +164779,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [68133] = 3, + [67831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 8, + ACTIONS(1513), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160347,7 +164796,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1224), 27, + ACTIONS(1511), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160375,10 +164824,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68176] = 3, + [67874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1438), 8, + ACTIONS(1513), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160386,15 +164835,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1436), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1511), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160410,15 +164858,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [67917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 1, + anon_sym_Function, + STATE(3042), 1, + sym__function_builtin_identifier, + STATE(2139), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1039), 9, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, + anon_sym_async, + ACTIONS(1037), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [67966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1347), 10, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1345), 25, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [68219] = 3, + [68009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 8, + ACTIONS(1237), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160427,7 +164959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1248), 27, + ACTIONS(1235), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160455,10 +164987,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68262] = 3, + [68052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 10, + ACTIONS(1222), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160469,7 +165001,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1224), 25, + ACTIONS(1220), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160495,34 +165027,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [68305] = 5, + [68095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, + ACTIONS(1275), 1, + anon_sym_DOT, + ACTIONS(1273), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1242), 9, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_as, - ACTIONS(1213), 3, + anon_sym_async, + ACTIONS(1239), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_is, - ACTIONS(1469), 7, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [68142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1577), 8, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - anon_sym_async, - ACTIONS(1467), 22, - anon_sym_LBRACE, + ACTIONS(1575), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -160531,16 +165103,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [68352] = 3, + [68185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 10, + ACTIONS(1218), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160551,7 +165123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1248), 25, + ACTIONS(1216), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160577,10 +165149,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [68395] = 3, + [68228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 8, + ACTIONS(1375), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160589,7 +165161,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1432), 27, + ACTIONS(1373), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160617,10 +165189,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68438] = 3, + [68271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 8, + ACTIONS(1403), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160628,15 +165200,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1428), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1401), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160652,23 +165223,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [68481] = 5, + [68314] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DOT, - ACTIONS(1124), 3, - anon_sym_LBRACK, + ACTIONS(1068), 1, + anon_sym_LT, + ACTIONS(4114), 1, anon_sym_LPAREN, - anon_sym_QMARK_DOT, - ACTIONS(1128), 9, + STATE(2261), 1, + sym_parameter_type_list, + STATE(3396), 1, + sym_type_parameters, + ACTIONS(1059), 8, anon_sym_QMARK, - anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, @@ -160676,7 +165249,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1131), 22, + ACTIONS(1057), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -160698,11 +165271,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [68528] = 3, + [68365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 8, + ACTIONS(1383), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160711,7 +165285,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1424), 27, + ACTIONS(1381), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160739,10 +165313,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68571] = 3, + [68408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 8, + ACTIONS(1387), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160751,7 +165325,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1420), 27, + ACTIONS(1385), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160779,10 +165353,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68614] = 3, + [68451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 8, + ACTIONS(1391), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160791,7 +165365,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1416), 27, + ACTIONS(1389), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160819,10 +165393,114 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68657] = 3, + [68494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 8, + ACTIONS(4116), 1, + anon_sym_Function, + STATE(3044), 1, + sym__function_builtin_identifier, + STATE(2121), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1039), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1037), 24, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [68543] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(109), 1, + anon_sym_this, + ACTIONS(512), 1, + anon_sym_required, + ACTIONS(514), 1, + anon_sym_covariant, + ACTIONS(3908), 1, + sym_identifier, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2459), 1, + sym__covariant, + STATE(2942), 1, + sym__declared_identifier, + STATE(3104), 1, + sym_formal_parameter, + STATE(3193), 1, + sym__default_named_parameter, + STATE(3406), 1, + sym__type, + STATE(3711), 1, + sym_this, + ACTIONS(135), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(3348), 2, + sym__final_const_var_or_type, + sym_inferred_type, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(2306), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + STATE(2940), 4, + sym__normal_formal_parameter, + sym__function_formal_parameter, + sym__simple_formal_parameter, + sym_constructor_param, + [68628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160831,7 +165509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1412), 27, + ACTIONS(1469), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160859,10 +165537,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68700] = 3, + [68671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 10, + ACTIONS(686), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160873,7 +165551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1312), 25, + ACTIONS(684), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160899,10 +165577,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [68743] = 3, + [68714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 10, + ACTIONS(1593), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160910,14 +165588,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(637), 25, - anon_sym_LBRACE, + ACTIONS(1591), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160933,16 +165612,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [68786] = 3, + [68757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 8, + ACTIONS(686), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160951,7 +165629,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1216), 27, + ACTIONS(684), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -160979,10 +165657,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68829] = 3, + [68800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 10, + ACTIONS(1335), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -160990,14 +165668,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1228), 25, - anon_sym_LBRACE, + ACTIONS(1333), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161013,16 +165692,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [68872] = 3, + [68843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 8, + ACTIONS(1331), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161031,7 +165709,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1408), 27, + ACTIONS(1329), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161059,10 +165737,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [68915] = 3, + [68886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 10, + ACTIONS(1323), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161070,14 +165748,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1240), 25, - anon_sym_LBRACE, + ACTIONS(1321), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161093,59 +165772,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [68958] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 1, - anon_sym_Function, - STATE(3021), 1, - sym__function_builtin_identifier, - STATE(2037), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(974), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, anon_sym_as, - anon_sym_async, - ACTIONS(972), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [69007] = 3, + [68929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 8, + ACTIONS(1319), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161154,7 +165789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1256), 27, + ACTIONS(1317), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161182,26 +165817,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69050] = 5, + [68972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 5, + ACTIONS(1413), 10, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_as, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1210), 5, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1213), 12, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1415), 25, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -161210,13 +165850,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(1206), 13, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -161224,17 +165857,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [69097] = 6, + [69015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4053), 1, - anon_sym_Function, - STATE(3021), 1, - sym__function_builtin_identifier, - STATE(2037), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(968), 9, + ACTIONS(743), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161242,11 +165868,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(966), 22, - anon_sym_LBRACE, + anon_sym_DOT, + ACTIONS(741), 27, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161262,15 +165892,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [69146] = 3, + [69058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 8, + ACTIONS(1307), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161279,7 +165909,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1178), 27, + ACTIONS(1305), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161307,10 +165937,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69189] = 3, + [69101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 8, + ACTIONS(1299), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161319,7 +165949,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1404), 27, + ACTIONS(1297), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161347,10 +165977,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69232] = 3, + [69144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 8, + ACTIONS(1295), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161359,7 +165989,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1400), 27, + ACTIONS(1293), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161387,10 +166017,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69275] = 3, + [69187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 8, + ACTIONS(1359), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161399,7 +166029,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1328), 27, + ACTIONS(1357), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161427,10 +166057,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69318] = 3, + [69230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 8, + ACTIONS(1589), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161438,15 +166068,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1392), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1587), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161462,15 +166091,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [69361] = 3, + [69273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 10, + ACTIONS(915), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161481,7 +166111,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1463), 25, + ACTIONS(913), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161507,10 +166137,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [69404] = 3, + [69316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(809), 10, + ACTIONS(1505), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161521,7 +166151,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(807), 25, + ACTIONS(1503), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161547,10 +166177,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [69447] = 3, + [69359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 8, + ACTIONS(1287), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161559,7 +166189,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1388), 27, + ACTIONS(1285), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161587,10 +166217,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69490] = 3, + [69402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 8, + ACTIONS(1271), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161599,7 +166229,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(785), 27, + ACTIONS(1269), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161627,10 +166257,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69533] = 3, + [69445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 8, + ACTIONS(1283), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161639,7 +166269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1240), 27, + ACTIONS(1281), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161667,10 +166297,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69576] = 3, + [69488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 10, + ACTIONS(1533), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161681,7 +166311,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1276), 25, + ACTIONS(1531), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161707,10 +166337,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [69619] = 3, + [69531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 8, + ACTIONS(1279), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161719,7 +166349,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1112), 27, + ACTIONS(1277), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161747,10 +166377,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69662] = 3, + [69574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1144), 10, + ACTIONS(1525), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161758,14 +166388,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1142), 25, - anon_sym_LBRACE, + ACTIONS(1523), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161781,16 +166412,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [69705] = 3, + [69617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 8, + ACTIONS(1395), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161799,7 +166429,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1475), 27, + ACTIONS(1393), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161827,10 +166457,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69748] = 3, + [69660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 8, + ACTIONS(1233), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161839,7 +166469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1487), 27, + ACTIONS(1231), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161867,10 +166497,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69791] = 3, + [69703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 8, + ACTIONS(1451), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161879,7 +166509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1264), 27, + ACTIONS(1449), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161907,10 +166537,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69834] = 3, + [69746] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 8, + ACTIONS(1275), 1, + anon_sym_DOT, + ACTIONS(1273), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1242), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -161918,14 +166554,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1471), 27, + ACTIONS(1239), 24, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -161943,24 +166576,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69877] = 5, + [69793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 3, + ACTIONS(1407), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(1210), 5, + ACTIONS(1249), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1213), 12, + ACTIONS(1252), 12, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161973,7 +166605,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(1206), 15, + ACTIONS(1405), 15, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -161989,10 +166621,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [69924] = 3, + [69840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 10, + ACTIONS(1214), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162003,7 +166635,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1288), 25, + ACTIONS(1212), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162029,10 +166661,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [69967] = 3, + [69883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 8, + ACTIONS(1443), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162040,15 +166672,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1396), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1441), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162064,15 +166695,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [70010] = 3, + [69926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 10, + ACTIONS(1475), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162083,7 +166715,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1292), 25, + ACTIONS(1473), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162109,26 +166741,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70053] = 6, + [69969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_Function, - STATE(3072), 1, - sym__function_builtin_identifier, - STATE(1613), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(974), 6, + ACTIONS(1222), 8, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(972), 25, - anon_sym_LBRACE, + ACTIONS(1220), 27, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -162138,6 +166765,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -162146,16 +166775,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_catch, anon_sym_else, - anon_sym_with, - anon_sym_implements, anon_sym_SEMI, - [70102] = 3, + [70012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 10, + ACTIONS(1218), 8, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1216), 27, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [70055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162166,7 +166835,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1296), 25, + ACTIONS(1417), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162192,10 +166861,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70145] = 3, + [70098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 8, + ACTIONS(1483), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162203,15 +166872,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1491), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1481), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162227,15 +166895,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [70188] = 3, + [70141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 10, + ACTIONS(1487), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162246,7 +166915,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1316), 25, + ACTIONS(1485), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162272,10 +166941,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70231] = 3, + [70184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 10, + ACTIONS(1529), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162286,7 +166955,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1320), 25, + ACTIONS(1527), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162312,10 +166981,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70274] = 3, + [70227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 8, + ACTIONS(4118), 1, + anon_sym_Function, + STATE(3044), 1, + sym__function_builtin_identifier, + STATE(2121), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1032), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162323,14 +166999,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1479), 27, + ACTIONS(1030), 24, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -162348,14 +167021,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [70317] = 3, + [70276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1525), 10, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1523), 25, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [70319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 10, + ACTIONS(1271), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162366,7 +167078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1336), 25, + ACTIONS(1269), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162392,10 +167104,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70360] = 3, + [70362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 10, + ACTIONS(1537), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162406,7 +167118,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1340), 25, + ACTIONS(1535), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162432,10 +167144,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70403] = 3, + [70405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 10, + ACTIONS(1541), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162446,7 +167158,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1352), 25, + ACTIONS(1539), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162472,10 +167184,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70446] = 3, + [70448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 10, + ACTIONS(1573), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162486,7 +167198,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1356), 25, + ACTIONS(1571), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162512,10 +167224,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70489] = 3, + [70491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 10, + ACTIONS(1569), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162526,7 +167238,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1368), 25, + ACTIONS(1567), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162552,10 +167264,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70532] = 3, + [70534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 10, + ACTIONS(1491), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162566,7 +167278,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1116), 25, + ACTIONS(1489), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162592,50 +167304,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70575] = 3, + [70577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1455), 27, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [70618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 10, + ACTIONS(1242), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162646,7 +167318,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1376), 25, + ACTIONS(1239), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162672,10 +167344,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70661] = 3, + [70620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 8, + ACTIONS(1347), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162684,7 +167356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1384), 27, + ACTIONS(1345), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162712,10 +167384,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [70704] = 3, + [70663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 8, + ACTIONS(1403), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162724,7 +167396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1174), 27, + ACTIONS(1401), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162752,10 +167424,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [70747] = 3, + [70706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 8, + ACTIONS(1359), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162763,15 +167435,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1202), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1357), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162787,26 +167458,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [70790] = 3, + [70749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1128), 10, - anon_sym_QMARK, + ACTIONS(1249), 3, anon_sym_LT, anon_sym_GT, + anon_sym_as, + ACTIONS(1252), 3, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + ACTIONS(1247), 7, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1131), 25, + ACTIONS(1245), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162815,8 +167492,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -162825,17 +167500,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70833] = 3, + [70796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 10, + ACTIONS(1505), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162843,14 +167517,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1216), 25, - anon_sym_LBRACE, + ACTIONS(1503), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162866,16 +167541,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [70876] = 3, + [70839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 10, + ACTIONS(743), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162886,7 +167560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1256), 25, + ACTIONS(741), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162912,10 +167586,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [70919] = 3, + [70882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 10, + ACTIONS(1399), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162923,14 +167597,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1328), 25, - anon_sym_LBRACE, + ACTIONS(1397), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162946,16 +167621,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [70962] = 3, + [70925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 10, + ACTIONS(1593), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -162966,7 +167640,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(785), 25, + ACTIONS(1591), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -162992,35 +167666,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71005] = 6, + [70968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_Function, - STATE(3072), 1, - sym__function_builtin_identifier, - STATE(1613), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(968), 6, + ACTIONS(1323), 10, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(966), 25, + anon_sym_async, + ACTIONS(1321), 25, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -163029,16 +167699,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_implements, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [71054] = 3, + [71011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 10, + ACTIONS(4121), 1, + anon_sym_Function, + STATE(3042), 1, + sym__function_builtin_identifier, + STATE(2139), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1032), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163047,13 +167725,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, - anon_sym_DOT, anon_sym_async, - ACTIONS(1471), 25, + ACTIONS(1030), 22, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163069,16 +167744,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71097] = 3, + [71060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 10, + ACTIONS(1363), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163089,7 +167763,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1396), 25, + ACTIONS(1361), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163115,10 +167789,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71140] = 3, + [71103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 8, + ACTIONS(1447), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163127,7 +167801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1459), 27, + ACTIONS(1445), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163155,10 +167829,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [71183] = 3, + [71146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 10, + ACTIONS(1367), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163169,7 +167843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1388), 25, + ACTIONS(1365), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163195,10 +167869,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71226] = 3, + [71189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 8, + ACTIONS(1447), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163206,15 +167880,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1192), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1445), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163230,15 +167903,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [71269] = 3, + [71232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 10, + ACTIONS(1371), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163246,14 +167920,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1392), 25, - anon_sym_LBRACE, + ACTIONS(1369), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163269,16 +167944,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [71312] = 3, + [71275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 10, + ACTIONS(1210), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163286,14 +167960,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1400), 25, - anon_sym_LBRACE, + ACTIONS(1208), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163309,16 +167984,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [71355] = 3, + [71318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 10, + ACTIONS(1371), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163329,7 +168003,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1404), 25, + ACTIONS(1369), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163355,10 +168029,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71398] = 3, + [71361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 10, + ACTIONS(1214), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163366,14 +168040,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1408), 25, - anon_sym_LBRACE, + ACTIONS(1212), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163389,16 +168064,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [71441] = 3, + [71404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 10, + ACTIONS(1475), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163406,14 +168080,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1412), 25, - anon_sym_LBRACE, + ACTIONS(1473), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163429,16 +168104,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [71484] = 3, + [71447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 10, + ACTIONS(1315), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163449,7 +168123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1174), 25, + ACTIONS(1313), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163475,10 +168149,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71527] = 3, + [71490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 10, + ACTIONS(1419), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163486,14 +168160,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1416), 25, - anon_sym_LBRACE, + ACTIONS(1417), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163509,16 +168184,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [71570] = 3, + [71533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 10, + ACTIONS(1483), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163526,14 +168200,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1178), 25, - anon_sym_LBRACE, + ACTIONS(1481), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163549,16 +168224,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [71613] = 3, + [71576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 10, + ACTIONS(1375), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163569,7 +168243,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1420), 25, + ACTIONS(1373), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163595,10 +168269,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71656] = 3, + [71619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 10, + ACTIONS(1327), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163609,7 +168283,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1424), 25, + ACTIONS(1325), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163635,10 +168309,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71699] = 3, + [71662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 10, + ACTIONS(1487), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163646,14 +168320,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1428), 25, - anon_sym_LBRACE, + ACTIONS(1485), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163669,16 +168344,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [71742] = 3, + [71705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 10, + ACTIONS(1379), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163689,7 +168363,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1432), 25, + ACTIONS(1377), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163715,52 +168389,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71785] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1213), 4, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_as, - ACTIONS(1469), 6, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1467), 23, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [71832] = 3, + [71748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1438), 10, + ACTIONS(1383), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163771,7 +168403,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1436), 25, + ACTIONS(1381), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163797,10 +168429,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [71875] = 3, + [71791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 10, + ACTIONS(1529), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163808,14 +168440,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1360), 25, - anon_sym_LBRACE, + ACTIONS(1527), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163831,31 +168464,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [71918] = 3, + [71834] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 8, - anon_sym_QMARK, + ACTIONS(1068), 1, anon_sym_LT, + ACTIONS(4124), 1, + anon_sym_LPAREN, + STATE(2266), 1, + sym_parameter_type_list, + STATE(3389), 1, + sym_type_parameters, + ACTIONS(1059), 6, + anon_sym_QMARK, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1483), 27, + ACTIONS(1057), 25, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -163873,14 +168509,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [71961] = 3, + [71885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 10, + ACTIONS(1387), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163891,7 +168527,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1372), 25, + ACTIONS(1385), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163917,10 +168553,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [72004] = 3, + [71928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 8, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1441), 27, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [71971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 10, + ACTIONS(1391), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -163931,7 +168607,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1455), 25, + ACTIONS(1389), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -163957,36 +168633,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [72047] = 7, + [72014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(1249), 2, anon_sym_LT, - ACTIONS(4057), 1, - anon_sym_LPAREN, - STATE(2196), 1, - sym_parameter_type_list, - STATE(3514), 1, - sym_type_parameters, - ACTIONS(985), 6, - anon_sym_QMARK, anon_sym_GT, + ACTIONS(1252), 4, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_as, + ACTIONS(1247), 6, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(983), 25, + anon_sym_DOT, + ACTIONS(1245), 23, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -163995,37 +168671,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [72098] = 3, + [72061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 10, + ACTIONS(1249), 5, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + ACTIONS(1407), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1447), 25, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(1252), 12, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -164034,6 +168703,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + ACTIONS(1405), 13, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_is, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, @@ -164041,10 +168717,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [72141] = 3, + [72108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 10, + ACTIONS(1537), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164052,14 +168728,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1451), 25, - anon_sym_LBRACE, + ACTIONS(1535), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164075,16 +168752,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [72184] = 3, + [72151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 10, + ACTIONS(1541), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164092,14 +168768,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1479), 25, - anon_sym_LBRACE, + ACTIONS(1539), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164115,16 +168792,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [72227] = 3, + [72194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 10, + ACTIONS(1573), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164132,14 +168808,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1491), 25, - anon_sym_LBRACE, + ACTIONS(1571), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164155,16 +168832,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [72270] = 3, + [72237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 10, + ACTIONS(1569), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164172,14 +168848,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1487), 25, - anon_sym_LBRACE, + ACTIONS(1567), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164195,16 +168872,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [72313] = 3, + [72280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 10, + ACTIONS(1291), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164212,14 +168888,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1475), 25, - anon_sym_LBRACE, + ACTIONS(1289), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164235,16 +168912,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [72356] = 3, + [72323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1114), 10, + ACTIONS(1491), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164252,14 +168928,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1112), 25, - anon_sym_LBRACE, + ACTIONS(1489), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164275,16 +168952,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [72399] = 3, + [72366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 10, + ACTIONS(1533), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164292,14 +168968,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1459), 25, - anon_sym_LBRACE, + ACTIONS(1531), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164315,23 +168992,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [72442] = 6, + [72409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, - anon_sym_Function, - STATE(3030), 1, - sym__function_builtin_identifier, - STATE(2024), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(974), 7, + ACTIONS(1427), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164339,11 +169008,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(972), 24, + anon_sym_DOT, + ACTIONS(1425), 27, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -164361,13 +169033,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [72491] = 3, + [72452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 8, + ACTIONS(1431), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164376,7 +169049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1376), 27, + ACTIONS(1429), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -164404,10 +169077,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [72534] = 3, + [72495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 10, + ACTIONS(1315), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164415,14 +169088,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_DOT, - anon_sym_async, - ACTIONS(1192), 25, - anon_sym_LBRACE, + ACTIONS(1313), 27, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164438,16 +169112,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [72577] = 3, + [72538] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 8, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(109), 1, + anon_sym_this, + ACTIONS(512), 1, + anon_sym_required, + ACTIONS(514), 1, + anon_sym_covariant, + ACTIONS(3908), 1, + sym_identifier, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2459), 1, + sym__covariant, + STATE(2942), 1, + sym__declared_identifier, + STATE(3104), 1, + sym_formal_parameter, + STATE(3406), 1, + sym__type, + STATE(3480), 1, + sym__default_named_parameter, + STATE(3711), 1, + sym_this, + ACTIONS(135), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(3348), 2, + sym__final_const_var_or_type, + sym_inferred_type, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(2306), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + STATE(2940), 4, + sym__normal_formal_parameter, + sym__function_formal_parameter, + sym__simple_formal_parameter, + sym_constructor_param, + [72623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164455,15 +169189,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1116), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1449), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164479,15 +169212,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [72620] = 3, + [72666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 8, + ACTIONS(1435), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164496,7 +169230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1463), 27, + ACTIONS(1433), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -164524,10 +169258,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [72663] = 3, + [72709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 8, + ACTIONS(1242), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164536,7 +169270,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1368), 27, + ACTIONS(1239), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -164564,10 +169298,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [72706] = 3, + [72752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 10, + ACTIONS(1435), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164578,7 +169312,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1483), 25, + ACTIONS(1433), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -164604,10 +169338,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [72749] = 3, + [72795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 8, + ACTIONS(1327), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164616,7 +169350,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1356), 27, + ACTIONS(1325), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -164644,10 +169378,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [72792] = 3, + [72838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 8, + ACTIONS(1319), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164655,15 +169389,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1352), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1317), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164679,15 +169412,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [72835] = 3, + [72881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 8, + ACTIONS(1431), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164695,15 +169429,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1340), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1429), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164719,15 +169452,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [72878] = 3, + [72924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 8, + ACTIONS(1427), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164735,15 +169469,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1336), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1425), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164759,15 +169492,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [72921] = 3, + [72967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 8, + ACTIONS(1413), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164776,7 +169510,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1320), 27, + ACTIONS(1415), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -164804,10 +169538,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [72964] = 3, + [73010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(809), 8, + ACTIONS(1517), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164815,15 +169549,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(807), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1515), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164839,15 +169572,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [73007] = 3, + [73053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 8, + ACTIONS(1395), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164855,15 +169589,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1166), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1393), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164879,15 +169612,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [73050] = 3, + [73096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 8, + ACTIONS(1521), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164895,15 +169629,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1360), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1519), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164919,15 +169652,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [73093] = 3, + [73139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 8, + ACTIONS(1399), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164935,15 +169669,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1316), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1397), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164959,15 +169692,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [73136] = 3, + [73182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 10, + ACTIONS(1237), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -164978,7 +169712,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT, anon_sym_async, - ACTIONS(1384), 25, + ACTIONS(1235), 25, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -165004,10 +169738,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [73179] = 3, + [73225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 8, + ACTIONS(1363), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165016,7 +169750,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(637), 27, + ACTIONS(1361), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -165044,10 +169778,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [73222] = 3, + [73268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 8, + ACTIONS(915), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165056,7 +169790,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1276), 27, + ACTIONS(913), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -165084,10 +169818,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [73265] = 3, + [73311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 8, + ACTIONS(1367), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165096,7 +169830,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1308), 27, + ACTIONS(1365), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -165124,10 +169858,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [73308] = 3, + [73354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 8, + ACTIONS(1589), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165136,7 +169870,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1288), 27, + ACTIONS(1587), 27, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -165164,10 +169898,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [73351] = 3, + [73397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 8, + ACTIONS(4116), 1, + anon_sym_Function, + STATE(3044), 1, + sym__function_builtin_identifier, + STATE(2121), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1045), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165175,14 +169916,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1292), 27, + ACTIONS(1043), 24, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -165200,14 +169938,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [73394] = 3, + [73446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 8, + ACTIONS(1210), 10, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165215,15 +169952,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, + anon_sym_as, anon_sym_DOT, - ACTIONS(1372), 27, - anon_sym_RBRACE, + anon_sym_async, + ACTIONS(1208), 25, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165239,26 +169975,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [73437] = 3, + [73489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 8, + ACTIONS(4126), 3, + anon_sym_Function, + anon_sym_this, + sym_identifier, + ACTIONS(1226), 10, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1296), 27, + anon_sym_catch, + anon_sym_else, + anon_sym_with, + anon_sym_implements, + ACTIONS(1224), 21, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -165268,8 +170011,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -165278,13 +170019,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, anon_sym_DOT_DOT, - anon_sym_else, anon_sym_SEMI, - [73480] = 25, + [73533] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(109), 1, + anon_sym_this, + ACTIONS(514), 1, + anon_sym_covariant, + ACTIONS(3908), 1, + sym_identifier, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2459), 1, + sym__covariant, + STATE(2942), 1, + sym__declared_identifier, + STATE(3194), 1, + sym_formal_parameter, + STATE(3406), 1, + sym__type, + STATE(3409), 1, + sym__default_formal_parameter, + STATE(3711), 1, + sym_this, + ACTIONS(135), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(3348), 2, + sym__final_const_var_or_type, + sym_inferred_type, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(2306), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + STATE(2940), 4, + sym__normal_formal_parameter, + sym__function_formal_parameter, + sym__simple_formal_parameter, + sym_constructor_param, + [73615] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3876), 1, + anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, + anon_sym_AMP, + ACTIONS(3917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3919), 1, + anon_sym_QMARK, + ACTIONS(3921), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, + anon_sym_AMP_AMP, + ACTIONS(3925), 1, + sym_equality_operator, + ACTIONS(3927), 1, + anon_sym_DOT_DOT, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2406), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2412), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2415), 1, + aux_sym__if_null_expression, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3934), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(2990), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + [73709] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, @@ -165297,84 +170158,188 @@ static uint16_t ts_small_parse_table[] = { anon_sym_Function, ACTIONS(97), 1, anon_sym_import, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4061), 1, + ACTIONS(4130), 1, anon_sym_enum, - ACTIONS(4063), 1, + ACTIONS(4132), 1, anon_sym_abstract, - ACTIONS(4065), 1, + ACTIONS(4134), 1, anon_sym_class, - ACTIONS(4067), 1, + ACTIONS(4136), 1, anon_sym_library, - ACTIONS(4069), 1, + ACTIONS(4138), 1, anon_sym_covariant, - ACTIONS(4071), 1, + ACTIONS(4140), 1, anon_sym_export, - STATE(1060), 1, + STATE(1120), 1, sym_import_specification, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2445), 1, + STATE(2442), 1, + sym__type_name, + STATE(2488), 1, sym__covariant, - STATE(2491), 1, - sym__export, - STATE(2501), 1, + STATE(2517), 1, sym__import, + STATE(2537), 1, + sym__export, ACTIONS(135), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, + STATE(2635), 2, sym__const_builtin, sym__final_builtin, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(3740), 3, + STATE(3585), 3, sym__final_const_var_or_type, sym__type, sym_inferred_type, - STATE(2393), 4, + STATE(2429), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - [73566] = 4, + [73795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 3, - anon_sym_Function, - anon_sym_this, - sym_identifier, - ACTIONS(1442), 10, + ACTIONS(4142), 1, + anon_sym_DOT, + STATE(2224), 1, + sym__type_dot_identifier, + ACTIONS(1113), 9, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - anon_sym_catch, - anon_sym_else, - anon_sym_with, - anon_sym_implements, - ACTIONS(1440), 21, + anon_sym_as, + anon_sym_async, + ACTIONS(1111), 23, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, + anon_sym_SEMI, + [73841] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3876), 1, + anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, + anon_sym_AMP, + ACTIONS(3917), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3919), 1, + anon_sym_QMARK, + ACTIONS(3921), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, + anon_sym_AMP_AMP, + ACTIONS(3925), 1, + sym_equality_operator, + ACTIONS(3927), 1, + anon_sym_DOT_DOT, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2406), 1, + aux_sym_logical_or_expression_repeat1, + STATE(2412), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2415), 1, + aux_sym__if_null_expression, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3955), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(3009), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + [73935] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 1, + anon_sym_LT, + STATE(2222), 1, + sym_type_arguments, + STATE(2247), 1, + sym__type_args, + ACTIONS(1059), 6, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1057), 25, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -165383,9 +170348,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [73610] = 23, + [73983] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, @@ -165400,41 +170369,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_this, ACTIONS(514), 1, anon_sym_covariant, - ACTIONS(3828), 1, + ACTIONS(3908), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2444), 1, + STATE(2442), 1, + sym__type_name, + STATE(2459), 1, sym__covariant, - STATE(2905), 1, + STATE(2942), 1, sym__declared_identifier, - STATE(3258), 1, + STATE(3194), 1, sym_formal_parameter, - STATE(3343), 1, - sym__type, - STATE(3452), 1, + STATE(3197), 1, sym__default_formal_parameter, - STATE(3725), 1, + STATE(3406), 1, + sym__type, + STATE(3711), 1, sym_this, ACTIONS(135), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, + STATE(2635), 2, sym__const_builtin, sym__final_builtin, - STATE(3090), 2, + STATE(3348), 2, sym__final_const_var_or_type, sym_inferred_type, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(2270), 4, + STATE(2306), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -165444,7 +170413,172 @@ static uint16_t ts_small_parse_table[] = { sym__function_formal_parameter, sym__simple_formal_parameter, sym_constructor_param, - [73692] = 23, + [74065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4146), 1, + anon_sym_DOT, + STATE(2268), 1, + sym__type_dot_identifier, + ACTIONS(1113), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1111), 25, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, + anon_sym_SEMI, + [74111] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4148), 1, + anon_sym_LT, + STATE(2227), 1, + sym_type_arguments, + STATE(2256), 1, + sym__type_args, + ACTIONS(1059), 8, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, + anon_sym_async, + ACTIONS(1057), 23, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, + anon_sym_SEMI, + [74159] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1063), 1, + anon_sym_GT_GT, + STATE(596), 1, + sym_shift_operator, + STATE(2205), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(2181), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(598), 6, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SLASH, + ACTIONS(596), 22, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [74208] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(600), 1, + sym_additive_operator, + STATE(2214), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1047), 24, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [74253] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, @@ -165459,41 +170593,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_this, ACTIONS(514), 1, anon_sym_covariant, - ACTIONS(3828), 1, + ACTIONS(3908), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2444), 1, + STATE(2442), 1, + sym__type_name, + STATE(2459), 1, sym__covariant, - STATE(2905), 1, + STATE(2942), 1, sym__declared_identifier, - STATE(3239), 1, - sym__default_formal_parameter, - STATE(3258), 1, + STATE(3045), 1, sym_formal_parameter, - STATE(3343), 1, + STATE(3406), 1, sym__type, - STATE(3725), 1, + STATE(3711), 1, sym_this, ACTIONS(135), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, + STATE(2635), 2, sym__const_builtin, sym__final_builtin, - STATE(3090), 2, + STATE(3348), 2, sym__final_const_var_or_type, sym_inferred_type, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(2270), 4, + STATE(2306), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -165503,23 +170635,27 @@ static uint16_t ts_small_parse_table[] = { sym__function_formal_parameter, sym__simple_formal_parameter, sym_constructor_param, - [73774] = 6, + [74332] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_LT, - STATE(2191), 1, - sym__type_args, - STATE(2198), 1, - sym_type_arguments, - ACTIONS(985), 6, + ACTIONS(1051), 1, + anon_sym_SLASH, + STATE(590), 1, + sym_multiplicative_operator, + STATE(2208), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1054), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(590), 6, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(983), 25, + ACTIONS(588), 21, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -165536,23 +170672,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [73822] = 5, + [74381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4077), 1, - anon_sym_DOT, - STATE(2210), 1, - sym__type_dot_identifier, - ACTIONS(1060), 9, + STATE(714), 1, + sym_additive_operator, + STATE(2209), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(4012), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(594), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165562,7 +170697,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1058), 23, + ACTIONS(592), 20, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -165574,8 +170709,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, @@ -165584,157 +170717,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [73868] = 29, + [74428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3804), 1, + ACTIONS(3627), 1, + anon_sym_DOT_DOT, + STATE(1675), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1072), 11, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3806), 1, - anon_sym_CARET, - ACTIONS(3808), 1, anon_sym_AMP, - ACTIONS(3845), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1070), 19, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_QMARK, - ACTIONS(3849), 1, anon_sym_PIPE_PIPE, - ACTIONS(3851), 1, anon_sym_AMP_AMP, - ACTIONS(3853), 1, sym_equality_operator, - ACTIONS(3855), 1, - anon_sym_DOT_DOT, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, - sym_shift_operator, - STATE(2171), 1, - aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2362), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2367), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2370), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3873), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(2951), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [73962] = 29, + sym_increment_operator, + anon_sym_is, + anon_sym_as, + anon_sym_QMARK_DOT, + [74473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3804), 1, + STATE(596), 1, + sym_shift_operator, + STATE(2205), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3806), 1, - anon_sym_CARET, - ACTIONS(3808), 1, anon_sym_AMP, - ACTIONS(3845), 1, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1091), 24, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, - ACTIONS(3847), 1, - anon_sym_QMARK, - ACTIONS(3849), 1, anon_sym_PIPE_PIPE, - ACTIONS(3851), 1, anon_sym_AMP_AMP, - ACTIONS(3853), 1, sym_equality_operator, - ACTIONS(3855), 1, - anon_sym_DOT_DOT, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, - sym_shift_operator, - STATE(2171), 1, - aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2362), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2367), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2370), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(2952), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [74056] = 6, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [74518] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, - anon_sym_LT, - STATE(2213), 1, - sym_type_arguments, - STATE(2215), 1, - sym__type_args, - ACTIONS(985), 8, + ACTIONS(1063), 1, + anon_sym_GT_GT, + STATE(717), 1, + sym_shift_operator, + STATE(2212), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(2181), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(598), 8, anon_sym_QMARK, + anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(983), 23, + ACTIONS(596), 20, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -165744,8 +170829,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -165756,16 +170839,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [74104] = 5, + [74567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4081), 1, - anon_sym_DOT, - STATE(2199), 1, - sym__type_dot_identifier, - ACTIONS(1060), 7, + ACTIONS(1451), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165773,8 +170851,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1058), 25, + anon_sym_DOT, + ACTIONS(1449), 25, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -165797,16 +170877,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [74150] = 5, + [74608] = 6, ACTIONS(3), 1, sym_comment, - STATE(660), 1, - sym_shift_operator, - STATE(2174), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 7, + STATE(600), 1, + sym_additive_operator, + STATE(2214), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(4012), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(594), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165814,7 +170896,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(989), 24, + ACTIONS(592), 22, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -165829,8 +170911,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, @@ -165839,14 +170919,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [74195] = 5, + [74655] = 5, ACTIONS(3), 1, sym_comment, - STATE(658), 1, - sym_multiplicative_operator, - STATE(2180), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 7, + STATE(717), 1, + sym_shift_operator, + STATE(2212), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -165854,12 +170934,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1023), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1091), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165875,34 +170954,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [74240] = 5, + [74700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_DOT_DOT, - STATE(1619), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(998), 11, + STATE(714), 1, + sym_additive_operator, + STATE(2209), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(996), 19, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_async, + ACTIONS(1047), 22, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165912,38 +170988,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - sym_increment_operator, anon_sym_is, - anon_sym_as, - anon_sym_QMARK_DOT, - [74285] = 7, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [74745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 1, - anon_sym_GT_GT, - STATE(660), 1, - sym_shift_operator, - STATE(2174), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(2104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(598), 6, + STATE(711), 1, + sym_multiplicative_operator, + STATE(2219), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1086), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(596), 22, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1084), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165951,34 +171026,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [74334] = 5, + [74790] = 22, ACTIONS(3), 1, sym_comment, - STATE(678), 1, - sym_additive_operator, - STATE(2183), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 9, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(109), 1, + anon_sym_this, + ACTIONS(514), 1, + anon_sym_covariant, + ACTIONS(3908), 1, + sym_identifier, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2459), 1, + sym__covariant, + STATE(2942), 1, + sym__declared_identifier, + STATE(3406), 1, + sym__type, + STATE(3467), 1, + sym_formal_parameter, + STATE(3711), 1, + sym_this, + ACTIONS(135), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(3348), 2, + sym__final_const_var_or_type, + sym_inferred_type, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(2306), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + STATE(2940), 4, + sym__normal_formal_parameter, + sym__function_formal_parameter, + sym__simple_formal_parameter, + sym_constructor_param, + [74869] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 1, + anon_sym_SLASH, + STATE(711), 1, + sym_multiplicative_operator, + STATE(2219), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1054), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(590), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1003), 22, + ACTIONS(588), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -165992,16 +171132,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [74379] = 24, + [74918] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, @@ -166014,60 +171151,170 @@ static uint16_t ts_small_parse_table[] = { anon_sym_Function, ACTIONS(97), 1, anon_sym_import, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4061), 1, + ACTIONS(4130), 1, anon_sym_enum, - ACTIONS(4063), 1, + ACTIONS(4132), 1, anon_sym_abstract, - ACTIONS(4065), 1, + ACTIONS(4134), 1, anon_sym_class, - ACTIONS(4069), 1, + ACTIONS(4138), 1, anon_sym_covariant, - ACTIONS(4071), 1, + ACTIONS(4140), 1, anon_sym_export, - STATE(1060), 1, + STATE(1120), 1, sym_import_specification, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2445), 1, + STATE(2442), 1, + sym__type_name, + STATE(2488), 1, sym__covariant, - STATE(2491), 1, - sym__export, - STATE(2501), 1, + STATE(2517), 1, sym__import, + STATE(2537), 1, + sym__export, ACTIONS(135), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, + STATE(2635), 2, sym__const_builtin, sym__final_builtin, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(3740), 3, + STATE(3585), 3, sym__final_const_var_or_type, sym__type, sym_inferred_type, - STATE(2393), 4, + STATE(2429), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - [74462] = 5, + [75001] = 5, ACTIONS(3), 1, sym_comment, - STATE(677), 1, - sym_shift_operator, - STATE(2179), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 9, + STATE(590), 1, + sym_multiplicative_operator, + STATE(2208), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1086), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1084), 24, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [75046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1355), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1353), 25, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, + anon_sym_SEMI, + [75086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1493), 25, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, + anon_sym_SEMI, + [75126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1411), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166077,7 +171324,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(989), 22, + ACTIONS(1409), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -166099,15 +171346,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [74507] = 5, + [75166] = 5, ACTIONS(3), 1, sym_comment, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2184), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 9, + ACTIONS(4150), 1, + anon_sym_CARET, + STATE(2225), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(606), 9, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, + anon_sym_async, + ACTIONS(604), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [75210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1463), 7, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1461), 25, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_Function, + anon_sym_SEMI, + [75250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1355), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166117,7 +171437,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1023), 22, + ACTIONS(1353), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -166139,29 +171459,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [74552] = 7, + [75290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 1, - anon_sym_GT_GT, - STATE(677), 1, - sym_shift_operator, - STATE(2179), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(2104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(598), 8, + ACTIONS(1495), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(596), 20, + ACTIONS(1493), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -166171,6 +171484,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -166181,57 +171496,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [74601] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1010), 1, - anon_sym_SLASH, - STATE(658), 1, - sym_multiplicative_operator, - STATE(2180), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1013), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(575), 6, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(573), 21, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_is, - anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [74650] = 5, + [75330] = 3, ACTIONS(3), 1, sym_comment, - STATE(659), 1, - sym_additive_operator, - STATE(2185), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 7, + ACTIONS(1509), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166239,12 +171509,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1003), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1507), 23, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166260,78 +171529,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [74695] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, - ACTIONS(93), 1, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(514), 1, - anon_sym_covariant, - ACTIONS(3828), 1, - sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2444), 1, - sym__covariant, - STATE(2905), 1, - sym__declared_identifier, - STATE(3034), 1, - sym_formal_parameter, - STATE(3343), 1, - sym__type, - STATE(3725), 1, - sym_this, - ACTIONS(135), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(3090), 2, - sym__final_const_var_or_type, - sym_inferred_type, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(2270), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - STATE(2940), 4, - sym__normal_formal_parameter, - sym__function_formal_parameter, - sym__simple_formal_parameter, - sym_constructor_param, - [74774] = 6, + anon_sym_SEMI, + [75370] = 4, ACTIONS(3), 1, sym_comment, - STATE(678), 1, - sym_additive_operator, - STATE(2183), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(3957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(610), 9, + STATE(2231), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1097), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166341,7 +171550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(608), 20, + ACTIONS(1095), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -166353,6 +171562,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, @@ -166362,29 +171573,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [74821] = 7, + [75412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1010), 1, - anon_sym_SLASH, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2184), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1013), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(575), 8, + ACTIONS(4153), 1, + anon_sym_AMP, + STATE(2231), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(602), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT_GT, + anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(573), 19, + ACTIONS(600), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -166398,23 +171603,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [74870] = 6, + [75456] = 4, ACTIONS(3), 1, sym_comment, - STATE(659), 1, - sym_additive_operator, - STATE(2185), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(3957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(610), 7, + STATE(2253), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166422,12 +171625,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(608), 22, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1117), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166437,75 +171639,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [74917] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(514), 1, - anon_sym_covariant, - ACTIONS(3828), 1, - sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2444), 1, - sym__covariant, - STATE(2905), 1, - sym__declared_identifier, - STATE(3343), 1, - sym__type, - STATE(3406), 1, - sym_formal_parameter, - STATE(3725), 1, - sym_this, - ACTIONS(135), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(3090), 2, - sym__final_const_var_or_type, - sym_inferred_type, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(2270), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - STATE(2940), 4, - sym__normal_formal_parameter, - sym__function_formal_parameter, - sym__simple_formal_parameter, - sym_constructor_param, - [74996] = 3, + [75498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 8, + ACTIONS(1351), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166513,10 +171661,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1264), 25, + ACTIONS(1349), 25, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, @@ -166539,21 +171685,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [75037] = 3, + [75538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 9, + ACTIONS(4156), 1, + anon_sym_PIPE, + STATE(2234), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(610), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1138), 23, + ACTIONS(608), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -166575,12 +171725,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [75077] = 3, + [75582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 9, + ACTIONS(1351), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166590,7 +171739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1134), 23, + ACTIONS(1349), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -166614,14 +171763,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [75117] = 5, + [75622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, - anon_sym_AMP_AMP, - STATE(2190), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 7, + ACTIONS(1553), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166629,7 +171774,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(584), 23, + ACTIONS(1551), 25, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -166637,6 +171782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -166652,11 +171798,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [75161] = 3, + [75662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 7, + STATE(2248), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(1145), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166664,7 +171813,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1120), 25, + ACTIONS(1143), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -166688,12 +171837,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [75201] = 3, + [75704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 7, + STATE(2225), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(1145), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166701,12 +171851,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1150), 25, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1143), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166722,15 +171871,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [75241] = 3, + [75746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, + ACTIONS(1479), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166738,12 +171887,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1348), 25, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1477), 23, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166759,15 +171907,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [75281] = 3, + [75786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 7, + STATE(2234), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1105), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166775,12 +171926,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1138), 25, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1103), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166796,19 +171946,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [75321] = 5, + [75828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, - anon_sym_AMP_AMP, - STATE(2195), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 9, + ACTIONS(1509), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166816,13 +171962,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(584), 21, - anon_sym_LBRACE, + ACTIONS(1507), 25, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -166835,15 +171983,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [75365] = 3, + [75868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 7, + ACTIONS(1467), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166851,7 +171999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1162), 25, + ACTIONS(1465), 25, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -166877,12 +172025,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [75405] = 4, + [75908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_Function, - ACTIONS(1442), 7, + STATE(2272), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1105), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166890,7 +172038,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1440), 24, + ACTIONS(1103), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -166915,10 +172063,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [75447] = 3, + [75950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 7, + STATE(2263), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166926,7 +172076,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1344), 25, + ACTIONS(1125), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -166950,12 +172100,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [75487] = 3, + [75992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 7, + ACTIONS(3245), 1, + anon_sym_Function, + ACTIONS(1226), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -166963,7 +172114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1146), 25, + ACTIONS(1224), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -166987,14 +172138,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [75527] = 4, + [76034] = 4, ACTIONS(3), 1, sym_comment, - STATE(2225), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 7, + ACTIONS(3245), 1, + anon_sym_Function, + ACTIONS(1226), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167002,12 +172152,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1095), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1224), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167023,14 +172172,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [75569] = 3, + [76076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 7, + ACTIONS(1455), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167038,7 +172188,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1364), 25, + ACTIONS(1453), 25, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -167064,47 +172214,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [75609] = 3, + [76116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1324), 23, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4159), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, - anon_sym_SEMI, - [75649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 9, + STATE(2248), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(606), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167112,18 +172229,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1162), 23, - anon_sym_LBRACE, + ACTIONS(604), 23, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_PLUS, @@ -167132,20 +172249,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [75689] = 5, + [76160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4089), 1, - anon_sym_PIPE_PIPE, - STATE(2204), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 7, + STATE(2262), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1097), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167153,13 +172266,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(588), 23, + ACTIONS(1095), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_RPAREN, anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -167177,23 +172291,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [75733] = 5, + [76202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4092), 1, - anon_sym_PIPE, - STATE(2205), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 8, + STATE(2251), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(569), 22, + ACTIONS(1125), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -167216,65 +172329,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [75777] = 5, + [76244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 1, - anon_sym_CARET, - STATE(2206), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(606), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(604), 21, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4162), 1, anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [75821] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4098), 1, - anon_sym_AMP, - STATE(2207), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 8, + STATE(2251), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(565), 22, + ACTIONS(1158), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -167294,14 +172368,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [75865] = 5, + [76288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 1, + ACTIONS(4165), 1, anon_sym_PIPE_PIPE, - STATE(2208), 1, + STATE(2252), 1, aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 9, + ACTIONS(574), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167311,7 +172385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(588), 21, + ACTIONS(572), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -167333,14 +172407,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [75909] = 5, + [76332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_QMARK_QMARK, - STATE(2209), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 9, + ACTIONS(4168), 1, + anon_sym_AMP_AMP, + STATE(2253), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167350,11 +172424,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1105), 21, + ACTIONS(576), 21, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -167372,10 +172446,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [75953] = 3, + [76376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 9, + ACTIONS(1467), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167385,7 +172459,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1146), 23, + ACTIONS(1465), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -167409,49 +172483,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [75993] = 3, + [76416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 7, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1324), 25, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, - anon_sym_SEMI, - [76033] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3170), 1, - anon_sym_Function, - ACTIONS(1442), 9, + ACTIONS(1463), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167461,7 +172496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1440), 22, + ACTIONS(1461), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -167483,11 +172518,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [76075] = 3, + [76456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 9, + ACTIONS(1455), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167497,7 +172533,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1344), 23, + ACTIONS(1453), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -167521,10 +172557,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [76115] = 3, + [76496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 9, + ACTIONS(1479), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167532,11 +172568,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1348), 23, - anon_sym_LBRACE, + ACTIONS(1477), 25, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167552,16 +172589,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_Function, anon_sym_SEMI, - [76155] = 3, + [76536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 9, + ACTIONS(1459), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167571,7 +172607,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1120), 23, + ACTIONS(1457), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -167595,12 +172631,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [76195] = 4, + [76576] = 4, ACTIONS(3), 1, sym_comment, - STATE(2204), 1, + STATE(2265), 1, aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 7, + ACTIONS(1123), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167608,7 +172644,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1087), 24, + ACTIONS(1121), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -167633,21 +172669,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [76237] = 5, + [76618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 1, - anon_sym_AMP, - STATE(2217), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 6, + STATE(2269), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(565), 24, + ACTIONS(1117), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -167672,12 +172707,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [76281] = 4, + [76660] = 3, ACTIONS(3), 1, sym_comment, - STATE(2205), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 9, + ACTIONS(1557), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167687,7 +172720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1091), 22, + ACTIONS(1555), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -167709,19 +172742,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [76323] = 3, + [76700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(4171), 1, + anon_sym_AMP, + STATE(2262), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(602), 6, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1304), 25, + ACTIONS(600), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -167745,49 +172782,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [76363] = 3, + [76744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1152), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1150), 23, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4174), 1, anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, - anon_sym_SEMI, - [76403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1156), 9, + STATE(2263), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167795,12 +172798,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1154), 23, - anon_sym_LBRACE, + ACTIONS(1158), 23, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_QMARK_QMARK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -167815,18 +172818,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, + anon_sym_else, anon_sym_SEMI, - [76443] = 4, + [76788] = 3, ACTIONS(3), 1, sym_comment, - STATE(2190), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 7, + ACTIONS(1459), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167834,7 +172833,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1083), 24, + ACTIONS(1457), 25, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -167858,48 +172857,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_SEMI, - [76485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1158), 23, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, anon_sym_Function, anon_sym_SEMI, - [76525] = 3, + [76828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 7, + ACTIONS(4177), 1, + anon_sym_PIPE_PIPE, + STATE(2265), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167907,14 +172874,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1134), 25, + ACTIONS(572), 23, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_RPAREN, anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, @@ -167931,16 +172897,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [76565] = 5, + [76872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4110), 1, - anon_sym_QMARK_QMARK, - STATE(2225), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 7, + ACTIONS(1557), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167948,12 +172909,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1105), 23, + ACTIONS(1555), 25, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_RPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -167971,11 +172933,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [76609] = 3, + [76912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 7, + STATE(2252), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1123), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -167983,12 +172948,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1154), 25, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1121), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168004,17 +172968,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [76649] = 4, + [76954] = 3, ACTIONS(3), 1, sym_comment, - STATE(2230), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 7, + ACTIONS(1411), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168022,7 +172984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1091), 24, + ACTIONS(1409), 25, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168046,13 +173008,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [76691] = 4, + [76994] = 5, ACTIONS(3), 1, sym_comment, - STATE(2237), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 7, + ACTIONS(4180), 1, + anon_sym_AMP_AMP, + STATE(2269), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168060,7 +173025,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1066), 24, + ACTIONS(576), 23, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168068,7 +173033,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -168085,12 +173049,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [76733] = 4, + [77038] = 3, ACTIONS(3), 1, sym_comment, - STATE(2217), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 7, + ACTIONS(1311), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168098,7 +173060,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1062), 24, + ACTIONS(1309), 25, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168122,27 +173084,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, + anon_sym_Function, anon_sym_SEMI, - [76775] = 5, + [77078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 1, - anon_sym_PIPE, - STATE(2230), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 6, + ACTIONS(1311), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(569), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1309), 23, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168158,22 +173117,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [76819] = 3, + [77118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1160), 7, + ACTIONS(4183), 1, + anon_sym_PIPE, + STATE(2272), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(610), 6, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1158), 25, + ACTIONS(608), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168197,14 +173161,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, - anon_sym_Function, anon_sym_SEMI, - [76859] = 4, + [77162] = 3, ACTIONS(3), 1, sym_comment, - STATE(2209), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 9, + ACTIONS(1553), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168214,7 +173175,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1095), 22, + ACTIONS(1551), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -168236,13 +173197,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, + anon_sym_Function, anon_sym_SEMI, - [76901] = 4, + [77202] = 3, ACTIONS(3), 1, sym_comment, - STATE(2208), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 9, + ACTIONS(1505), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168252,7 +173212,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1087), 22, + ACTIONS(1503), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -168275,67 +173235,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [76943] = 3, + [77241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 9, - anon_sym_QMARK, + ACTIONS(1249), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, anon_sym_as, - anon_sym_async, - ACTIONS(1304), 23, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, + ACTIONS(1252), 3, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_Function, - anon_sym_SEMI, - [76983] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2206), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 9, + ACTIONS(1247), 6, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, anon_sym_async, - ACTIONS(1066), 22, + ACTIONS(1245), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -168344,16 +173268,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [77025] = 3, + [77284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 9, + ACTIONS(1237), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168363,7 +173286,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1364), 23, + ACTIONS(1235), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -168385,16 +173308,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_Function, anon_sym_SEMI, - [77065] = 5, + [77323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4116), 1, - anon_sym_CARET, - STATE(2237), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(606), 7, + ACTIONS(1403), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168402,7 +173320,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(604), 23, + ACTIONS(1401), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168414,6 +173332,7 @@ static uint16_t ts_small_parse_table[] = { sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_PLUS, @@ -168426,12 +173345,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77109] = 4, + [77362] = 3, ACTIONS(3), 1, sym_comment, - STATE(2195), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 9, + ACTIONS(1237), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168439,11 +173356,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1083), 22, - anon_sym_LBRACE, + ACTIONS(1235), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168459,53 +173377,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [77151] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2207), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, anon_sym_as, - anon_sym_async, - ACTIONS(1062), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [77193] = 3, + [77401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 7, + ACTIONS(1471), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168513,7 +173392,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1224), 24, + ACTIONS(1469), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168538,10 +173417,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77232] = 3, + [77440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 9, + ACTIONS(1525), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168549,11 +173428,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1483), 22, - anon_sym_LBRACE, + ACTIONS(1523), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168569,53 +173449,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [77271] = 5, + [77479] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 3, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - ACTIONS(1208), 3, + ACTIONS(4024), 1, + anon_sym_LPAREN, + ACTIONS(4026), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_as, - ACTIONS(1469), 6, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, + STATE(2389), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3413), 1, + sym_type_arguments, + STATE(2291), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(983), 3, + anon_sym_EQ, + anon_sym_DOT, anon_sym_async, - ACTIONS(1467), 19, + ACTIONS(981), 21, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [77314] = 3, + [77530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 9, + ACTIONS(1271), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168623,11 +173506,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1396), 22, - anon_sym_LBRACE, + ACTIONS(1269), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168643,69 +173527,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [77353] = 3, + [77569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 9, - anon_sym_QMARK, + ACTIONS(1407), 4, anon_sym_LT, anon_sym_GT, + anon_sym_as, + anon_sym_async, + ACTIONS(1249), 5, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1236), 22, + ACTIONS(1405), 10, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [77392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1384), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1252), 12, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -168714,16 +173569,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [77431] = 3, + [77612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 9, + ACTIONS(1517), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168731,11 +173580,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1192), 22, - anon_sym_LBRACE, + ACTIONS(1515), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168751,15 +173601,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [77470] = 3, + [77651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 7, + ACTIONS(1593), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168767,7 +173616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1396), 24, + ACTIONS(1591), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168792,24 +173641,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77509] = 5, + [77690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 2, + ACTIONS(1249), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1213), 4, + ACTIONS(1252), 4, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, anon_sym_as, - ACTIONS(1469), 5, + ACTIONS(1247), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1467), 20, + ACTIONS(1245), 20, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168830,46 +173679,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77552] = 3, + [77733] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, - anon_sym_QMARK, + ACTIONS(973), 1, + anon_sym_DOT, + ACTIONS(4026), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1312), 24, + ACTIONS(4039), 1, + anon_sym_LPAREN, + STATE(905), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3447), 1, + sym_type_arguments, + STATE(754), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(971), 23, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77591] = 3, + [77784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 7, + ACTIONS(1521), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168877,7 +173732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1483), 24, + ACTIONS(1519), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168902,10 +173757,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77630] = 3, + [77823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 7, + ACTIONS(743), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168913,12 +173768,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(785), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(741), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168934,14 +173788,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [77669] = 3, + [77862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 7, + ACTIONS(1505), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -168949,7 +173804,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1228), 24, + ACTIONS(1503), 24, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -168974,46 +173829,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77708] = 3, + [77901] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 9, - anon_sym_QMARK, + ACTIONS(4024), 1, + anon_sym_LPAREN, + ACTIONS(4026), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_as, + STATE(2389), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3413), 1, + sym_type_arguments, + STATE(2309), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(973), 3, + anon_sym_EQ, + anon_sym_DOT, anon_sym_async, - ACTIONS(1264), 22, + ACTIONS(971), 21, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [77747] = 3, + [77952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 9, + ACTIONS(1525), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169023,7 +173884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1228), 22, + ACTIONS(1523), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -169046,25 +173907,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [77786] = 9, + [77991] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(849), 1, + ACTIONS(983), 1, anon_sym_DOT, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, + ACTIONS(4026), 1, anon_sym_LT, - STATE(890), 1, + ACTIONS(4039), 1, + anon_sym_LPAREN, + STATE(905), 1, sym_arguments, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3516), 1, + STATE(3447), 1, sym_type_arguments, - STATE(721), 2, + STATE(2287), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(847), 23, + ACTIONS(981), 23, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -169088,29 +173949,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77837] = 3, + [78042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, - anon_sym_QMARK, + ACTIONS(1407), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1249), 5, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1248), 24, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, + ACTIONS(1252), 12, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -169119,15 +173974,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, + ACTIONS(1405), 12, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_is, anon_sym_as, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [77876] = 3, + [78085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 9, + ACTIONS(743), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169135,11 +173998,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1312), 22, - anon_sym_LBRACE, + ACTIONS(741), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169155,30 +174019,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [77915] = 5, + [78124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - ACTIONS(1213), 3, + ACTIONS(1405), 3, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_is, - ACTIONS(1469), 6, + ACTIONS(1407), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_as, + ACTIONS(1247), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_async, - ACTIONS(1467), 19, + ACTIONS(1245), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -169198,10 +174061,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [77958] = 3, + [78167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 9, + ACTIONS(1577), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169209,11 +174072,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1248), 22, - anon_sym_LBRACE, + ACTIONS(1575), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169229,15 +174093,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [77997] = 3, + [78206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 7, + ACTIONS(3888), 1, + anon_sym_DOT_DOT, + STATE(1946), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1072), 8, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169245,12 +174113,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1471), 24, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT, + ACTIONS(1070), 20, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169267,55 +174134,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [78036] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_LT, - ACTIONS(4119), 1, - anon_sym_LPAREN, - STATE(1911), 1, - sym__type_args, - STATE(2364), 1, - sym_arguments, - STATE(3345), 1, - sym_type_arguments, - STATE(2261), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(839), 3, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_async, - ACTIONS(837), 21, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [78087] = 3, + [78249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1386), 7, + ACTIONS(1593), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169323,12 +174146,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1384), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1591), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169344,14 +174166,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [78126] = 3, + [78288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 7, + ACTIONS(1403), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169359,12 +174182,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1236), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1401), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169380,56 +174202,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [78165] = 9, + [78327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(813), 1, - anon_sym_DOT, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, + ACTIONS(1407), 2, anon_sym_LT, - STATE(890), 1, - sym_arguments, - STATE(1911), 1, - sym__type_args, - STATE(3516), 1, - sym_type_arguments, - STATE(2255), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(811), 23, + anon_sym_GT, + ACTIONS(1405), 4, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_is, + anon_sym_as, + ACTIONS(1247), 5, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1245), 20, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_RPAREN, - anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [78216] = 3, + [78370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 9, + ACTIONS(1347), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169439,7 +174258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1224), 22, + ACTIONS(1345), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -169462,36 +174281,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [78255] = 5, + [78409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 2, + ACTIONS(1577), 9, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - ACTIONS(1210), 5, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1206), 12, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - ACTIONS(1213), 12, + anon_sym_async, + ACTIONS(1575), 22, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -169500,33 +174311,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [78298] = 5, + anon_sym_is, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [78448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 2, + ACTIONS(1521), 9, + anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - ACTIONS(1206), 4, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_as, - ACTIONS(1469), 5, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1467), 20, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1519), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -169535,94 +174347,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [78341] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 1, - anon_sym_LT, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(1911), 1, - sym__type_args, - STATE(2364), 1, - sym_arguments, - STATE(3345), 1, - sym_type_arguments, - STATE(2261), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(849), 3, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_async, - ACTIONS(847), 21, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_QMARK_DOT, + anon_sym_is, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [78392] = 9, + [78487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(1517), 9, + anon_sym_QMARK, anon_sym_LT, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(1911), 1, - sym__type_args, - STATE(2364), 1, - sym_arguments, - STATE(3345), 1, - sym_type_arguments, - STATE(2268), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(813), 3, - anon_sym_EQ, - anon_sym_DOT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_as, anon_sym_async, - ACTIONS(811), 21, + ACTIONS(1515), 22, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_QMARK_DOT, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_is, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [78443] = 21, + [78526] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, @@ -169635,87 +174402,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_Function, ACTIONS(109), 1, anon_sym_this, - ACTIONS(3828), 1, + ACTIONS(3908), 1, sym_identifier, - ACTIONS(4122), 1, + ACTIONS(4186), 1, anon_sym_covariant, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2458), 1, sym__covariant, - STATE(2905), 1, + STATE(2942), 1, sym__declared_identifier, - STATE(3343), 1, + STATE(3406), 1, sym__type, - STATE(3725), 1, + STATE(3711), 1, sym_this, ACTIONS(135), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, + STATE(2635), 2, sym__const_builtin, sym__final_builtin, - STATE(3219), 2, + STATE(3240), 2, sym__final_const_var_or_type, sym_inferred_type, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, - sym_void_type, - STATE(2947), 3, - sym__function_formal_parameter, - sym__simple_formal_parameter, - sym_constructor_param, - STATE(2368), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - [78518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1194), 7, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1192), 24, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [78557] = 3, + sym_void_type, + STATE(2966), 3, + sym__function_formal_parameter, + sym__simple_formal_parameter, + sym_constructor_param, + STATE(2390), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + [78601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(787), 9, + ACTIONS(1451), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169725,7 +174456,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(785), 22, + ACTIONS(1449), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -169748,10 +174479,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [78596] = 3, + [78640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 7, + ACTIONS(1471), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169759,12 +174490,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1459), 24, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_async, + ACTIONS(1469), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169780,52 +174510,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, - anon_sym_as, anon_sym_DOT_DOT, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [78635] = 5, + [78679] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT_DOT, - STATE(1772), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(998), 8, - anon_sym_QMARK, + ACTIONS(1014), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, + ACTIONS(4188), 1, + anon_sym_LPAREN, + STATE(2389), 1, + sym_arguments, + STATE(2492), 1, + sym__type_args, + STATE(3413), 1, + sym_type_arguments, + STATE(2309), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(1009), 3, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(996), 20, + anon_sym_async, + ACTIONS(1007), 21, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_QMARK_DOT, - [78678] = 3, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [78730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 9, + ACTIONS(1347), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169833,11 +174568,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_as, - anon_sym_async, - ACTIONS(1471), 22, - anon_sym_LBRACE, + ACTIONS(1345), 24, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169853,15 +174589,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, + anon_sym_as, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [78717] = 3, + [78769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 9, + ACTIONS(1271), 9, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -169871,7 +174606,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_as, anon_sym_async, - ACTIONS(1459), 22, + ACTIONS(1269), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_QMARK_QMARK, @@ -169894,65 +174629,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [78756] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_as, - anon_sym_async, - ACTIONS(1210), 5, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1206), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_is, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(1213), 12, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - [78799] = 11, + [78808] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2079), 1, + ACTIONS(2164), 1, anon_sym_DOT, - ACTIONS(2081), 1, + ACTIONS(2166), 1, anon_sym_QMARK_DOT, - ACTIONS(3946), 1, + ACTIONS(4035), 1, anon_sym_LBRACK, - STATE(539), 1, + STATE(543), 1, sym__assignment_operator, - STATE(871), 1, + STATE(939), 1, sym_unconditional_assignable_selector, - STATE(1447), 1, + STATE(1480), 1, sym__cascade_assignment_section, - STATE(2264), 1, + STATE(2293), 1, sym_assignable_selector, - STATE(2349), 2, + STATE(2382), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - ACTIONS(807), 8, + ACTIONS(913), 8, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -169961,7 +174658,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - ACTIONS(3948), 13, + ACTIONS(4037), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -169975,7 +174672,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [78853] = 25, + [78862] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, + sym_equality_operator, + ACTIONS(4065), 1, + anon_sym_CARET, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, + anon_sym_AMP, + ACTIONS(4195), 1, + anon_sym_DOT, + STATE(605), 1, + sym_relational_operator, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(1835), 1, + sym_unconditional_assignable_selector, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + [78944] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(546), 1, @@ -169984,172 +174738,217 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(4124), 1, + ACTIONS(4197), 1, anon_sym_LBRACK, - ACTIONS(4126), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4128), 1, + ACTIONS(4201), 1, anon_sym_CARET, - ACTIONS(4130), 1, + ACTIONS(4203), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4205), 1, anon_sym_DOT, - STATE(183), 1, - aux_sym_shift_expression_repeat1, - STATE(186), 1, + STATE(214), 1, aux_sym_additive_expression_repeat1, - STATE(190), 1, + STATE(221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(196), 1, + STATE(223), 1, + aux_sym_shift_expression_repeat1, + STATE(224), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(197), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(202), 1, + STATE(226), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(211), 1, + STATE(237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(296), 1, sym_unconditional_assignable_selector, - STATE(648), 1, - sym_shift_operator, - STATE(649), 1, - sym_additive_operator, - STATE(650), 1, + STATE(598), 1, sym_multiplicative_operator, - STATE(701), 1, + STATE(601), 1, + sym_additive_operator, + STATE(640), 1, sym_relational_operator, - ACTIONS(1050), 2, + STATE(688), 1, + sym_shift_operator, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [78935] = 25, + [79026] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_async, + ACTIONS(4018), 1, + anon_sym_LBRACK, + ACTIONS(4020), 1, + anon_sym_EQ, + ACTIONS(4028), 1, + anon_sym_DOT, + ACTIONS(4030), 1, + anon_sym_QMARK_DOT, + STATE(411), 1, + sym__assignment_operator, + STATE(1808), 1, + sym__cascade_assignment_section, + STATE(2281), 1, + sym_assignable_selector, + STATE(2402), 1, + sym_unconditional_assignable_selector, + STATE(2383), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(913), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(4022), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [79084] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2256), 1, - sym_equality_operator, - ACTIONS(2372), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(4134), 1, - anon_sym_PIPE, - ACTIONS(4136), 1, + ACTIONS(3405), 1, + sym_equality_operator, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(4138), 1, + ACTIONS(4207), 1, + anon_sym_PIPE, + ACTIONS(4209), 1, anon_sym_AMP, - ACTIONS(4140), 1, + ACTIONS(4211), 1, anon_sym_DOT, - STATE(570), 1, + STATE(684), 1, sym_relational_operator, - STATE(571), 1, - sym_additive_operator, - STATE(572), 1, + STATE(741), 1, sym_shift_operator, - STATE(686), 1, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, sym_multiplicative_operator, - STATE(1194), 1, + STATE(1432), 1, + sym_unconditional_assignable_selector, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, + STATE(1904), 1, aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1927), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(2026), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1407), 1, - sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + STATE(2027), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2028), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79017] = 25, + [79166] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3238), 1, - sym_equality_operator, - ACTIONS(3242), 1, - anon_sym_CARET, - ACTIONS(3433), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(4142), 1, + ACTIONS(4065), 1, + anon_sym_CARET, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4144), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(4211), 1, anon_sym_DOT, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, - sym_multiplicative_operator, - STATE(638), 1, + ACTIONS(4213), 1, + sym_equality_operator, + STATE(713), 1, sym_relational_operator, - STATE(1616), 1, - aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(1432), 1, + sym_unconditional_assignable_selector, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1656), 1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1877), 1, - sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79099] = 3, + [79248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 13, + ACTIONS(4217), 13, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, @@ -170163,7 +174962,7 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4148), 17, + ACTIONS(4215), 17, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -170181,3167 +174980,3069 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_this, sym_identifier, - [79137] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2079), 1, - anon_sym_DOT, - ACTIONS(2081), 1, - anon_sym_QMARK_DOT, - ACTIONS(3946), 1, - anon_sym_LBRACK, - STATE(539), 1, - sym__assignment_operator, - STATE(871), 1, - sym_unconditional_assignable_selector, - STATE(1373), 1, - sym__cascade_assignment_section, - STATE(2264), 1, - sym_assignable_selector, - STATE(2349), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(637), 8, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - ACTIONS(3948), 13, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [79191] = 25, + [79286] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3433), 1, - anon_sym_LBRACK, - ACTIONS(3996), 1, + ACTIONS(3295), 1, + sym_equality_operator, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(4146), 1, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4195), 1, anon_sym_DOT, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4154), 1, + ACTIONS(4219), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4221), 1, anon_sym_AMP, - STATE(578), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(586), 1, - sym_relational_operator, - STATE(604), 1, + STATE(594), 1, sym_additive_operator, - STATE(605), 1, + STATE(604), 1, sym_shift_operator, - STATE(1877), 1, - sym_unconditional_assignable_selector, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(669), 1, + sym_relational_operator, + STATE(1676), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + STATE(1835), 1, + sym_unconditional_assignable_selector, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79273] = 25, + [79368] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3433), 1, + ACTIONS(3475), 1, anon_sym_LBRACK, - ACTIONS(3802), 1, - sym_equality_operator, - ACTIONS(3806), 1, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4158), 1, + ACTIONS(4191), 1, anon_sym_PIPE, - ACTIONS(4160), 1, + ACTIONS(4193), 1, anon_sym_AMP, - STATE(602), 1, + ACTIONS(4195), 1, + anon_sym_DOT, + ACTIONS(4213), 1, + sym_equality_operator, + STATE(713), 1, sym_relational_operator, - STATE(658), 1, + STATE(720), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(721), 1, sym_additive_operator, - STATE(660), 1, + STATE(739), 1, sym_shift_operator, - STATE(1877), 1, + STATE(1835), 1, sym_unconditional_assignable_selector, - STATE(2171), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(2227), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79355] = 25, + [79450] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2372), 1, - anon_sym_LBRACK, - ACTIONS(3992), 1, - sym_equality_operator, - ACTIONS(3996), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(4140), 1, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4195), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4219), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4221), 1, anon_sym_AMP, - STATE(578), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(594), 1, sym_additive_operator, - STATE(605), 1, + STATE(604), 1, sym_shift_operator, - STATE(714), 1, + STATE(713), 1, sym_relational_operator, - STATE(1441), 1, - sym_unconditional_assignable_selector, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(1676), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + STATE(1835), 1, + sym_unconditional_assignable_selector, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79437] = 25, + [79532] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2372), 1, + ACTIONS(2309), 1, + sym_equality_operator, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(3806), 1, + ACTIONS(4223), 1, + anon_sym_PIPE, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3853), 1, - sym_equality_operator, - ACTIONS(4140), 1, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, anon_sym_DOT, - ACTIONS(4158), 1, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, + sym_shift_operator, + STATE(666), 1, + sym_additive_operator, + STATE(673), 1, + sym_relational_operator, + STATE(1255), 1, + aux_sym_shift_expression_repeat1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1294), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1297), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1389), 1, + sym_unconditional_assignable_selector, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + [79614] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(1664), 1, + anon_sym_CARET, + ACTIONS(1959), 1, + sym_equality_operator, + ACTIONS(4231), 1, + anon_sym_LBRACK, + ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4160), 1, + ACTIONS(4235), 1, anon_sym_AMP, - STATE(651), 1, + ACTIONS(4237), 1, + anon_sym_DOT, + STATE(597), 1, sym_relational_operator, - STATE(658), 1, + STATE(671), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(672), 1, sym_additive_operator, - STATE(660), 1, + STATE(674), 1, sym_shift_operator, - STATE(1441), 1, + STATE(794), 1, sym_unconditional_assignable_selector, - STATE(2171), 1, + STATE(800), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, + STATE(801), 1, aux_sym_additive_expression_repeat1, - STATE(2227), 1, + STATE(804), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(894), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(895), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, + STATE(896), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79519] = 25, + [79696] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2164), 1, + anon_sym_DOT, + ACTIONS(2166), 1, + anon_sym_QMARK_DOT, + ACTIONS(4035), 1, + anon_sym_LBRACK, + STATE(543), 1, + sym__assignment_operator, + STATE(939), 1, + sym_unconditional_assignable_selector, + STATE(1406), 1, + sym__cascade_assignment_section, + STATE(2293), 1, + sym_assignable_selector, + STATE(2382), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(684), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + ACTIONS(4037), 13, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [79750] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(1660), 1, sym_equality_operator, - ACTIONS(3372), 1, + ACTIONS(1664), 1, anon_sym_CARET, - ACTIONS(3433), 1, + ACTIONS(4231), 1, anon_sym_LBRACK, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4162), 1, + ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4164), 1, + ACTIONS(4235), 1, anon_sym_AMP, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, + ACTIONS(4237), 1, + anon_sym_DOT, + STATE(671), 1, sym_multiplicative_operator, - STATE(603), 1, + STATE(672), 1, + sym_additive_operator, + STATE(674), 1, + sym_shift_operator, + STATE(710), 1, sym_relational_operator, - STATE(1877), 1, + STATE(794), 1, sym_unconditional_assignable_selector, - STATE(1895), 1, + STATE(800), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, + STATE(801), 1, aux_sym_additive_expression_repeat1, - STATE(1904), 1, + STATE(804), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, + STATE(894), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + STATE(895), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(896), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79601] = 25, + [79832] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2372), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(3802), 1, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3806), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(4140), 1, + ACTIONS(4211), 1, anon_sym_DOT, - ACTIONS(4158), 1, + ACTIONS(4239), 1, anon_sym_PIPE, - ACTIONS(4160), 1, + ACTIONS(4241), 1, anon_sym_AMP, - STATE(602), 1, - sym_relational_operator, - STATE(658), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + STATE(596), 1, sym_shift_operator, - STATE(1441), 1, + STATE(600), 1, + sym_additive_operator, + STATE(742), 1, + sym_relational_operator, + STATE(1432), 1, sym_unconditional_assignable_selector, - STATE(2171), 1, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2237), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79683] = 25, + [79914] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3433), 1, - anon_sym_LBRACK, - ACTIONS(3992), 1, + ACTIONS(3405), 1, sym_equality_operator, - ACTIONS(3996), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(4146), 1, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4195), 1, anon_sym_DOT, - ACTIONS(4154), 1, + ACTIONS(4207), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4209), 1, anon_sym_AMP, - STATE(578), 1, - sym_multiplicative_operator, - STATE(604), 1, - sym_additive_operator, - STATE(605), 1, - sym_shift_operator, - STATE(714), 1, + STATE(684), 1, sym_relational_operator, - STATE(1877), 1, + STATE(741), 1, + sym_shift_operator, + STATE(743), 1, + sym_additive_operator, + STATE(744), 1, + sym_multiplicative_operator, + STATE(1835), 1, sym_unconditional_assignable_selector, - STATE(2375), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(1904), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, + STATE(1927), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2026), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(2027), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2028), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79765] = 25, + [79996] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2372), 1, - anon_sym_LBRACK, - ACTIONS(3996), 1, + ACTIONS(1664), 1, anon_sym_CARET, - ACTIONS(4140), 1, - anon_sym_DOT, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4154), 1, + ACTIONS(4231), 1, + anon_sym_LBRACK, + ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4235), 1, anon_sym_AMP, - STATE(578), 1, + ACTIONS(4237), 1, + anon_sym_DOT, + STATE(671), 1, sym_multiplicative_operator, - STATE(586), 1, - sym_relational_operator, - STATE(604), 1, + STATE(672), 1, sym_additive_operator, - STATE(605), 1, + STATE(674), 1, sym_shift_operator, - STATE(1441), 1, + STATE(713), 1, + sym_relational_operator, + STATE(794), 1, sym_unconditional_assignable_selector, - STATE(2375), 1, + STATE(800), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(801), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, + STATE(804), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(894), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(895), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(896), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79847] = 27, + [80078] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(592), 1, - anon_sym_COLON, - ACTIONS(3994), 1, - anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(3481), 1, + anon_sym_LBRACK, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3998), 1, - anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(3944), 1, sym_equality_operator, - ACTIONS(4166), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, - anon_sym_QMARK, - ACTIONS(4170), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, - anon_sym_AMP_AMP, - STATE(578), 1, + ACTIONS(4243), 1, + anon_sym_PIPE, + ACTIONS(4245), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + anon_sym_DOT, + STATE(692), 1, + sym_relational_operator, + STATE(711), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(714), 1, sym_additive_operator, - STATE(605), 1, + STATE(717), 1, sym_shift_operator, - STATE(2375), 1, + STATE(1876), 1, + sym_unconditional_assignable_selector, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(2216), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [79933] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(809), 1, - anon_sym_async, - ACTIONS(3963), 1, - anon_sym_LBRACK, - ACTIONS(3965), 1, - anon_sym_EQ, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(3973), 1, - anon_sym_QMARK_DOT, - STATE(463), 1, - sym__assignment_operator, - STATE(1779), 1, - sym__cascade_assignment_section, - STATE(2269), 1, - sym_assignable_selector, - STATE(2360), 1, - sym_unconditional_assignable_selector, - STATE(2350), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(807), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(3967), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [79991] = 25, + [80160] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3372), 1, + ACTIONS(1187), 1, + sym_equality_operator, + ACTIONS(1191), 1, anon_sym_CARET, - ACTIONS(3433), 1, + ACTIONS(4197), 1, anon_sym_LBRACK, - ACTIONS(4146), 1, + ACTIONS(4205), 1, anon_sym_DOT, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4162), 1, + ACTIONS(4249), 1, anon_sym_PIPE, - ACTIONS(4164), 1, + ACTIONS(4251), 1, anon_sym_AMP, - STATE(586), 1, + STATE(296), 1, + sym_unconditional_assignable_selector, + STATE(595), 1, sym_relational_operator, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, + STATE(642), 1, sym_multiplicative_operator, - STATE(1877), 1, - sym_unconditional_assignable_selector, - STATE(1895), 1, + STATE(643), 1, + sym_additive_operator, + STATE(644), 1, + sym_shift_operator, + STATE(760), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, + STATE(763), 1, aux_sym_additive_expression_repeat1, - STATE(1904), 1, + STATE(764), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, + STATE(779), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, + STATE(780), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, + STATE(781), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80073] = 25, + [80242] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(546), 1, + sym_equality_operator, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2372), 1, + ACTIONS(4197), 1, anon_sym_LBRACK, - ACTIONS(3238), 1, - sym_equality_operator, - ACTIONS(3242), 1, - anon_sym_CARET, - ACTIONS(4140), 1, - anon_sym_DOT, - ACTIONS(4142), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4144), 1, + ACTIONS(4201), 1, + anon_sym_CARET, + ACTIONS(4203), 1, anon_sym_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, - sym_multiplicative_operator, - STATE(638), 1, - sym_relational_operator, - STATE(1441), 1, - sym_unconditional_assignable_selector, - STATE(1616), 1, + ACTIONS(4205), 1, + anon_sym_DOT, + STATE(214), 1, aux_sym_additive_expression_repeat1, - STATE(1631), 1, - aux_sym_shift_expression_repeat1, - STATE(1635), 1, + STATE(221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1656), 1, + STATE(223), 1, + aux_sym_shift_expression_repeat1, + STATE(224), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(226), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, + STATE(237), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + STATE(266), 1, + sym_unconditional_assignable_selector, + STATE(598), 1, + sym_multiplicative_operator, + STATE(601), 1, + sym_additive_operator, + STATE(640), 1, + sym_relational_operator, + STATE(688), 1, + sym_shift_operator, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80155] = 25, + [80324] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2324), 1, - anon_sym_LBRACK, - ACTIONS(4152), 1, + ACTIONS(1664), 1, + anon_sym_CARET, + ACTIONS(1959), 1, sym_equality_operator, - ACTIONS(4174), 1, + ACTIONS(4197), 1, + anon_sym_LBRACK, + ACTIONS(4205), 1, + anon_sym_DOT, + ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4176), 1, - anon_sym_CARET, - ACTIONS(4178), 1, + ACTIONS(4235), 1, anon_sym_AMP, - ACTIONS(4180), 1, - anon_sym_DOT, - STATE(574), 1, - sym_shift_operator, - STATE(575), 1, - sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(586), 1, + STATE(296), 1, + sym_unconditional_assignable_selector, + STATE(597), 1, sym_relational_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(671), 1, + sym_multiplicative_operator, + STATE(672), 1, + sym_additive_operator, + STATE(674), 1, + sym_shift_operator, + STATE(800), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1289), 1, + STATE(801), 1, + aux_sym_additive_expression_repeat1, + STATE(804), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(894), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1374), 1, - sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + STATE(895), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(896), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80237] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_async, - ACTIONS(3963), 1, - anon_sym_LBRACK, - ACTIONS(3965), 1, - anon_sym_EQ, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(3973), 1, - anon_sym_QMARK_DOT, - STATE(463), 1, - sym__assignment_operator, - STATE(1773), 1, - sym__cascade_assignment_section, - STATE(2269), 1, - sym_assignable_selector, - STATE(2360), 1, - sym_unconditional_assignable_selector, - STATE(2350), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(637), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - ACTIONS(3967), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [80295] = 25, + [80406] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2237), 1, - sym_equality_operator, - ACTIONS(2324), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(4174), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4223), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(4178), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4180), 1, + ACTIONS(4229), 1, anon_sym_DOT, - STATE(574), 1, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, sym_shift_operator, - STATE(575), 1, + STATE(666), 1, sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(653), 1, + STATE(713), 1, sym_relational_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, + STATE(1294), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1289), 1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1374), 1, + STATE(1389), 1, sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80377] = 25, + [80488] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3242), 1, - anon_sym_CARET, - ACTIONS(3433), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(4142), 1, + ACTIONS(3858), 1, + sym_equality_operator, + ACTIONS(3862), 1, + anon_sym_CARET, + ACTIONS(4229), 1, + anon_sym_DOT, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4144), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4152), 1, - sym_equality_operator, - STATE(586), 1, + STATE(703), 1, sym_relational_operator, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(1616), 1, - aux_sym_additive_expression_repeat1, - STATE(1631), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(1444), 1, + sym_unconditional_assignable_selector, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(1635), 1, + STATE(2216), 1, + aux_sym_additive_expression_repeat1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1656), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, + STATE(2230), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1877), 1, - sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80459] = 25, + [80570] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2372), 1, + ACTIONS(3436), 1, + anon_sym_CARET, + ACTIONS(3481), 1, anon_sym_LBRACK, - ACTIONS(4134), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4247), 1, + anon_sym_DOT, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4136), 1, - anon_sym_CARET, - ACTIONS(4138), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(4140), 1, - anon_sym_DOT, - ACTIONS(4152), 1, - sym_equality_operator, - STATE(571), 1, + STATE(593), 1, + sym_multiplicative_operator, + STATE(630), 1, sym_additive_operator, - STATE(572), 1, + STATE(633), 1, sym_shift_operator, - STATE(586), 1, + STATE(713), 1, sym_relational_operator, - STATE(686), 1, - sym_multiplicative_operator, - STATE(1194), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, + STATE(1763), 1, aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(1764), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1407), 1, + STATE(1876), 1, sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + STATE(1965), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1968), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80541] = 25, + [80652] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2324), 1, - anon_sym_LBRACK, - ACTIONS(3786), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(4180), 1, + ACTIONS(2459), 1, + anon_sym_LBRACK, + ACTIONS(4211), 1, anon_sym_DOT, - ACTIONS(4182), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4184), 1, + ACTIONS(4259), 1, + anon_sym_CARET, + ACTIONS(4261), 1, anon_sym_AMP, - STATE(629), 1, - sym_relational_operator, - STATE(677), 1, + STATE(653), 1, sym_shift_operator, - STATE(678), 1, - sym_additive_operator, STATE(679), 1, + sym_additive_operator, + STATE(686), 1, sym_multiplicative_operator, - STATE(1327), 1, - sym_unconditional_assignable_selector, - STATE(2175), 1, + STATE(734), 1, + sym_relational_operator, + STATE(1254), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(1257), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, + STATE(1286), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, + STATE(1287), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + STATE(1383), 1, + sym_unconditional_assignable_selector, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80623] = 25, + [80734] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3344), 1, - anon_sym_CARET, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4186), 1, + ACTIONS(580), 1, + anon_sym_COLON, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(4188), 1, + ACTIONS(4065), 1, + anon_sym_CARET, + ACTIONS(4067), 1, anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_DOT, - STATE(579), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4263), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4265), 1, + anon_sym_QMARK, + ACTIONS(4267), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4269), 1, + anon_sym_AMP_AMP, + STATE(720), 1, sym_multiplicative_operator, - STATE(582), 1, + STATE(721), 1, sym_additive_operator, - STATE(583), 1, + STATE(739), 1, sym_shift_operator, - STATE(586), 1, - sym_relational_operator, - STATE(1784), 1, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(1787), 1, - aux_sym_shift_expression_repeat1, - STATE(1848), 1, - sym_unconditional_assignable_selector, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1990), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2444), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2448), 1, + aux_sym__if_null_expression, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80705] = 25, + [80820] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3433), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(3806), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4152), 1, + ACTIONS(3925), 1, sym_equality_operator, - ACTIONS(4158), 1, + ACTIONS(4211), 1, + anon_sym_DOT, + ACTIONS(4239), 1, anon_sym_PIPE, - ACTIONS(4160), 1, + ACTIONS(4241), 1, anon_sym_AMP, - STATE(586), 1, - sym_relational_operator, - STATE(658), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + STATE(596), 1, sym_shift_operator, - STATE(1877), 1, + STATE(600), 1, + sym_additive_operator, + STATE(639), 1, + sym_relational_operator, + STATE(1432), 1, sym_unconditional_assignable_selector, - STATE(2171), 1, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, - aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(2237), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80787] = 27, + [80902] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(600), 1, + ACTIONS(572), 1, anon_sym_COLON, - ACTIONS(3994), 1, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(4067), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(578), 1, + STATE(720), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(721), 1, sym_additive_operator, - STATE(605), 1, + STATE(739), 1, sym_shift_operator, - STATE(2375), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80873] = 25, + [80988] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3340), 1, - sym_equality_operator, - ACTIONS(3344), 1, - anon_sym_CARET, - ACTIONS(3403), 1, + ACTIONS(3475), 1, anon_sym_LBRACK, - ACTIONS(4186), 1, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3925), 1, + sym_equality_operator, + ACTIONS(4195), 1, + anon_sym_DOT, + ACTIONS(4239), 1, anon_sym_PIPE, - ACTIONS(4188), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_DOT, - STATE(579), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(582), 1, - sym_additive_operator, - STATE(583), 1, + STATE(596), 1, sym_shift_operator, - STATE(681), 1, + STATE(600), 1, + sym_additive_operator, + STATE(639), 1, sym_relational_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, + STATE(1835), 1, + sym_unconditional_assignable_selector, + STATE(2206), 1, aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(1848), 1, - sym_unconditional_assignable_selector, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1990), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [80955] = 25, + [81070] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2237), 1, - sym_equality_operator, - ACTIONS(2324), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(4174), 1, - anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4061), 1, + sym_equality_operator, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(4178), 1, + ACTIONS(4191), 1, + anon_sym_PIPE, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4180), 1, + ACTIONS(4211), 1, anon_sym_DOT, - STATE(574), 1, - sym_shift_operator, - STATE(575), 1, - sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(653), 1, + STATE(605), 1, sym_relational_operator, - STATE(1220), 1, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(1432), 1, + sym_unconditional_assignable_selector, + STATE(2386), 1, + aux_sym_shift_expression_repeat1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(1222), 1, - aux_sym_shift_expression_repeat1, - STATE(1251), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1289), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1327), 1, - sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81037] = 25, + [81152] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1572), 1, - anon_sym_CARET, - ACTIONS(1887), 1, + ACTIONS(3432), 1, sym_equality_operator, - ACTIONS(4192), 1, + ACTIONS(3436), 1, + anon_sym_CARET, + ACTIONS(3481), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(4247), 1, + anon_sym_DOT, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(4198), 1, - anon_sym_DOT, - STATE(625), 1, + STATE(593), 1, + sym_multiplicative_operator, + STATE(630), 1, sym_additive_operator, - STATE(635), 1, + STATE(633), 1, sym_shift_operator, - STATE(637), 1, - sym_multiplicative_operator, - STATE(652), 1, + STATE(650), 1, sym_relational_operator, - STATE(769), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(778), 1, - sym_unconditional_assignable_selector, - STATE(839), 1, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(848), 1, + STATE(1763), 1, aux_sym_additive_expression_repeat1, - STATE(857), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(858), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(859), 1, + STATE(1764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1876), 1, + sym_unconditional_assignable_selector, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + STATE(1968), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81119] = 25, + [81234] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(686), 1, + anon_sym_async, + ACTIONS(4018), 1, + anon_sym_LBRACK, + ACTIONS(4020), 1, + anon_sym_EQ, + ACTIONS(4028), 1, + anon_sym_DOT, + ACTIONS(4030), 1, + anon_sym_QMARK_DOT, + STATE(411), 1, + sym__assignment_operator, + STATE(1804), 1, + sym__cascade_assignment_section, + STATE(2281), 1, + sym_assignable_selector, + STATE(2402), 1, + sym_unconditional_assignable_selector, + STATE(2383), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(684), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + ACTIONS(4022), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [81292] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3217), 1, - anon_sym_CARET, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(4152), 1, + ACTIONS(2309), 1, sym_equality_operator, - ACTIONS(4190), 1, - anon_sym_DOT, - ACTIONS(4200), 1, + ACTIONS(2426), 1, + anon_sym_LBRACK, + ACTIONS(4223), 1, anon_sym_PIPE, - ACTIONS(4202), 1, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, anon_sym_AMP, - STATE(586), 1, - sym_relational_operator, - STATE(657), 1, + ACTIONS(4229), 1, + anon_sym_DOT, + STATE(602), 1, sym_multiplicative_operator, - STATE(668), 1, - sym_additive_operator, - STATE(671), 1, + STATE(664), 1, sym_shift_operator, - STATE(1643), 1, + STATE(666), 1, + sym_additive_operator, + STATE(673), 1, + sym_relational_operator, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1644), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1258), 1, aux_sym_additive_expression_repeat1, - STATE(1671), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1848), 1, + STATE(1294), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1297), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1444), 1, sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81201] = 25, + [81374] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3213), 1, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, sym_equality_operator, - ACTIONS(3217), 1, + ACTIONS(3878), 1, anon_sym_CARET, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, + ACTIONS(4195), 1, anon_sym_DOT, - ACTIONS(4200), 1, + ACTIONS(4239), 1, anon_sym_PIPE, - ACTIONS(4202), 1, + ACTIONS(4241), 1, anon_sym_AMP, - STATE(657), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(668), 1, - sym_additive_operator, - STATE(671), 1, + STATE(596), 1, sym_shift_operator, - STATE(703), 1, + STATE(600), 1, + sym_additive_operator, + STATE(742), 1, sym_relational_operator, - STATE(1643), 1, + STATE(1835), 1, + sym_unconditional_assignable_selector, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(2221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, - aux_sym_additive_expression_repeat1, - STATE(1671), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, + STATE(2237), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1848), 1, - sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81283] = 25, + [81456] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2324), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3883), 1, + ACTIONS(3295), 1, sym_equality_operator, - ACTIONS(4180), 1, + ACTIONS(3299), 1, + anon_sym_CARET, + ACTIONS(4211), 1, anon_sym_DOT, - ACTIONS(4182), 1, + ACTIONS(4219), 1, anon_sym_PIPE, - ACTIONS(4184), 1, + ACTIONS(4221), 1, anon_sym_AMP, - STATE(655), 1, - sym_relational_operator, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + STATE(591), 1, sym_multiplicative_operator, - STATE(1327), 1, + STATE(594), 1, + sym_additive_operator, + STATE(604), 1, + sym_shift_operator, + STATE(669), 1, + sym_relational_operator, + STATE(1432), 1, sym_unconditional_assignable_selector, - STATE(2175), 1, + STATE(1676), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(1678), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81365] = 25, + [81538] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1568), 1, - sym_equality_operator, - ACTIONS(1572), 1, - anon_sym_CARET, - ACTIONS(4124), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_DOT, - ACTIONS(4194), 1, + ACTIONS(584), 1, + anon_sym_COLON, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4065), 1, + anon_sym_CARET, + ACTIONS(4067), 1, anon_sym_AMP, - STATE(211), 1, - sym_unconditional_assignable_selector, - STATE(625), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4263), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4265), 1, + anon_sym_QMARK, + ACTIONS(4267), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4269), 1, + anon_sym_AMP_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, sym_additive_operator, - STATE(635), 1, + STATE(739), 1, sym_shift_operator, - STATE(637), 1, - sym_multiplicative_operator, - STATE(680), 1, - sym_relational_operator, - STATE(769), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(839), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(848), 1, + STATE(2404), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(857), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(858), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(859), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2444), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2448), 1, + aux_sym__if_null_expression, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81447] = 25, + [81624] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3433), 1, - anon_sym_LBRACK, - ACTIONS(3806), 1, - anon_sym_CARET, - ACTIONS(3853), 1, + ACTIONS(2328), 1, sym_equality_operator, - ACTIONS(4146), 1, + ACTIONS(2459), 1, + anon_sym_LBRACK, + ACTIONS(4211), 1, anon_sym_DOT, - ACTIONS(4158), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4160), 1, + ACTIONS(4259), 1, + anon_sym_CARET, + ACTIONS(4261), 1, anon_sym_AMP, - STATE(651), 1, - sym_relational_operator, - STATE(658), 1, - sym_multiplicative_operator, - STATE(659), 1, - sym_additive_operator, - STATE(660), 1, + STATE(653), 1, sym_shift_operator, - STATE(1877), 1, - sym_unconditional_assignable_selector, - STATE(2171), 1, - aux_sym_shift_expression_repeat1, - STATE(2172), 1, + STATE(679), 1, + sym_additive_operator, + STATE(686), 1, + sym_multiplicative_operator, + STATE(734), 1, + sym_relational_operator, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(2227), 1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, + STATE(1286), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, + STATE(1287), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + STATE(1432), 1, + sym_unconditional_assignable_selector, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81529] = 25, + [81706] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2324), 1, + ACTIONS(3271), 1, + anon_sym_CARET, + ACTIONS(3481), 1, anon_sym_LBRACK, - ACTIONS(3340), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(3344), 1, - anon_sym_CARET, - ACTIONS(4180), 1, + ACTIONS(4247), 1, anon_sym_DOT, - ACTIONS(4186), 1, + ACTIONS(4271), 1, anon_sym_PIPE, - ACTIONS(4188), 1, + ACTIONS(4273), 1, anon_sym_AMP, - STATE(579), 1, - sym_multiplicative_operator, - STATE(582), 1, - sym_additive_operator, - STATE(583), 1, + STATE(592), 1, sym_shift_operator, - STATE(681), 1, + STATE(663), 1, + sym_multiplicative_operator, + STATE(713), 1, sym_relational_operator, - STATE(1327), 1, - sym_unconditional_assignable_selector, - STATE(1784), 1, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(1681), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1990), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(1685), 1, aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1050), 2, + STATE(1732), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1735), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1876), 1, + sym_unconditional_assignable_selector, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81611] = 25, + [81788] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1572), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4192), 1, + ACTIONS(4197), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4201), 1, + anon_sym_CARET, + ACTIONS(4203), 1, anon_sym_AMP, - ACTIONS(4198), 1, + ACTIONS(4205), 1, anon_sym_DOT, - STATE(586), 1, - sym_relational_operator, - STATE(625), 1, - sym_additive_operator, - STATE(635), 1, - sym_shift_operator, - STATE(637), 1, - sym_multiplicative_operator, - STATE(769), 1, + ACTIONS(4213), 1, + sym_equality_operator, + STATE(214), 1, + aux_sym_additive_expression_repeat1, + STATE(221), 1, aux_sym_multiplicative_expression_repeat1, - STATE(778), 1, - sym_unconditional_assignable_selector, - STATE(839), 1, + STATE(223), 1, aux_sym_shift_expression_repeat1, - STATE(848), 1, - aux_sym_additive_expression_repeat1, - STATE(857), 1, + STATE(224), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(858), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(859), 1, + STATE(226), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + STATE(237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(266), 1, + sym_unconditional_assignable_selector, + STATE(598), 1, + sym_multiplicative_operator, + STATE(601), 1, + sym_additive_operator, + STATE(688), 1, + sym_shift_operator, + STATE(713), 1, + sym_relational_operator, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81693] = 25, + [81870] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1046), 1, - anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(4192), 1, + ACTIONS(3271), 1, + anon_sym_CARET, + ACTIONS(3481), 1, anon_sym_LBRACK, - ACTIONS(4198), 1, + ACTIONS(4247), 1, anon_sym_DOT, - ACTIONS(4204), 1, + ACTIONS(4271), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4273), 1, anon_sym_AMP, - STATE(586), 1, - sym_relational_operator, - STATE(698), 1, + STATE(592), 1, sym_shift_operator, - STATE(699), 1, - sym_additive_operator, - STATE(700), 1, + STATE(663), 1, sym_multiplicative_operator, - STATE(726), 1, - aux_sym_shift_expression_repeat1, - STATE(727), 1, + STATE(722), 1, + sym_relational_operator, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, aux_sym_multiplicative_expression_repeat1, - STATE(735), 1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(736), 1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(742), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(743), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(778), 1, + STATE(1735), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(1876), 1, sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81775] = 25, + [81952] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1572), 1, - anon_sym_CARET, - ACTIONS(1887), 1, - sym_equality_operator, - ACTIONS(4124), 1, + ACTIONS(3475), 1, anon_sym_LBRACK, - ACTIONS(4132), 1, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(4195), 1, anon_sym_DOT, - ACTIONS(4194), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4239), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4241), 1, anon_sym_AMP, - STATE(211), 1, - sym_unconditional_assignable_selector, - STATE(625), 1, - sym_additive_operator, - STATE(635), 1, - sym_shift_operator, - STATE(637), 1, + STATE(590), 1, sym_multiplicative_operator, - STATE(652), 1, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(713), 1, sym_relational_operator, - STATE(769), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(839), 1, - aux_sym_shift_expression_repeat1, - STATE(848), 1, + STATE(1835), 1, + sym_unconditional_assignable_selector, + STATE(2206), 1, aux_sym_additive_expression_repeat1, - STATE(857), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(858), 1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(859), 1, + STATE(2243), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81857] = 25, + [82034] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1568), 1, - sym_equality_operator, - ACTIONS(1572), 1, - anon_sym_CARET, - ACTIONS(4192), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(3862), 1, + anon_sym_CARET, + ACTIONS(3944), 1, + sym_equality_operator, + ACTIONS(4229), 1, + anon_sym_DOT, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4198), 1, - anon_sym_DOT, - STATE(625), 1, + STATE(692), 1, + sym_relational_operator, + STATE(711), 1, + sym_multiplicative_operator, + STATE(714), 1, sym_additive_operator, - STATE(635), 1, + STATE(717), 1, sym_shift_operator, - STATE(637), 1, - sym_multiplicative_operator, - STATE(680), 1, - sym_relational_operator, - STATE(769), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(778), 1, + STATE(1444), 1, sym_unconditional_assignable_selector, - STATE(839), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(848), 1, + STATE(2216), 1, aux_sym_additive_expression_repeat1, - STATE(857), 1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(858), 1, + STATE(2238), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(859), 1, + STATE(2240), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [81939] = 25, + [82116] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1042), 1, - sym_equality_operator, - ACTIONS(1046), 1, - anon_sym_CARET, - ACTIONS(4192), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(4198), 1, + ACTIONS(4211), 1, anon_sym_DOT, - ACTIONS(4204), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4259), 1, + anon_sym_CARET, + ACTIONS(4261), 1, anon_sym_AMP, - STATE(577), 1, - sym_relational_operator, - STATE(698), 1, + STATE(653), 1, sym_shift_operator, - STATE(699), 1, + STATE(679), 1, sym_additive_operator, - STATE(700), 1, + STATE(686), 1, sym_multiplicative_operator, - STATE(726), 1, - aux_sym_shift_expression_repeat1, - STATE(727), 1, + STATE(713), 1, + sym_relational_operator, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(735), 1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(736), 1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1285), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1286), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(742), 1, + STATE(1287), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(743), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(778), 1, + STATE(1383), 1, sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82021] = 25, + [82198] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2324), 1, - anon_sym_LBRACK, - ACTIONS(3213), 1, + ACTIONS(1660), 1, sym_equality_operator, - ACTIONS(3217), 1, + ACTIONS(1664), 1, anon_sym_CARET, - ACTIONS(4180), 1, + ACTIONS(4197), 1, + anon_sym_LBRACK, + ACTIONS(4205), 1, anon_sym_DOT, - ACTIONS(4200), 1, + ACTIONS(4233), 1, anon_sym_PIPE, - ACTIONS(4202), 1, + ACTIONS(4235), 1, anon_sym_AMP, - STATE(657), 1, + STATE(296), 1, + sym_unconditional_assignable_selector, + STATE(671), 1, sym_multiplicative_operator, - STATE(668), 1, + STATE(672), 1, sym_additive_operator, - STATE(671), 1, + STATE(674), 1, sym_shift_operator, - STATE(703), 1, + STATE(710), 1, sym_relational_operator, - STATE(1327), 1, - sym_unconditional_assignable_selector, - STATE(1643), 1, + STATE(800), 1, aux_sym_shift_expression_repeat1, - STATE(1644), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(801), 1, aux_sym_additive_expression_repeat1, - STATE(1671), 1, + STATE(804), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(894), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, + STATE(895), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(896), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82103] = 25, + [82280] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3790), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4182), 1, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4195), 1, + anon_sym_DOT, + ACTIONS(4207), 1, anon_sym_PIPE, - ACTIONS(4184), 1, + ACTIONS(4209), 1, anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_DOT, - STATE(586), 1, + ACTIONS(4213), 1, + sym_equality_operator, + STATE(713), 1, sym_relational_operator, - STATE(677), 1, + STATE(741), 1, sym_shift_operator, - STATE(678), 1, + STATE(743), 1, sym_additive_operator, - STATE(679), 1, + STATE(744), 1, sym_multiplicative_operator, - STATE(1848), 1, + STATE(1835), 1, sym_unconditional_assignable_selector, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(1904), 1, + aux_sym_additive_expression_repeat1, + STATE(1927), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(2026), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, + STATE(2027), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, + STATE(2028), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82185] = 25, + [82362] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3786), 1, - sym_equality_operator, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(4182), 1, + ACTIONS(567), 1, + anon_sym_QMARK, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(4184), 1, + ACTIONS(4065), 1, + anon_sym_CARET, + ACTIONS(4067), 1, anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_DOT, - STATE(629), 1, - sym_relational_operator, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + ACTIONS(4275), 1, + sym_equality_operator, + STATE(720), 1, sym_multiplicative_operator, - STATE(1848), 1, - sym_unconditional_assignable_selector, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, + STATE(721), 1, + sym_additive_operator, + STATE(739), 1, + sym_shift_operator, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(2178), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, + STATE(2444), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2448), 1, + aux_sym__if_null_expression, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82267] = 25, + ACTIONS(565), 4, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [82442] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2256), 1, - sym_equality_operator, - ACTIONS(2372), 1, - anon_sym_LBRACK, - ACTIONS(4134), 1, + ACTIONS(576), 1, + anon_sym_COLON, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(4136), 1, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(4138), 1, + ACTIONS(4067), 1, anon_sym_AMP, - ACTIONS(4140), 1, - anon_sym_DOT, - STATE(570), 1, - sym_relational_operator, - STATE(571), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4263), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4265), 1, + anon_sym_QMARK, + ACTIONS(4267), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4269), 1, + anon_sym_AMP_AMP, + STATE(720), 1, + sym_multiplicative_operator, + STATE(721), 1, sym_additive_operator, - STATE(572), 1, + STATE(739), 1, sym_shift_operator, - STATE(686), 1, - sym_multiplicative_operator, - STATE(1194), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, - aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1296), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(2414), 1, + aux_sym_additive_expression_repeat1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1441), 1, - sym_unconditional_assignable_selector, - ACTIONS(1050), 2, + STATE(2423), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2433), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2444), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2448), 1, + aux_sym__if_null_expression, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82349] = 25, + [82528] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(4124), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(4126), 1, - anon_sym_PIPE, - ACTIONS(4128), 1, + ACTIONS(3432), 1, + sym_equality_operator, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(4130), 1, - anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4229), 1, anon_sym_DOT, - ACTIONS(4152), 1, - sym_equality_operator, - STATE(183), 1, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4255), 1, + anon_sym_AMP, + STATE(593), 1, + sym_multiplicative_operator, + STATE(630), 1, + sym_additive_operator, + STATE(633), 1, + sym_shift_operator, + STATE(650), 1, + sym_relational_operator, + STATE(1444), 1, + sym_unconditional_assignable_selector, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(186), 1, + STATE(1763), 1, aux_sym_additive_expression_repeat1, - STATE(190), 1, + STATE(1764), 1, aux_sym_multiplicative_expression_repeat1, - STATE(196), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(197), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(202), 1, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(297), 1, - sym_unconditional_assignable_selector, - STATE(586), 1, - sym_relational_operator, - STATE(648), 1, - sym_shift_operator, - STATE(649), 1, - sym_additive_operator, - STATE(650), 1, - sym_multiplicative_operator, - ACTIONS(1050), 2, + STATE(1968), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82431] = 25, + [82610] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(546), 1, - sym_equality_operator, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(4124), 1, + ACTIONS(1191), 1, + anon_sym_CARET, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4231), 1, anon_sym_LBRACK, - ACTIONS(4126), 1, + ACTIONS(4237), 1, + anon_sym_DOT, + ACTIONS(4249), 1, anon_sym_PIPE, - ACTIONS(4128), 1, - anon_sym_CARET, - ACTIONS(4130), 1, + ACTIONS(4251), 1, anon_sym_AMP, - ACTIONS(4132), 1, - anon_sym_DOT, - STATE(183), 1, + STATE(642), 1, + sym_multiplicative_operator, + STATE(643), 1, + sym_additive_operator, + STATE(644), 1, + sym_shift_operator, + STATE(713), 1, + sym_relational_operator, + STATE(760), 1, aux_sym_shift_expression_repeat1, - STATE(186), 1, + STATE(763), 1, aux_sym_additive_expression_repeat1, - STATE(190), 1, + STATE(764), 1, aux_sym_multiplicative_expression_repeat1, - STATE(196), 1, + STATE(779), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(197), 1, + STATE(780), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(202), 1, + STATE(781), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(297), 1, + STATE(794), 1, sym_unconditional_assignable_selector, - STATE(648), 1, - sym_shift_operator, - STATE(649), 1, - sym_additive_operator, - STATE(650), 1, - sym_multiplicative_operator, - STATE(701), 1, - sym_relational_operator, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82513] = 25, + [82692] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1042), 1, + ACTIONS(1187), 1, sym_equality_operator, - ACTIONS(1046), 1, + ACTIONS(1191), 1, anon_sym_CARET, - ACTIONS(4124), 1, + ACTIONS(4231), 1, anon_sym_LBRACK, - ACTIONS(4132), 1, + ACTIONS(4237), 1, anon_sym_DOT, - ACTIONS(4204), 1, + ACTIONS(4249), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4251), 1, anon_sym_AMP, - STATE(211), 1, - sym_unconditional_assignable_selector, - STATE(577), 1, + STATE(595), 1, sym_relational_operator, - STATE(698), 1, - sym_shift_operator, - STATE(699), 1, - sym_additive_operator, - STATE(700), 1, + STATE(642), 1, sym_multiplicative_operator, - STATE(726), 1, + STATE(643), 1, + sym_additive_operator, + STATE(644), 1, + sym_shift_operator, + STATE(760), 1, aux_sym_shift_expression_repeat1, - STATE(727), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(735), 1, + STATE(763), 1, aux_sym_additive_expression_repeat1, - STATE(736), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(742), 1, + STATE(764), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(779), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(743), 1, + STATE(780), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(781), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + STATE(794), 1, + sym_unconditional_assignable_selector, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82595] = 25, + [82774] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3403), 1, + ACTIONS(2426), 1, anon_sym_LBRACK, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3883), 1, + ACTIONS(3267), 1, sym_equality_operator, - ACTIONS(4182), 1, + ACTIONS(3271), 1, + anon_sym_CARET, + ACTIONS(4229), 1, + anon_sym_DOT, + ACTIONS(4271), 1, anon_sym_PIPE, - ACTIONS(4184), 1, + ACTIONS(4273), 1, anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_DOT, - STATE(655), 1, - sym_relational_operator, - STATE(677), 1, + STATE(592), 1, sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, + STATE(663), 1, sym_multiplicative_operator, - STATE(1848), 1, + STATE(722), 1, + sym_relational_operator, + STATE(729), 1, + sym_additive_operator, + STATE(1444), 1, sym_unconditional_assignable_selector, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, - aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - [82677] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1029), 1, - anon_sym_LT, - ACTIONS(4208), 1, - anon_sym_LPAREN, - STATE(1887), 1, - sym_parameter_type_list, - STATE(3374), 1, - sym_type_parameters, - ACTIONS(985), 5, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(983), 21, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, + STATE(1674), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1680), 1, + aux_sym_additive_expression_repeat1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1732), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(1735), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, - anon_sym_SEMI, - [82723] = 25, + [82856] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2372), 1, + ACTIONS(3481), 1, anon_sym_LBRACK, - ACTIONS(3368), 1, - sym_equality_operator, - ACTIONS(3372), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(4140), 1, - anon_sym_DOT, - ACTIONS(4162), 1, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4164), 1, + ACTIONS(4245), 1, anon_sym_AMP, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, + ACTIONS(4247), 1, + anon_sym_DOT, + STATE(711), 1, sym_multiplicative_operator, - STATE(603), 1, + STATE(713), 1, sym_relational_operator, - STATE(1441), 1, + STATE(714), 1, + sym_additive_operator, + STATE(717), 1, + sym_shift_operator, + STATE(1876), 1, sym_unconditional_assignable_selector, - STATE(1895), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, + STATE(2216), 1, aux_sym_additive_expression_repeat1, - STATE(1904), 1, + STATE(2217), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, + STATE(2230), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, + STATE(2238), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, + STATE(2240), 1, aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1050), 2, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82805] = 27, + [82938] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(588), 1, - anon_sym_COLON, - ACTIONS(3994), 1, - anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(3481), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + sym_equality_operator, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(4243), 1, + anon_sym_PIPE, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4166), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, - anon_sym_QMARK, - ACTIONS(4170), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, - anon_sym_AMP_AMP, - STATE(578), 1, + ACTIONS(4247), 1, + anon_sym_DOT, + STATE(703), 1, + sym_relational_operator, + STATE(711), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(714), 1, sym_additive_operator, - STATE(605), 1, + STATE(717), 1, sym_shift_operator, - STATE(2375), 1, + STATE(1876), 1, + sym_unconditional_assignable_selector, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(2216), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82891] = 27, + [83020] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(584), 1, - anon_sym_COLON, - ACTIONS(3994), 1, + ACTIONS(1662), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(1664), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(1666), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(578), 1, + STATE(671), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(672), 1, sym_additive_operator, - STATE(605), 1, + STATE(674), 1, sym_shift_operator, - STATE(2375), 1, + STATE(800), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(801), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, + STATE(804), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(894), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(895), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(896), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [82977] = 24, + [83103] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_QMARK, - ACTIONS(3994), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(3299), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(3301), 1, anon_sym_AMP, - ACTIONS(4210), 1, + ACTIONS(4213), 1, sym_equality_operator, - STATE(578), 1, + ACTIONS(4263), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4265), 1, + anon_sym_QMARK, + ACTIONS(4267), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4269), 1, + anon_sym_AMP_AMP, + STATE(591), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(594), 1, sym_additive_operator, - STATE(605), 1, + STATE(604), 1, sym_shift_operator, - STATE(2375), 1, - aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(1676), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(1677), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, + STATE(1678), 1, + aux_sym_shift_expression_repeat1, + STATE(1693), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(1695), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(1696), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - ACTIONS(577), 4, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [83057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4215), 13, - anon_sym_POUND, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - anon_sym_LBRACE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(4213), 16, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_r, - anon_sym_null, - anon_sym_DASH, - anon_sym_await, - anon_sym_super, - anon_sym_new, - anon_sym_const, - anon_sym_this, - sym_identifier, - [83094] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 1, - anon_sym_LT, - STATE(1782), 1, - sym_type_arguments, - STATE(1911), 1, - sym__type_args, - ACTIONS(985), 5, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(983), 21, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_Function, - anon_sym_SEMI, - [83137] = 26, + [83186] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3370), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3436), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3438), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(599), 1, - sym_shift_operator, - STATE(600), 1, - sym_additive_operator, - STATE(601), 1, + STATE(593), 1, sym_multiplicative_operator, - STATE(1895), 1, + STATE(630), 1, + sym_additive_operator, + STATE(633), 1, + sym_shift_operator, + STATE(1762), 1, aux_sym_shift_expression_repeat1, - STATE(1902), 1, + STATE(1763), 1, aux_sym_additive_expression_repeat1, - STATE(1904), 1, + STATE(1764), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1930), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(1935), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1950), 1, + STATE(1965), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2408), 1, + STATE(1968), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(1971), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [83220] = 26, + [83269] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3804), 1, + ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3806), 1, + ACTIONS(3862), 1, anon_sym_CARET, - ACTIONS(3808), 1, + ACTIONS(3864), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(658), 1, + STATE(711), 1, sym_multiplicative_operator, - STATE(659), 1, + STATE(714), 1, sym_additive_operator, - STATE(660), 1, + STATE(717), 1, sym_shift_operator, - STATE(2171), 1, + STATE(2215), 1, aux_sym_shift_expression_repeat1, - STATE(2172), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2181), 1, + STATE(2216), 1, aux_sym_additive_expression_repeat1, - STATE(2227), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2228), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2229), 1, + STATE(2217), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2230), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, + STATE(2238), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2240), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [83303] = 26, + [83352] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3994), 1, + ACTIONS(4063), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(4065), 1, anon_sym_CARET, - ACTIONS(3998), 1, + ACTIONS(4067), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(578), 1, + STATE(720), 1, sym_multiplicative_operator, - STATE(604), 1, + STATE(721), 1, sym_additive_operator, - STATE(605), 1, + STATE(739), 1, sym_shift_operator, - STATE(2375), 1, + STATE(2386), 1, aux_sym_shift_expression_repeat1, - STATE(2377), 1, + STATE(2404), 1, aux_sym_multiplicative_expression_repeat1, - STATE(2379), 1, + STATE(2414), 1, aux_sym_additive_expression_repeat1, - STATE(2397), 1, + STATE(2421), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2399), 1, + STATE(2423), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2400), 1, + STATE(2433), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [83386] = 26, + [83435] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1044), 1, + ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(1046), 1, + ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(1048), 1, + ACTIONS(3411), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(698), 1, + STATE(741), 1, sym_shift_operator, - STATE(699), 1, + STATE(743), 1, sym_additive_operator, - STATE(700), 1, + STATE(744), 1, sym_multiplicative_operator, - STATE(726), 1, + STATE(1903), 1, aux_sym_shift_expression_repeat1, - STATE(727), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(735), 1, + STATE(1904), 1, aux_sym_additive_expression_repeat1, - STATE(736), 1, + STATE(1927), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2026), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2027), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(742), 1, + STATE(2028), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(743), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2408), 1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [83469] = 26, + [83518] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2239), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(2243), 1, + ACTIONS(2315), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - ACTIONS(4176), 1, - anon_sym_CARET, - STATE(574), 1, + STATE(602), 1, + sym_multiplicative_operator, + STATE(664), 1, sym_shift_operator, - STATE(575), 1, + STATE(666), 1, sym_additive_operator, - STATE(576), 1, - sym_multiplicative_operator, - STATE(1220), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1221), 1, - aux_sym_additive_expression_repeat1, - STATE(1222), 1, + STATE(1255), 1, aux_sym_shift_expression_repeat1, - STATE(1251), 1, + STATE(1258), 1, + aux_sym_additive_expression_repeat1, + STATE(1259), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(1269), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1267), 1, + STATE(1294), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1289), 1, + STATE(1297), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2408), 1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [83552] = 26, + [83601] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3215), 1, + ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(3217), 1, - anon_sym_CARET, - ACTIONS(3219), 1, + ACTIONS(2334), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4259), 1, + anon_sym_CARET, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(657), 1, - sym_multiplicative_operator, - STATE(668), 1, - sym_additive_operator, - STATE(671), 1, + STATE(653), 1, sym_shift_operator, - STATE(1643), 1, - aux_sym_shift_expression_repeat1, - STATE(1644), 1, + STATE(679), 1, + sym_additive_operator, + STATE(686), 1, + sym_multiplicative_operator, + STATE(1254), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1645), 1, + STATE(1256), 1, aux_sym_additive_expression_repeat1, - STATE(1671), 1, + STATE(1257), 1, + aux_sym_shift_expression_repeat1, + STATE(1285), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1673), 1, + STATE(1286), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1674), 1, + STATE(1287), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [83635] = 3, + [83684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 13, + ACTIONS(4280), 13, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, @@ -173355,7 +178056,7 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4217), 16, + ACTIONS(4278), 16, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -173372,238 +178073,158 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_this, sym_identifier, - [83672] = 26, + [83721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3788), 1, - anon_sym_PIPE, - ACTIONS(3790), 1, - anon_sym_CARET, - ACTIONS(3792), 1, - anon_sym_AMP, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4166), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, - anon_sym_QMARK, - ACTIONS(4170), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, - anon_sym_AMP_AMP, - STATE(677), 1, - sym_shift_operator, - STATE(678), 1, - sym_additive_operator, - STATE(679), 1, - sym_multiplicative_operator, - STATE(2175), 1, - aux_sym_additive_expression_repeat1, - STATE(2177), 1, - aux_sym_shift_expression_repeat1, - STATE(2178), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(2218), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(2235), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(2239), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, + ACTIONS(4284), 13, + anon_sym_POUND, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + anon_sym_LBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(4282), 16, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + anon_sym_true, + anon_sym_false, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_r, + anon_sym_null, anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - [83755] = 26, + anon_sym_await, + anon_sym_super, + anon_sym_new, + anon_sym_const, + anon_sym_this, + sym_identifier, + [83758] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(1570), 1, + ACTIONS(3269), 1, anon_sym_PIPE, - ACTIONS(1572), 1, + ACTIONS(3271), 1, anon_sym_CARET, - ACTIONS(1574), 1, + ACTIONS(3273), 1, anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(625), 1, - sym_additive_operator, - STATE(635), 1, + STATE(592), 1, sym_shift_operator, - STATE(637), 1, + STATE(663), 1, sym_multiplicative_operator, - STATE(769), 1, + STATE(729), 1, + sym_additive_operator, + STATE(1674), 1, aux_sym_multiplicative_expression_repeat1, - STATE(839), 1, - aux_sym_shift_expression_repeat1, - STATE(848), 1, + STATE(1680), 1, aux_sym_additive_expression_repeat1, - STATE(857), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(858), 1, + STATE(1681), 1, + aux_sym_shift_expression_repeat1, + STATE(1685), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(859), 1, + STATE(1732), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2408), 1, + STATE(1735), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [83838] = 26, + [83841] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(3240), 1, + ACTIONS(548), 1, anon_sym_PIPE, - ACTIONS(3242), 1, - anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(552), 1, anon_sym_AMP, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4166), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, - anon_sym_QMARK, - ACTIONS(4170), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, - anon_sym_AMP_AMP, - STATE(622), 1, - sym_shift_operator, - STATE(623), 1, - sym_additive_operator, - STATE(624), 1, - sym_multiplicative_operator, - STATE(1616), 1, - aux_sym_additive_expression_repeat1, - STATE(1631), 1, - aux_sym_shift_expression_repeat1, - STATE(1635), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1656), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(1657), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(1658), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(2408), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - [83921] = 26, - ACTIONS(3), 1, - sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(3342), 1, - anon_sym_PIPE, - ACTIONS(3344), 1, + ACTIONS(4201), 1, anon_sym_CARET, - ACTIONS(3346), 1, - anon_sym_AMP, - ACTIONS(4152), 1, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(579), 1, - sym_multiplicative_operator, - STATE(582), 1, - sym_additive_operator, - STATE(583), 1, - sym_shift_operator, - STATE(1784), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(1786), 1, + STATE(214), 1, aux_sym_additive_expression_repeat1, - STATE(1787), 1, + STATE(221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(223), 1, aux_sym_shift_expression_repeat1, - STATE(1927), 1, + STATE(224), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1990), 1, + STATE(226), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(1991), 1, + STATE(237), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(2408), 1, + STATE(598), 1, + sym_multiplicative_operator, + STATE(601), 1, + sym_additive_operator, + STATE(688), 1, + sym_shift_operator, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [84004] = 3, + [83924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 13, + ACTIONS(4288), 13, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, @@ -173617,7 +178238,7 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4221), 16, + ACTIONS(4286), 16, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -173634,124 +178255,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_this, sym_identifier, - [84041] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(548), 1, - anon_sym_PIPE, - ACTIONS(552), 1, - anon_sym_AMP, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(4128), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - sym_equality_operator, - ACTIONS(4166), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, - anon_sym_QMARK, - ACTIONS(4170), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, - anon_sym_AMP_AMP, - STATE(183), 1, - aux_sym_shift_expression_repeat1, - STATE(186), 1, - aux_sym_additive_expression_repeat1, - STATE(190), 1, - aux_sym_multiplicative_expression_repeat1, - STATE(196), 1, - aux_sym_bitwise_and_expression_repeat1, - STATE(197), 1, - aux_sym_bitwise_xor_expression_repeat1, - STATE(202), 1, - aux_sym_bitwise_or_expression_repeat1, - STATE(648), 1, - sym_shift_operator, - STATE(649), 1, - sym_additive_operator, - STATE(650), 1, - sym_multiplicative_operator, - STATE(2408), 1, - aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, - aux_sym__if_null_expression, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - [84124] = 26, + [83961] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(554), 1, anon_sym_GT_GT, ACTIONS(558), 1, anon_sym_SLASH, - ACTIONS(2258), 1, + ACTIONS(1189), 1, anon_sym_PIPE, - ACTIONS(2262), 1, - anon_sym_AMP, - ACTIONS(4136), 1, + ACTIONS(1191), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(1193), 1, + anon_sym_AMP, + ACTIONS(4213), 1, sym_equality_operator, - ACTIONS(4166), 1, + ACTIONS(4263), 1, anon_sym_QMARK_QMARK, - ACTIONS(4168), 1, + ACTIONS(4265), 1, anon_sym_QMARK, - ACTIONS(4170), 1, + ACTIONS(4267), 1, anon_sym_PIPE_PIPE, - ACTIONS(4172), 1, + ACTIONS(4269), 1, anon_sym_AMP_AMP, - STATE(571), 1, + STATE(642), 1, + sym_multiplicative_operator, + STATE(643), 1, sym_additive_operator, - STATE(572), 1, + STATE(644), 1, sym_shift_operator, - STATE(686), 1, - sym_multiplicative_operator, - STATE(1194), 1, + STATE(760), 1, aux_sym_shift_expression_repeat1, - STATE(1196), 1, + STATE(763), 1, aux_sym_additive_expression_repeat1, - STATE(1199), 1, + STATE(764), 1, aux_sym_multiplicative_expression_repeat1, - STATE(1296), 1, + STATE(779), 1, aux_sym_bitwise_and_expression_repeat1, - STATE(1297), 1, + STATE(780), 1, aux_sym_bitwise_xor_expression_repeat1, - STATE(1298), 1, + STATE(781), 1, aux_sym_bitwise_or_expression_repeat1, - STATE(2408), 1, + STATE(2444), 1, aux_sym_logical_and_expression_repeat1, - STATE(2410), 1, - aux_sym_logical_or_expression_repeat1, - STATE(2412), 1, + STATE(2448), 1, aux_sym__if_null_expression, - ACTIONS(1050), 2, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(3348), 2, + ACTIONS(3413), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(560), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [84207] = 3, + [84044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 13, + ACTIONS(4292), 13, anon_sym_POUND, sym_octal_integer_literal, sym_binary_integer_literal, @@ -173765,7 +178329,7 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4225), 16, + ACTIONS(4290), 16, sym_decimal_integer_literal, sym_hex_integer_literal, sym_hex_floating_point_literal, @@ -173782,27 +178346,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_this, sym_identifier, - [84244] = 8, + [84081] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(3876), 1, + anon_sym_PIPE, + ACTIONS(3878), 1, + anon_sym_CARET, + ACTIONS(3880), 1, + anon_sym_AMP, + ACTIONS(4213), 1, + sym_equality_operator, + ACTIONS(4263), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4265), 1, + anon_sym_QMARK, + ACTIONS(4267), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4269), 1, + anon_sym_AMP_AMP, + STATE(590), 1, + sym_multiplicative_operator, + STATE(596), 1, + sym_shift_operator, + STATE(600), 1, + sym_additive_operator, + STATE(2206), 1, + aux_sym_additive_expression_repeat1, + STATE(2211), 1, + aux_sym_shift_expression_repeat1, + STATE(2221), 1, + aux_sym_multiplicative_expression_repeat1, + STATE(2237), 1, + aux_sym_bitwise_xor_expression_repeat1, + STATE(2243), 1, + aux_sym_bitwise_or_expression_repeat1, + STATE(2249), 1, + aux_sym_bitwise_and_expression_repeat1, + STATE(2444), 1, + aux_sym_logical_and_expression_repeat1, + STATE(2448), 1, + aux_sym__if_null_expression, + STATE(2450), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + [84164] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 1, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, + anon_sym_LT, + ACTIONS(4294), 1, anon_sym_LBRACK, - ACTIONS(2171), 1, + ACTIONS(4297), 1, anon_sym_DOT, - ACTIONS(2174), 1, + ACTIONS(4300), 1, anon_sym_QMARK_DOT, - STATE(871), 1, + STATE(939), 1, sym_unconditional_assignable_selector, - STATE(2264), 1, + STATE(2449), 1, sym_assignable_selector, - STATE(2349), 2, - sym__cascade_subsection, - aux_sym_cascade_section_repeat1, - ACTIONS(889), 21, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2381), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2657), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(722), 14, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -173816,32 +178446,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [84290] = 9, + sym_increment_operator, + [84222] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, + ACTIONS(2237), 1, anon_sym_LBRACK, - ACTIONS(4232), 1, + ACTIONS(2240), 1, anon_sym_DOT, - ACTIONS(4235), 1, + ACTIONS(2243), 1, anon_sym_QMARK_DOT, - STATE(2269), 1, - sym_assignable_selector, - STATE(2360), 1, + STATE(939), 1, sym_unconditional_assignable_selector, - ACTIONS(891), 2, - anon_sym_EQ, - anon_sym_async, - STATE(2350), 2, + STATE(2293), 1, + sym_assignable_selector, + STATE(2382), 2, sym__cascade_subsection, aux_sym_cascade_section_repeat1, - ACTIONS(889), 19, - anon_sym_LBRACE, + ACTIONS(1017), 21, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173854,42 +178481,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, + anon_sym_RPAREN, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_else, anon_sym_SEMI, - [84338] = 14, + [84268] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, - anon_sym_QMARK_DOT, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(4303), 1, anon_sym_LBRACK, - ACTIONS(3952), 1, - anon_sym_LT, - ACTIONS(4238), 1, + ACTIONS(4306), 1, anon_sym_DOT, - STATE(871), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2409), 1, + ACTIONS(4309), 1, + anon_sym_QMARK_DOT, + STATE(2281), 1, sym_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2353), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2552), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(707), 14, + STATE(2402), 1, + sym_unconditional_assignable_selector, + ACTIONS(1019), 2, anon_sym_EQ, + anon_sym_async, + STATE(2383), 2, + sym__cascade_subsection, + aux_sym_cascade_section_repeat1, + ACTIONS(1017), 19, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173902,8 +178519,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - sym_increment_operator, - [84396] = 19, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [84316] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, @@ -173914,74 +178535,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4061), 1, + ACTIONS(4130), 1, anon_sym_enum, - ACTIONS(4063), 1, + ACTIONS(4132), 1, anon_sym_abstract, - ACTIONS(4065), 1, + ACTIONS(4134), 1, anon_sym_class, - ACTIONS(4069), 1, + ACTIONS(4138), 1, anon_sym_covariant, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2445), 1, + STATE(2442), 1, + sym__type_name, + STATE(2488), 1, sym__covariant, ACTIONS(135), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, + STATE(2635), 2, sym__const_builtin, sym__final_builtin, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(3740), 3, + STATE(3585), 3, sym__final_const_var_or_type, sym__type, sym_inferred_type, - STATE(2393), 4, + STATE(2429), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - [84464] = 14, + [84384] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 1, + ACTIONS(2166), 1, + anon_sym_QMARK_DOT, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(4026), 1, anon_sym_LT, - ACTIONS(4240), 1, + ACTIONS(4035), 1, anon_sym_LBRACK, - ACTIONS(4243), 1, + ACTIONS(4312), 1, anon_sym_DOT, - ACTIONS(4246), 1, - anon_sym_QMARK_DOT, - STATE(871), 1, + STATE(939), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2409), 1, + STATE(2449), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2353), 2, + STATE(2381), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2552), 2, + STATE(2657), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - ACTIONS(688), 14, + ACTIONS(703), 14, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -173996,48 +178617,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, sym_increment_operator, - [84522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1272), 22, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [84556] = 6, + [84442] = 5, ACTIONS(3), 1, sym_comment, - STATE(604), 1, - sym_additive_operator, - STATE(2355), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(3957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(610), 7, + STATE(739), 1, + sym_shift_operator, + STATE(2400), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(1093), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -174045,7 +178632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(608), 15, + ACTIONS(1091), 17, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -174056,22 +178643,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [84596] = 3, + [84480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 1, + anon_sym_PIPE_PIPE, + STATE(2387), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 6, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_async, + ACTIONS(572), 18, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [84518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 6, + ACTIONS(1579), 6, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AT, - ACTIONS(1246), 20, + ACTIONS(1581), 20, anon_sym_static, anon_sym_enum, anon_sym_abstract, @@ -174092,15 +178714,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [84630] = 3, + [84552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1206), 4, anon_sym_EQ, anon_sym_LT, anon_sym_DOT, anon_sym_async, - ACTIONS(1300), 22, + ACTIONS(1204), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -174123,15 +178745,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [84664] = 3, + [84586] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4317), 1, + sym_identifier, + ACTIONS(4320), 1, + anon_sym_AT, + ACTIONS(4323), 1, + anon_sym_void, + ACTIONS(4326), 1, + anon_sym_var, + ACTIONS(4329), 1, + anon_sym_covariant, + ACTIONS(4332), 1, + anon_sym_Function, + ACTIONS(4338), 1, + anon_sym_this, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2488), 1, + sym__covariant, + ACTIONS(4335), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + STATE(3585), 3, + sym__final_const_var_or_type, + sym__type, + sym_inferred_type, + STATE(2429), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + [84648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1267), 4, anon_sym_EQ, anon_sym_LT, anon_sym_DOT, anon_sym_async, - ACTIONS(1284), 22, + ACTIONS(1265), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -174154,15 +178821,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [84698] = 3, + [84682] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 1, + anon_sym_QMARK_QMARK, + STATE(2392), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 5, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1158), 19, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [84720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1439), 4, anon_sym_EQ, anon_sym_LT, anon_sym_DOT, anon_sym_async, - ACTIONS(1280), 22, + ACTIONS(1437), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -174185,15 +178885,195 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [84732] = 3, + [84754] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(4347), 1, + anon_sym_EQ_EQ, + ACTIONS(4349), 1, + anon_sym_LBRACK_RBRACK_EQ, + STATE(3151), 1, + sym_binary_operator, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4345), 2, + anon_sym_TILDE, + anon_sym_LBRACK_RBRACK, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(4343), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + STATE(3586), 5, + sym_relational_operator, + sym_bitwise_operator, + sym_shift_operator, + sym_additive_operator, + sym_multiplicative_operator, + [84810] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2418), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 6, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_async, + ACTIONS(1125), 19, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [84846] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(554), 1, + anon_sym_GT_GT, + ACTIONS(558), 1, + anon_sym_SLASH, + ACTIONS(4347), 1, + anon_sym_EQ_EQ, + ACTIONS(4353), 1, + anon_sym_LBRACK_RBRACK_EQ, + STATE(3162), 1, + sym_binary_operator, + ACTIONS(1195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3413), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4351), 2, + anon_sym_TILDE, + anon_sym_LBRACK_RBRACK, + ACTIONS(560), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(4343), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + STATE(3586), 5, + sym_relational_operator, + sym_bitwise_operator, + sym_shift_operator, + sym_additive_operator, + sym_multiplicative_operator, + [84902] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2387), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1123), 6, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_async, + ACTIONS(1121), 19, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [84938] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2420), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 6, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_async, + ACTIONS(1117), 19, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [84974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1303), 4, anon_sym_EQ, anon_sym_LT, anon_sym_DOT, anon_sym_async, - ACTIONS(1260), 22, + ACTIONS(1301), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -174216,27 +179096,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [84766] = 7, + [85008] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1010), 1, - anon_sym_SLASH, - STATE(578), 1, - sym_multiplicative_operator, - STATE(2361), 1, - aux_sym_multiplicative_expression_repeat1, - ACTIONS(1013), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(575), 6, + ACTIONS(1063), 1, + anon_sym_GT_GT, + STATE(739), 1, + sym_shift_operator, + STATE(2400), 1, + aux_sym_shift_expression_repeat1, + ACTIONS(2181), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(598), 6, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(573), 14, + anon_sym_SLASH, + ACTIONS(596), 15, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -174245,31 +179124,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [84808] = 4, + [85050] = 3, ACTIONS(3), 1, sym_comment, - STATE(2386), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 5, + ACTIONS(1343), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1341), 22, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [85084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1423), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1421), 22, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [85118] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4355), 1, + anon_sym_PIPE_PIPE, + STATE(2403), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1083), 20, + ACTIONS(572), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_RPAREN, anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_CARET, @@ -174283,25 +179226,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [84844] = 4, + [85156] = 5, ACTIONS(3), 1, sym_comment, - STATE(2382), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 6, + STATE(720), 1, + sym_multiplicative_operator, + STATE(2416), 1, + aux_sym_multiplicative_expression_repeat1, + ACTIONS(1086), 7, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_async, - ACTIONS(1095), 19, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1084), 17, + anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -174310,20 +179257,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [84880] = 3, + anon_sym_is, + anon_sym_as, + [85194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1581), 4, anon_sym_EQ, anon_sym_LT, anon_sym_DOT, anon_sym_async, - ACTIONS(1268), 22, + ACTIONS(1579), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -174346,21 +179290,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [84914] = 4, + [85228] = 4, ACTIONS(3), 1, sym_comment, - STATE(2383), 1, + STATE(2403), 1, aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 6, + ACTIONS(1123), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_async, - ACTIONS(1087), 19, - anon_sym_LBRACE, + ACTIONS(1121), 20, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -174374,54 +179320,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_TILDE_SLASH, anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [85264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AT, + ACTIONS(1549), 20, + anon_sym_static, + anon_sym_enum, + anon_sym_abstract, + anon_sym_class, + anon_sym_void, + anon_sym_var, + anon_sym_library, + anon_sym_covariant, + anon_sym_export, + anon_sym_factory, + anon_sym_Function, + anon_sym_get, + anon_sym_import, + anon_sym_operator, + anon_sym_set, + anon_sym_const, + anon_sym_final, + anon_sym_external, + anon_sym_this, + sym_identifier, + [85298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1585), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_DOT, + anon_sym_async, + ACTIONS(1583), 22, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [84950] = 4, + [85332] = 3, ACTIONS(3), 1, sym_comment, - STATE(2384), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 6, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, + ACTIONS(1549), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_DOT, anon_sym_async, - ACTIONS(1083), 19, + ACTIONS(1547), 22, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_DOT_DOT, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [84986] = 4, + [85366] = 5, ACTIONS(3), 1, sym_comment, - STATE(2371), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 5, + ACTIONS(4358), 1, + anon_sym_AMP_AMP, + STATE(2410), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1087), 20, + ACTIONS(576), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -174429,7 +179436,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_CARET, anon_sym_LT_LT, @@ -174442,145 +179448,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [85022] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4249), 1, - sym_identifier, - ACTIONS(4252), 1, - anon_sym_AT, - ACTIONS(4255), 1, - anon_sym_void, - ACTIONS(4258), 1, - anon_sym_var, - ACTIONS(4261), 1, - anon_sym_covariant, - ACTIONS(4264), 1, - anon_sym_Function, - ACTIONS(4270), 1, - anon_sym_this, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2445), 1, - sym__covariant, - ACTIONS(4267), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(3740), 3, - sym__final_const_var_or_type, - sym__type, - sym_inferred_type, - STATE(2393), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - [85084] = 14, + [85404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(4276), 1, - anon_sym_EQ_EQ, - ACTIONS(4278), 1, - anon_sym_LBRACK_RBRACK_EQ, - STATE(3322), 1, - sym_binary_operator, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3348), 2, + STATE(721), 1, + sym_additive_operator, + STATE(2411), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(4012), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4274), 2, - anon_sym_TILDE, - anon_sym_LBRACK_RBRACK, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(4272), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - STATE(3612), 5, - sym_relational_operator, - sym_bitwise_operator, - sym_shift_operator, - sym_additive_operator, - sym_multiplicative_operator, - [85140] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2388), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 5, + ACTIONS(594), 7, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1095), 20, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(592), 15, anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [85176] = 5, + anon_sym_is, + anon_sym_as, + [85444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, - anon_sym_PIPE_PIPE, - STATE(2371), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 5, + STATE(2410), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(588), 19, + ACTIONS(1117), 20, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_RPAREN, anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_CARET, @@ -174594,79 +179514,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_else, anon_sym_SEMI, - [85214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1222), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1220), 22, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [85248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1234), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1232), 22, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [85282] = 3, + [85480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 6, + ACTIONS(1583), 6, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LT, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AT, - ACTIONS(1222), 20, + ACTIONS(1585), 20, anon_sym_static, anon_sym_enum, anon_sym_abstract, @@ -174687,14 +179545,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [85316] = 5, + [85514] = 5, ACTIONS(3), 1, sym_comment, - STATE(605), 1, - sym_shift_operator, - STATE(2376), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(991), 7, + STATE(721), 1, + sym_additive_operator, + STATE(2411), 1, + aux_sym_additive_expression_repeat1, + ACTIONS(1049), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -174702,7 +179560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(989), 17, + ACTIONS(1047), 17, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -174720,57 +179578,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [85354] = 7, + [85552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 1, - anon_sym_GT_GT, - STATE(605), 1, - sym_shift_operator, - STATE(2376), 1, - aux_sym_shift_expression_repeat1, - ACTIONS(2104), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(598), 6, + STATE(2392), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 5, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(596), 15, + ACTIONS(1125), 20, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - [85396] = 5, + anon_sym_DOT_DOT, + anon_sym_else, + anon_sym_SEMI, + [85588] = 7, ACTIONS(3), 1, sym_comment, - STATE(578), 1, + ACTIONS(1051), 1, + anon_sym_SLASH, + STATE(720), 1, sym_multiplicative_operator, - STATE(2361), 1, + STATE(2416), 1, aux_sym_multiplicative_expression_repeat1, - ACTIONS(1025), 7, + ACTIONS(1054), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + ACTIONS(590), 6, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1023), 17, + ACTIONS(588), 14, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -174783,20 +179643,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [85434] = 3, + [85630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 4, + ACTIONS(1339), 4, anon_sym_EQ, anon_sym_LT, anon_sym_DOT, anon_sym_async, - ACTIONS(1244), 22, + ACTIONS(1337), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -174819,29 +179676,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [85468] = 5, + [85664] = 5, ACTIONS(3), 1, sym_comment, - STATE(604), 1, - sym_additive_operator, - STATE(2355), 1, - aux_sym_additive_expression_repeat1, - ACTIONS(1005), 7, + ACTIONS(4361), 1, + anon_sym_QMARK_QMARK, + STATE(2418), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 6, anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1003), 17, - anon_sym_COLON, - anon_sym_QMARK_QMARK, + anon_sym_async, + ACTIONS(1158), 18, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -174850,17 +179704,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - [85506] = 3, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [85702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1565), 4, anon_sym_EQ, anon_sym_LT, anon_sym_DOT, anon_sym_async, - ACTIONS(1252), 22, + ACTIONS(1563), 22, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COMMA, @@ -174883,67 +179740,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [85540] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(554), 1, - anon_sym_GT_GT, - ACTIONS(558), 1, - anon_sym_SLASH, - ACTIONS(4276), 1, - anon_sym_EQ_EQ, - ACTIONS(4285), 1, - anon_sym_LBRACK_RBRACK_EQ, - STATE(3151), 1, - sym_binary_operator, - ACTIONS(1050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3348), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4283), 2, - anon_sym_TILDE, - anon_sym_LBRACK_RBRACK, - ACTIONS(560), 3, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - ACTIONS(4272), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - STATE(3612), 5, - sym_relational_operator, - sym_bitwise_operator, - sym_shift_operator, - sym_additive_operator, - sym_multiplicative_operator, - [85596] = 5, + [85736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 1, - anon_sym_QMARK_QMARK, - STATE(2382), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 6, + ACTIONS(4364), 1, + anon_sym_AMP_AMP, + STATE(2420), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(578), 6, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_async, - ACTIONS(1105), 18, + ACTIONS(576), 18, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_CARET, anon_sym_LT_LT, @@ -174958,26 +179773,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [85634] = 5, + [85774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_PIPE_PIPE, - STATE(2383), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 6, + STATE(2427), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(1105), 7, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_async, - ACTIONS(588), 18, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1103), 17, + anon_sym_COLON, anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -174986,31 +179802,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [85672] = 5, + anon_sym_is, + anon_sym_as, + [85809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 1, - anon_sym_AMP_AMP, - STATE(2384), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 6, + STATE(2428), 1, + aux_sym__if_null_expression, + ACTIONS(1127), 7, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - anon_sym_async, - ACTIONS(584), 18, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1125), 17, + anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -175019,64 +179833,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [85710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1382), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_DOT, - anon_sym_async, - ACTIONS(1380), 22, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [85744] = 5, + anon_sym_is, + anon_sym_as, + [85844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - anon_sym_AMP_AMP, - STATE(2386), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 5, + STATE(2431), 1, + aux_sym_bitwise_xor_expression_repeat1, + ACTIONS(1145), 7, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(584), 19, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1143), 17, anon_sym_COLON, - anon_sym_RPAREN, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -175085,62 +179864,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [85782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1252), 6, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AT, - ACTIONS(1254), 20, - anon_sym_static, - anon_sym_enum, - anon_sym_abstract, - anon_sym_class, - anon_sym_void, - anon_sym_var, - anon_sym_library, - anon_sym_covariant, - anon_sym_export, - anon_sym_factory, - anon_sym_Function, - anon_sym_get, - anon_sym_import, - anon_sym_operator, - anon_sym_set, - anon_sym_const, - anon_sym_final, - anon_sym_external, - anon_sym_this, - sym_identifier, - [85816] = 5, + anon_sym_is, + anon_sym_as, + [85879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - anon_sym_QMARK_QMARK, - STATE(2388), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 5, + ACTIONS(4367), 1, + anon_sym_AMP, + STATE(2424), 1, + aux_sym_bitwise_and_expression_repeat1, + ACTIONS(602), 6, anon_sym_QMARK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1105), 19, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(600), 17, anon_sym_COLON, - anon_sym_RPAREN, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -175149,17 +179896,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - anon_sym_DOT_DOT, - anon_sym_else, - anon_sym_SEMI, - [85854] = 5, + anon_sym_is, + anon_sym_as, + [85916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 1, + ACTIONS(4370), 1, anon_sym_AMP_AMP, - STATE(2389), 1, + STATE(2425), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 7, + ACTIONS(578), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -175167,7 +179913,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(584), 16, + ACTIONS(576), 16, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -175184,14 +179930,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [85891] = 5, + [85953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 1, + ACTIONS(4373), 1, anon_sym_PIPE_PIPE, - STATE(2390), 1, + STATE(2426), 1, aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 7, + ACTIONS(574), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -175199,7 +179945,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(588), 16, + ACTIONS(572), 16, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_AMP_AMP, @@ -175216,20 +179962,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [85928] = 4, + [85990] = 5, ACTIONS(3), 1, sym_comment, - STATE(2390), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 7, + ACTIONS(4376), 1, + anon_sym_PIPE, + STATE(2427), 1, + aux_sym_bitwise_or_expression_repeat1, + ACTIONS(610), 6, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1087), 17, + ACTIONS(608), 17, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -175247,23 +179994,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [85963] = 5, + [86027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_AMP, - STATE(2392), 1, - aux_sym_bitwise_and_expression_repeat1, - ACTIONS(567), 6, + ACTIONS(4379), 1, + anon_sym_QMARK_QMARK, + STATE(2428), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(565), 17, + ACTIONS(1158), 16, anon_sym_COLON, - anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -175279,17 +180026,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [86000] = 4, + [86064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4320), 1, anon_sym_AT, - STATE(2393), 4, + STATE(2429), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - ACTIONS(4270), 20, + ACTIONS(4338), 20, anon_sym_static, anon_sym_enum, anon_sym_abstract, @@ -175310,39 +180057,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [86035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4311), 1, - anon_sym_PIPE, - STATE(2394), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(571), 6, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(569), 17, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - [86072] = 16, + [86099] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, @@ -175353,106 +180068,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4069), 1, + ACTIONS(4138), 1, anon_sym_covariant, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2445), 1, + STATE(2442), 1, + sym__type_name, + STATE(2488), 1, sym__covariant, ACTIONS(135), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, + STATE(2635), 2, sym__const_builtin, sym__final_builtin, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(3740), 3, + STATE(3585), 3, sym__final_const_var_or_type, sym__type, sym_inferred_type, - STATE(2393), 4, + STATE(2429), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - [86131] = 4, + [86158] = 5, ACTIONS(3), 1, sym_comment, - STATE(2402), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 7, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1095), 17, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - [86166] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2394), 1, - aux_sym_bitwise_or_expression_repeat1, - ACTIONS(1093), 7, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1091), 17, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4382), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - [86201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 1, - anon_sym_CARET, - STATE(2398), 1, + STATE(2431), 1, aux_sym_bitwise_xor_expression_repeat1, ACTIONS(606), 7, anon_sym_QMARK, @@ -175479,12 +180132,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [86238] = 4, + [86195] = 4, ACTIONS(3), 1, sym_comment, - STATE(2398), 1, - aux_sym_bitwise_xor_expression_repeat1, - ACTIONS(1068), 7, + STATE(2426), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(1123), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -175492,7 +180145,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1066), 17, + ACTIONS(1121), 17, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -175510,12 +180163,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [86273] = 4, + [86230] = 4, ACTIONS(3), 1, sym_comment, - STATE(2392), 1, + STATE(2424), 1, aux_sym_bitwise_and_expression_repeat1, - ACTIONS(1064), 7, + ACTIONS(1097), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -175523,7 +180176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1062), 17, + ACTIONS(1095), 17, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -175541,12 +180194,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [86308] = 4, + [86265] = 4, ACTIONS(3), 1, sym_comment, - STATE(2389), 1, + STATE(2425), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 7, + ACTIONS(1119), 7, anon_sym_QMARK, anon_sym_LT, anon_sym_GT, @@ -175554,7 +180207,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1083), 17, + ACTIONS(1117), 17, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, @@ -175572,93 +180225,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_TILDE_SLASH, anon_sym_is, anon_sym_as, - [86343] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4317), 1, - anon_sym_QMARK_QMARK, - STATE(2402), 1, - aux_sym__if_null_expression, - ACTIONS(1107), 7, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(1105), 16, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - sym_equality_operator, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - anon_sym_is, - anon_sym_as, - [86380] = 17, + [86300] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, + ACTIONS(3335), 1, anon_sym_get, - ACTIONS(3311), 1, + ACTIONS(3339), 1, anon_sym_set, - ACTIONS(4320), 1, + ACTIONS(4385), 1, sym_identifier, - ACTIONS(4323), 1, + ACTIONS(4388), 1, anon_sym_void, - ACTIONS(4326), 1, + ACTIONS(4391), 1, anon_sym_var, - ACTIONS(4328), 1, + ACTIONS(4393), 1, anon_sym_Function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2973), 1, + STATE(2442), 1, + sym__type_name, + STATE(3031), 1, sym__type, - STATE(3731), 1, - sym__set, - STATE(3732), 1, + STATE(3616), 1, sym__get, - ACTIONS(4331), 2, + STATE(3619), 1, + sym__set, + ACTIONS(4396), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(2658), 3, + STATE(2697), 3, sym__final_or_const, sym__const_builtin, sym__final_builtin, - STATE(2978), 3, + STATE(3010), 3, sym_getter_signature, sym_setter_signature, sym_function_signature, - [86440] = 6, + [86360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4335), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(4337), 1, + ACTIONS(4402), 1, anon_sym_AT, - STATE(2407), 1, + STATE(2439), 1, sym_arguments, - ACTIONS(4333), 20, + ACTIONS(4398), 20, anon_sym_static, anon_sym_enum, anon_sym_abstract, @@ -175679,14 +180300,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [86478] = 3, + [86398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4341), 3, + ACTIONS(4406), 3, anon_sym_LPAREN, anon_sym_DOT, anon_sym_AT, - ACTIONS(4339), 20, + ACTIONS(4404), 20, anon_sym_static, anon_sym_enum, anon_sym_abstract, @@ -175707,53 +180328,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [86509] = 17, + [86429] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3337), 1, anon_sym_operator, - ACTIONS(3313), 1, + ACTIONS(3341), 1, anon_sym_const, - ACTIONS(4343), 1, + ACTIONS(4408), 1, sym_identifier, - ACTIONS(4346), 1, + ACTIONS(4411), 1, anon_sym_static, - ACTIONS(4348), 1, + ACTIONS(4413), 1, anon_sym_void, - ACTIONS(4351), 1, + ACTIONS(4416), 1, anon_sym_Function, - STATE(2381), 1, + STATE(2394), 1, sym__operator, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2984), 1, + STATE(2442), 1, + sym__type_name, + STATE(3018), 1, sym__static, - STATE(3425), 1, - sym__const_builtin, - STATE(3461), 1, + STATE(3539), 1, sym__type, - ACTIONS(4354), 2, + STATE(3578), 1, + sym__const_builtin, + ACTIONS(4419), 2, anon_sym_get, anon_sym_set, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(3615), 3, + STATE(3693), 3, sym_operator_signature, sym_constructor_signature, sym_constant_constructor_signature, - [86567] = 3, + [86487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4423), 1, anon_sym_AT, - ACTIONS(4356), 20, + ACTIONS(4421), 20, anon_sym_static, anon_sym_enum, anon_sym_abstract, @@ -175774,22 +180395,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_this, sym_identifier, - [86596] = 4, + [86516] = 7, ACTIONS(3), 1, sym_comment, - STATE(2416), 1, + ACTIONS(4425), 1, + anon_sym_LPAREN, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(2504), 1, + sym_parameter_type_list, + STATE(3563), 1, + sym_type_parameters, + ACTIONS(1057), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1059), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [86552] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 1, + anon_sym_Function, + STATE(3108), 1, + sym__function_builtin_identifier, + STATE(2441), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1030), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1032), 8, + anon_sym_catch, + anon_sym_with, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [86586] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(2506), 1, + sym_type_arguments, + ACTIONS(1057), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1059), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [86620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4434), 1, + anon_sym_AMP_AMP, + STATE(2443), 1, aux_sym_logical_and_expression_repeat1, - ACTIONS(1085), 5, + ACTIONS(578), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1083), 13, + ACTIONS(576), 12, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_equality_operator, anon_sym_CARET, anon_sym_LT_LT, @@ -175799,44 +180506,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [86625] = 3, + [86651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 1, - anon_sym_LT, - ACTIONS(1166), 18, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LPAREN, - sym_increment_operator, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [86652] = 4, + STATE(2443), 1, + aux_sym_logical_and_expression_repeat1, + ACTIONS(1119), 5, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(1117), 13, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + sym_equality_operator, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_TILDE_SLASH, + [86680] = 5, ACTIONS(3), 1, sym_comment, - STATE(2417), 1, - aux_sym_logical_or_expression_repeat1, - ACTIONS(1089), 5, + ACTIONS(4437), 1, + anon_sym_QMARK_QMARK, + STATE(2445), 1, + aux_sym__if_null_expression, + ACTIONS(1160), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1087), 13, + ACTIONS(1158), 12, anon_sym_COLON, - anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -175848,12 +180557,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [86681] = 3, + [86711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 1, + ACTIONS(1513), 1, anon_sym_LT, - ACTIONS(1332), 18, + ACTIONS(1511), 18, anon_sym_LBRACK, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -175872,21 +180581,22 @@ static uint16_t ts_small_parse_table[] = { sym_increment_operator, anon_sym_DOT, anon_sym_QMARK_DOT, - [86708] = 4, + [86738] = 5, ACTIONS(3), 1, sym_comment, - STATE(2413), 1, - aux_sym__if_null_expression, - ACTIONS(1097), 5, + ACTIONS(4440), 1, + anon_sym_PIPE_PIPE, + STATE(2447), 1, + aux_sym_logical_or_expression_repeat1, + ACTIONS(574), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1095), 13, + ACTIONS(572), 12, anon_sym_COLON, anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_CARET, @@ -175897,21 +180607,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [86737] = 5, + [86769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_QMARK_QMARK, - STATE(2413), 1, + STATE(2445), 1, aux_sym__if_null_expression, - ACTIONS(1107), 5, + ACTIONS(1127), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(1105), 12, + ACTIONS(1125), 13, anon_sym_COLON, + anon_sym_QMARK_QMARK, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, @@ -175923,103 +180632,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [86768] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1782), 1, - sym_type_arguments, - STATE(1911), 1, - sym__type_args, - ACTIONS(983), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_SEMI, - ACTIONS(985), 9, - anon_sym_catch, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - [86801] = 7, + [86798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1413), 1, anon_sym_LT, - ACTIONS(4208), 1, + ACTIONS(1415), 18, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LPAREN, - STATE(1887), 1, - sym_parameter_type_list, - STATE(3374), 1, - sym_type_parameters, - ACTIONS(983), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + sym_increment_operator, anon_sym_DOT, - anon_sym_SEMI, - ACTIONS(985), 9, - anon_sym_catch, - anon_sym_with, - anon_sym_Function, - anon_sym_get, - anon_sym_implements, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - [86836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4365), 1, - anon_sym_AMP_AMP, - STATE(2416), 1, - aux_sym_logical_and_expression_repeat1, - ACTIONS(586), 5, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_SLASH, - ACTIONS(584), 12, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - sym_equality_operator, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_TILDE_SLASH, - [86867] = 5, + anon_sym_QMARK_DOT, + [86825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_PIPE_PIPE, - STATE(2417), 1, + STATE(2447), 1, aux_sym_logical_or_expression_repeat1, - ACTIONS(590), 5, + ACTIONS(1123), 5, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, anon_sym_SLASH, - ACTIONS(588), 12, + ACTIONS(1121), 13, anon_sym_COLON, anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, sym_equality_operator, anon_sym_CARET, @@ -176030,181 +180681,273 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_TILDE_SLASH, - [86898] = 14, + [86854] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(3307), 1, - anon_sym_get, - ACTIONS(3311), 1, - anon_sym_set, - ACTIONS(4371), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2414), 1, + ACTIONS(4443), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + anon_sym_LBRACK, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, sym__type_name, - STATE(2415), 1, + STATE(3071), 1, + sym__type, + STATE(3288), 1, + sym_typed_identifier, + STATE(3346), 1, + sym_normal_parameter_type, + STATE(3628), 1, + sym_optional_parameter_types, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(3800), 2, + sym_optional_positional_parameter_types, + sym_named_parameter_types, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + [86904] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4443), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + anon_sym_LBRACK, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2973), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3731), 1, - sym__set, - STATE(3732), 1, - sym__get, - STATE(2566), 2, + STATE(3288), 1, + sym_typed_identifier, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3745), 1, + sym_optional_parameter_types, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(3800), 2, + sym_optional_positional_parameter_types, + sym_named_parameter_types, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(3375), 3, - sym_getter_signature, - sym_setter_signature, - sym_function_signature, - [86946] = 15, + [86954] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, sym__type_name, - STATE(2415), 1, + STATE(3071), 1, + sym__type, + STATE(3288), 1, + sym_typed_identifier, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3661), 1, + sym_optional_parameter_types, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(3800), 2, + sym_optional_positional_parameter_types, + sym_named_parameter_types, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + [87004] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4443), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + anon_sym_LBRACK, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, + STATE(3280), 1, sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3807), 1, + STATE(3801), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [86996] = 15, + [87054] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3208), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3546), 1, + STATE(3366), 1, + sym_normal_parameter_type, + STATE(3855), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87046] = 15, + [87104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 9, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1495), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [87130] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3601), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3809), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87096] = 15, + [87180] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4447), 1, sym_identifier, - ACTIONS(4373), 1, - anon_sym_LBRACE, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3716), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, - sym_typed_identifier, - STATE(3736), 1, - sym_optional_parameter_types, - STATE(2566), 2, + ACTIONS(135), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, - sym_optional_positional_parameter_types, - sym_named_parameter_types, - STATE(2569), 3, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(3727), 2, + sym__final_const_var_or_type, + sym_inferred_type, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87146] = 12, + [87226] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -176213,1040 +180956,1050 @@ static uint16_t ts_small_parse_table[] = { anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4447), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(3716), 1, + sym__type, ACTIONS(135), 2, anon_sym_const, anon_sym_final, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, + STATE(2635), 2, sym__const_builtin, sym__final_builtin, - STATE(2569), 3, + STATE(3585), 2, + sym__final_const_var_or_type, + sym_inferred_type, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(3740), 3, - sym__final_const_var_or_type, - sym__type, - sym_inferred_type, - [87190] = 15, + [87272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1309), 9, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1311), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [87298] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3159), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3733), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3744), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87240] = 15, + [87348] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3217), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3605), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3662), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87290] = 15, + [87398] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, + STATE(3181), 1, sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3621), 1, + STATE(3673), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87340] = 15, + [87448] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3162), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3627), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3624), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87390] = 15, + [87498] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3616), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3815), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87440] = 15, + [87548] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3655), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3806), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87490] = 15, + [87598] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3230), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3756), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3695), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87540] = 15, + [87648] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3657), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3720), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87590] = 15, + [87698] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, - anon_sym_LBRACE, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, - sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, - sym_typed_identifier, - STATE(3610), 1, - sym_optional_parameter_types, - STATE(2566), 2, + STATE(2442), 1, + sym__type_name, + ACTIONS(135), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, - sym_optional_positional_parameter_types, - sym_named_parameter_types, - STATE(2569), 3, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87640] = 15, + STATE(3585), 3, + sym__final_const_var_or_type, + sym__type, + sym_inferred_type, + [87742] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3620), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3696), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87690] = 15, + [87792] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3170), 1, + STATE(3212), 1, sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3641), 1, + STATE(3837), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87740] = 15, + [87842] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(3335), 1, + anon_sym_get, + ACTIONS(3339), 1, + anon_sym_set, + ACTIONS(4449), 1, sym_identifier, - ACTIONS(4373), 1, - anon_sym_LBRACE, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3031), 1, sym__type, - STATE(3247), 1, - sym_normal_parameter_type, - STATE(3279), 1, - sym_typed_identifier, - STATE(3762), 1, - sym_optional_parameter_types, - STATE(2566), 2, + STATE(3616), 1, + sym__get, + STATE(3619), 1, + sym__set, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, - sym_optional_positional_parameter_types, - sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87790] = 15, + STATE(3568), 3, + sym_getter_signature, + sym_setter_signature, + sym_function_signature, + [87890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 9, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1553), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [87916] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3177), 1, + STATE(3220), 1, sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3596), 1, + STATE(3701), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87840] = 15, + [87966] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3238), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3662), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3747), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87890] = 15, + [88016] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3646), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3748), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87940] = 15, + [88066] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3204), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3531), 1, + STATE(3313), 1, + sym_normal_parameter_type, + STATE(3785), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [87990] = 13, + [88116] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4377), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4443), 1, + anon_sym_LBRACE, + ACTIONS(4445), 1, + anon_sym_LBRACK, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3722), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - ACTIONS(135), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, + STATE(3284), 1, + sym_normal_parameter_type, + STATE(3288), 1, + sym_typed_identifier, + STATE(3758), 1, + sym_optional_parameter_types, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(3678), 2, - sym__final_const_var_or_type, - sym_inferred_type, - STATE(2569), 3, + STATE(3800), 2, + sym_optional_positional_parameter_types, + sym_named_parameter_types, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88036] = 15, + [88166] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3539), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3802), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88086] = 15, + [88216] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3527), 1, + STATE(3307), 1, + sym_normal_parameter_type, + STATE(3759), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88136] = 15, + [88266] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3782), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3865), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88186] = 13, + [88316] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(73), 1, + anon_sym_AT, ACTIONS(83), 1, anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4377), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4453), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3722), 1, + STATE(2442), 1, + sym__type_name, + STATE(3373), 1, sym__type, - ACTIONS(135), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, + STATE(3374), 1, + sym_type_parameter, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(3740), 2, - sym__final_const_var_or_type, - sym_inferred_type, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88232] = 12, + STATE(2936), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + [88362] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(3335), 1, + anon_sym_get, + ACTIONS(3339), 1, + anon_sym_set, + ACTIONS(4449), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - ACTIONS(135), 2, - anon_sym_const, - anon_sym_final, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2615), 2, - sym__const_builtin, - sym__final_builtin, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - STATE(3703), 3, - sym__final_const_var_or_type, - sym__type, - sym_inferred_type, - [88276] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4373), 1, - anon_sym_LBRACE, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(2414), 1, + STATE(2442), 1, sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(3006), 1, + STATE(3031), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, - sym_typed_identifier, - STATE(3526), 1, - sym_optional_parameter_types, - STATE(2566), 2, + STATE(3616), 1, + sym__get, + STATE(3619), 1, + sym__set, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, - sym_optional_positional_parameter_types, - sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88326] = 15, + STATE(3693), 3, + sym_getter_signature, + sym_setter_signature, + sym_function_signature, + [88410] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4445), 1, + anon_sym_LBRACK, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3301), 1, + STATE(3345), 1, sym_normal_parameter_type, - STATE(3803), 1, + STATE(3742), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88376] = 15, + [88460] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, + STATE(3204), 1, sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3592), 1, + STATE(3684), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88426] = 15, + [88510] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3753), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3803), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88476] = 15, + [88560] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3752), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3672), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88526] = 14, + [88610] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(3307), 1, - anon_sym_get, - ACTIONS(3311), 1, - anon_sym_set, - ACTIONS(4371), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2973), 1, - sym__type, - STATE(3731), 1, - sym__set, - STATE(3732), 1, - sym__get, - STATE(2566), 2, + STATE(2442), 1, + sym__type_name, + ACTIONS(135), 2, + anon_sym_const, + anon_sym_final, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2635), 2, + sym__const_builtin, + sym__final_builtin, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - STATE(3615), 3, - sym_getter_signature, - sym_setter_signature, - sym_function_signature, - [88574] = 15, + STATE(3859), 3, + sym__final_const_var_or_type, + sym__type, + sym_inferred_type, + [88654] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3689), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3671), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88624] = 3, + [88704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 9, + ACTIONS(1409), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -177256,7 +182009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_SEMI, - ACTIONS(1148), 9, + ACTIONS(1411), 9, anon_sym_catch, anon_sym_with, anon_sym_Function, @@ -177266,591 +182019,594 @@ static uint16_t ts_small_parse_table[] = { anon_sym_set, anon_sym_this, sym_identifier, - [88650] = 15, + [88730] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3777), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3838), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88700] = 15, + [88780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4373), 1, + ACTIONS(1453), 9, anon_sym_LBRACE, - ACTIONS(4375), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(3006), 1, - sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, - sym_typed_identifier, - STATE(3599), 1, - sym_optional_parameter_types, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(3696), 2, - sym_optional_positional_parameter_types, - sym_named_parameter_types, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - [88750] = 15, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1455), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [88806] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3686), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3598), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88800] = 15, + [88856] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3541), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3611), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88850] = 15, + [88906] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, + STATE(3130), 1, sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3649), 1, + STATE(3595), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88900] = 15, + [88956] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3139), 1, + STATE(3217), 1, sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3675), 1, + STATE(3692), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [88950] = 15, + [89006] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3739), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3590), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [89000] = 15, + [89056] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3570), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3808), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [89050] = 15, + [89106] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3806), 1, + STATE(3327), 1, + sym_normal_parameter_type, + STATE(3812), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [89100] = 15, + [89156] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3279), 1, - sym_typed_identifier, STATE(3288), 1, + sym_typed_identifier, + STATE(3345), 1, sym_normal_parameter_type, - STATE(3697), 1, + STATE(3698), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [89150] = 15, + [89206] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - ACTIONS(4373), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(3698), 1, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(3589), 1, sym_optional_parameter_types, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3696), 2, + STATE(3800), 2, sym_optional_positional_parameter_types, sym_named_parameter_types, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [89200] = 15, + [89256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(93), 1, + ACTIONS(1457), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1459), 9, + anon_sym_catch, + anon_sym_with, anon_sym_Function, - ACTIONS(4059), 1, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, sym_identifier, - ACTIONS(4373), 1, - anon_sym_LBRACE, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(3006), 1, - sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, - sym_typed_identifier, - STATE(3700), 1, - sym_optional_parameter_types, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(3696), 2, - sym_optional_positional_parameter_types, - sym_named_parameter_types, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - [89250] = 15, + [89281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(93), 1, + ACTIONS(1507), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1509), 9, + anon_sym_catch, + anon_sym_with, anon_sym_Function, - ACTIONS(4059), 1, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, sym_identifier, - ACTIONS(4373), 1, + [89306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 8, anon_sym_LBRACE, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(3006), 1, - sym__type, - STATE(3121), 1, - sym_normal_parameter_type, - STATE(3279), 1, - sym_typed_identifier, - STATE(3706), 1, - sym_optional_parameter_types, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(3696), 2, - sym_optional_positional_parameter_types, - sym_named_parameter_types, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - [89300] = 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1557), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [89331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 8, + ACTIONS(1461), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1463), 9, anon_sym_catch, anon_sym_with, anon_sym_Function, anon_sym_get, anon_sym_implements, + anon_sym_operator, anon_sym_set, anon_sym_this, sym_identifier, - ACTIONS(1134), 9, + [89356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1353), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT, anon_sym_GT, anon_sym_DOT, anon_sym_SEMI, - [89325] = 10, + ACTIONS(1355), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [89381] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1058), 1, + ACTIONS(1111), 1, anon_sym_LT, - ACTIONS(4379), 1, + ACTIONS(4455), 1, anon_sym_LPAREN, - ACTIONS(4381), 1, + ACTIONS(4457), 1, anon_sym_DOT, - STATE(2453), 1, + STATE(2490), 1, sym__type_dot_identifier, - STATE(2553), 1, + STATE(2625), 1, sym__strict_formal_parameter_list, - STATE(3220), 1, + STATE(3289), 1, sym_type_parameters, - STATE(2908), 2, + STATE(2957), 2, sym__formal_parameter_part, sym_formal_parameter_list, - ACTIONS(1060), 3, + ACTIONS(1113), 3, anon_sym_Function, anon_sym_this, sym_identifier, - ACTIONS(3047), 6, + ACTIONS(3097), 6, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_EQ, anon_sym_RPAREN, - [89364] = 5, + [89420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - sym_increment_operator, - STATE(438), 1, - sym__assignment_operator, - STATE(1917), 1, - sym_postfix_operator, - ACTIONS(4383), 13, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [89392] = 5, + ACTIONS(1477), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1479), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [89445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, - sym_increment_operator, - STATE(429), 1, - sym__assignment_operator, - STATE(872), 1, - sym_postfix_operator, - ACTIONS(4387), 13, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [89420] = 5, + ACTIONS(1351), 8, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_set, + anon_sym_this, + sym_identifier, + ACTIONS(1349), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + [89470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, - sym_increment_operator, - STATE(489), 1, - sym__assignment_operator, - STATE(872), 1, - sym_postfix_operator, - ACTIONS(4391), 13, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_QMARK_QMARK_EQ, - [89448] = 5, + ACTIONS(1465), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(1467), 9, + anon_sym_catch, + anon_sym_with, + anon_sym_Function, + anon_sym_get, + anon_sym_implements, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [89495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(4461), 1, sym_increment_operator, - STATE(422), 1, + STATE(500), 1, sym__assignment_operator, - STATE(2251), 1, + STATE(2295), 1, sym_postfix_operator, - ACTIONS(4393), 13, + ACTIONS(4459), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -177864,16 +182620,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89476] = 5, + [89523] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4465), 1, sym_increment_operator, - STATE(210), 1, - sym_postfix_operator, - STATE(521), 1, + STATE(577), 1, sym__assignment_operator, - ACTIONS(4397), 13, + STATE(928), 1, + sym_postfix_operator, + ACTIONS(4463), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -177887,16 +182643,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89504] = 5, + [89551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4461), 1, sym_increment_operator, - STATE(506), 1, + STATE(544), 1, sym__assignment_operator, - STATE(1917), 1, + STATE(2295), 1, sym_postfix_operator, - ACTIONS(4401), 13, + ACTIONS(4467), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -177910,16 +182666,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89532] = 5, + [89579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(4471), 1, sym_increment_operator, - STATE(372), 1, + STATE(418), 1, sym__assignment_operator, - STATE(1308), 1, + STATE(851), 1, sym_postfix_operator, - ACTIONS(4403), 13, + ACTIONS(4469), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -177933,16 +182689,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89560] = 5, + [89607] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, + ACTIONS(1111), 1, + anon_sym_LT, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(4457), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, + sym_type_parameters, + ACTIONS(1113), 2, + anon_sym_Function, + sym_identifier, + STATE(2955), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(4473), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + [89645] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 1, sym_increment_operator, STATE(461), 1, sym__assignment_operator, - STATE(872), 1, + STATE(1790), 1, sym_postfix_operator, - ACTIONS(4407), 13, + ACTIONS(4475), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -177956,16 +182740,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89588] = 5, + [89673] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + anon_sym_SQUOTE, + ACTIONS(25), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(27), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4479), 1, + anon_sym_r, + STATE(2758), 1, + sym_uri, + STATE(2804), 1, + sym_configurable_uri, + STATE(2979), 1, + sym_string_literal, + STATE(1190), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + [89711] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 1, sym_increment_operator, - STATE(538), 1, + STATE(430), 1, sym__assignment_operator, - STATE(2251), 1, + STATE(1421), 1, sym_postfix_operator, - ACTIONS(4409), 13, + ACTIONS(4481), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -177979,16 +182791,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89616] = 5, + [89739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, + ACTIONS(4477), 1, sym_increment_operator, - STATE(402), 1, + STATE(391), 1, sym__assignment_operator, - STATE(2069), 1, + STATE(1790), 1, sym_postfix_operator, - ACTIONS(4411), 13, + ACTIONS(4485), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178002,16 +182814,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89644] = 5, + [89767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(4489), 1, sym_increment_operator, - STATE(369), 1, + STATE(548), 1, sym__assignment_operator, - STATE(1308), 1, + STATE(2289), 1, sym_postfix_operator, - ACTIONS(4415), 13, + ACTIONS(4487), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178025,16 +182837,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89672] = 5, + [89795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, + ACTIONS(4493), 1, sym_increment_operator, - STATE(497), 1, - sym__assignment_operator, - STATE(2069), 1, + STATE(264), 1, sym_postfix_operator, - ACTIONS(4417), 13, + STATE(453), 1, + sym__assignment_operator, + ACTIONS(4491), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178048,39 +182860,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89700] = 14, + [89823] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(4419), 1, - anon_sym_LBRACK, - ACTIONS(4422), 1, - anon_sym_LT, - ACTIONS(4425), 1, - anon_sym_DOT, - ACTIONS(4428), 1, - anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2791), 1, - sym_unconditional_assignable_selector, - STATE(2875), 1, - sym_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - ACTIONS(688), 2, + ACTIONS(4461), 1, sym_increment_operator, - sym_identifier, - STATE(2481), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2584), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [89746] = 10, + STATE(549), 1, + sym__assignment_operator, + STATE(2295), 1, + sym_postfix_operator, + ACTIONS(4495), 13, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [89851] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(21), 1, @@ -178091,15 +182894,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(27), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4479), 1, anon_sym_r, - STATE(2909), 1, - sym_string_literal, - STATE(2922), 1, + STATE(2976), 1, sym_uri, - STATE(2926), 1, + STATE(2979), 1, + sym_string_literal, + STATE(2983), 1, sym_configurable_uri, - STATE(1129), 8, + STATE(1190), 8, sym__string_literal_double_quotes, sym__string_literal_single_quotes, sym__string_literal_double_quotes_multiple, @@ -178108,16 +182911,16 @@ static uint16_t ts_small_parse_table[] = { sym__raw_string_literal_single_quotes, sym__raw_string_literal_double_quotes_multiple, sym__raw_string_literal_single_quotes_multiple, - [89784] = 5, + [89889] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4499), 1, sym_increment_operator, - STATE(210), 1, - sym_postfix_operator, - STATE(499), 1, + STATE(410), 1, sym__assignment_operator, - ACTIONS(4433), 13, + STATE(2135), 1, + sym_postfix_operator, + ACTIONS(4497), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178131,16 +182934,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89812] = 5, + [89917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(4461), 1, sym_increment_operator, - STATE(535), 1, + STATE(466), 1, sym__assignment_operator, - STATE(2251), 1, + STATE(2295), 1, sym_postfix_operator, - ACTIONS(4435), 13, + ACTIONS(4501), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178154,16 +182957,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89840] = 5, + [89945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, + ACTIONS(4505), 1, sym_increment_operator, - STATE(401), 1, + STATE(436), 1, sym__assignment_operator, - STATE(872), 1, + STATE(1928), 1, sym_postfix_operator, - ACTIONS(4437), 13, + ACTIONS(4503), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178177,16 +182980,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89868] = 5, + [89973] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 1, + ACTIONS(4461), 1, sym_increment_operator, - STATE(531), 1, + STATE(558), 1, sym__assignment_operator, - STATE(2272), 1, + STATE(2295), 1, sym_postfix_operator, - ACTIONS(4439), 13, + ACTIONS(4507), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178200,16 +183003,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89896] = 5, + [90001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 1, + ACTIONS(4489), 1, sym_increment_operator, - STATE(516), 1, + STATE(524), 1, sym__assignment_operator, - STATE(1415), 1, + STATE(2289), 1, sym_postfix_operator, - ACTIONS(4443), 13, + ACTIONS(4509), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178223,16 +183026,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89924] = 5, + [90029] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(4513), 1, sym_increment_operator, - STATE(481), 1, + STATE(482), 1, sym__assignment_operator, - STATE(1308), 1, + STATE(2093), 1, sym_postfix_operator, - ACTIONS(4447), 13, + ACTIONS(4511), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178246,16 +183049,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89952] = 5, + [90057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(4505), 1, sym_increment_operator, - STATE(383), 1, + STATE(499), 1, sym__assignment_operator, - STATE(2251), 1, + STATE(1928), 1, sym_postfix_operator, - ACTIONS(4449), 13, + ACTIONS(4515), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178269,16 +183072,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [89980] = 5, + [90085] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 1, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_LBRACK, + ACTIONS(4520), 1, + anon_sym_LT, + ACTIONS(4523), 1, + anon_sym_DOT, + ACTIONS(4526), 1, + anon_sym_QMARK_DOT, + STATE(2492), 1, + sym__type_args, + STATE(2865), 1, + sym_unconditional_assignable_selector, + STATE(2880), 1, + sym_assignable_selector, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + ACTIONS(722), 2, sym_increment_operator, - STATE(376), 1, + sym_identifier, + STATE(2531), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2601), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [90131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 1, + sym_increment_operator, + STATE(397), 1, sym__assignment_operator, - STATE(2272), 1, + STATE(1928), 1, sym_postfix_operator, - ACTIONS(4451), 13, + ACTIONS(4529), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178292,72 +183127,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90008] = 10, + [90159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - anon_sym_SQUOTE, - ACTIONS(25), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(27), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4431), 1, - anon_sym_r, - STATE(2909), 1, - sym_string_literal, - STATE(2922), 1, - sym_uri, - STATE(2935), 1, - sym_configurable_uri, - STATE(1129), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - [90046] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1058), 1, - anon_sym_LT, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(4381), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - ACTIONS(1060), 2, - anon_sym_Function, - sym_identifier, - STATE(2943), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(4453), 6, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(4465), 1, + sym_increment_operator, + STATE(412), 1, + sym__assignment_operator, + STATE(928), 1, + sym_postfix_operator, + ACTIONS(4531), 13, anon_sym_EQ, - anon_sym_RPAREN, - [90084] = 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [90187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4483), 1, sym_increment_operator, STATE(540), 1, sym__assignment_operator, - STATE(1917), 1, + STATE(1421), 1, sym_postfix_operator, - ACTIONS(4455), 13, + ACTIONS(4533), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178371,16 +183173,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90112] = 5, + [90215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 1, + ACTIONS(4493), 1, sym_increment_operator, - STATE(525), 1, - sym__assignment_operator, - STATE(1415), 1, + STATE(264), 1, sym_postfix_operator, - ACTIONS(4457), 13, + STATE(484), 1, + sym__assignment_operator, + ACTIONS(4535), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178394,16 +183196,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90140] = 5, + [90243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 1, + ACTIONS(4539), 1, sym_increment_operator, - STATE(450), 1, + STATE(456), 1, sym__assignment_operator, - STATE(2069), 1, + STATE(1460), 1, sym_postfix_operator, - ACTIONS(4459), 13, + ACTIONS(4537), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178417,16 +183219,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90168] = 5, + [90271] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + anon_sym_SQUOTE, + ACTIONS(25), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(27), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4479), 1, + anon_sym_r, + STATE(2958), 1, + sym_configurable_uri, + STATE(2976), 1, + sym_uri, + STATE(2979), 1, + sym_string_literal, + STATE(1190), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + [90309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 1, + ACTIONS(4465), 1, sym_increment_operator, - STATE(465), 1, + STATE(565), 1, sym__assignment_operator, - STATE(2272), 1, + STATE(928), 1, sym_postfix_operator, - ACTIONS(4461), 13, + ACTIONS(4541), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178440,16 +183270,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90196] = 5, + [90337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4499), 1, sym_increment_operator, - STATE(501), 1, + STATE(517), 1, sym__assignment_operator, - STATE(1873), 1, + STATE(2135), 1, sym_postfix_operator, - ACTIONS(4463), 13, + ACTIONS(4543), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178463,16 +183293,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90224] = 5, + [90365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4469), 1, + ACTIONS(4513), 1, sym_increment_operator, - STATE(484), 1, + STATE(427), 1, sym__assignment_operator, - STATE(843), 1, + STATE(2093), 1, sym_postfix_operator, - ACTIONS(4467), 13, + ACTIONS(4545), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178486,16 +183316,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90252] = 5, + [90393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 1, + ACTIONS(4539), 1, sym_increment_operator, - STATE(385), 1, + STATE(531), 1, sym__assignment_operator, - STATE(2251), 1, + STATE(1460), 1, sym_postfix_operator, - ACTIONS(4471), 13, + ACTIONS(4547), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178509,16 +183339,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90280] = 5, + [90421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 1, + ACTIONS(4539), 1, sym_increment_operator, - STATE(549), 1, + STATE(460), 1, sym__assignment_operator, - STATE(2103), 1, + STATE(1460), 1, sym_postfix_operator, - ACTIONS(4473), 13, + ACTIONS(4549), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178532,44 +183362,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90308] = 10, + [90449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - anon_sym_SQUOTE, - ACTIONS(25), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(27), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4431), 1, - anon_sym_r, - STATE(2691), 1, - sym_uri, - STATE(2761), 1, - sym_configurable_uri, - STATE(2909), 1, - sym_string_literal, - STATE(1129), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - [90346] = 5, + ACTIONS(4465), 1, + sym_increment_operator, + STATE(448), 1, + sym__assignment_operator, + STATE(928), 1, + sym_postfix_operator, + ACTIONS(4551), 13, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_QMARK_QMARK_EQ, + [90477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4489), 1, sym_increment_operator, - STATE(511), 1, + STATE(532), 1, sym__assignment_operator, - STATE(1873), 1, + STATE(2289), 1, sym_postfix_operator, - ACTIONS(4477), 13, + ACTIONS(4553), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178583,16 +183408,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90374] = 5, + [90505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4469), 1, + ACTIONS(4513), 1, sym_increment_operator, - STATE(455), 1, + STATE(402), 1, sym__assignment_operator, - STATE(843), 1, + STATE(2093), 1, sym_postfix_operator, - ACTIONS(4479), 13, + ACTIONS(4555), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178606,16 +183431,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90402] = 5, + [90533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 1, + ACTIONS(4471), 1, sym_increment_operator, - STATE(437), 1, + STATE(560), 1, sym__assignment_operator, - STATE(2103), 1, + STATE(851), 1, sym_postfix_operator, - ACTIONS(4481), 13, + ACTIONS(4557), 13, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -178629,83 +183454,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_QMARK_QMARK_EQ, - [90430] = 14, + [90561] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(703), 1, + sym_increment_operator, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4483), 1, + ACTIONS(4559), 1, + anon_sym_LBRACK, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_QMARK_DOT, + STATE(2492), 1, + sym__type_args, + STATE(2865), 1, + sym_unconditional_assignable_selector, + STATE(2880), 1, + sym_assignable_selector, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2531), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2601), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [90606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3350), 2, + anon_sym_RBRACE, + anon_sym_AT, + ACTIONS(4565), 13, + anon_sym_static, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_factory, + anon_sym_Function, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + anon_sym_const, + anon_sym_final, + anon_sym_external, + sym_identifier, + [90629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4569), 2, + anon_sym_RBRACE, + anon_sym_AT, + ACTIONS(4567), 13, + anon_sym_static, + anon_sym_void, + anon_sym_var, + anon_sym_covariant, + anon_sym_factory, + anon_sym_Function, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + anon_sym_const, + anon_sym_final, + anon_sym_external, sym_identifier, - ACTIONS(4485), 1, + [90652] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(4432), 1, + anon_sym_LT, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + ACTIONS(4571), 1, + sym_identifier, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90475] = 14, + [90697] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4491), 1, + ACTIONS(4573), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90520] = 5, + [90742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4381), 1, + ACTIONS(4457), 1, anon_sym_DOT, - STATE(2453), 1, + STATE(2490), 1, sym__type_dot_identifier, - ACTIONS(1060), 6, + ACTIONS(1113), 6, anon_sym_catch, anon_sym_with, anon_sym_Function, anon_sym_implements, anon_sym_this, sym_identifier, - ACTIONS(1058), 7, + ACTIONS(1111), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -178713,383 +183609,370 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_SEMI, - [90547] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - anon_sym_SQUOTE, - ACTIONS(25), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(27), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4431), 1, - anon_sym_r, - STATE(2909), 1, - sym_string_literal, - STATE(2974), 1, - sym_uri, - STATE(1129), 8, - sym__string_literal_double_quotes, - sym__string_literal_single_quotes, - sym__string_literal_double_quotes_multiple, - sym__string_literal_single_quotes_multiple, - sym__raw_string_literal_double_quotes, - sym__raw_string_literal_single_quotes, - sym__raw_string_literal_double_quotes_multiple, - sym__raw_string_literal_single_quotes_multiple, - [90582] = 14, + [90769] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4493), 1, + ACTIONS(4575), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4497), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(4495), 13, - anon_sym_static, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_factory, - anon_sym_Function, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_const, - anon_sym_final, - anon_sym_external, - sym_identifier, - [90650] = 14, + [90814] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4499), 1, + ACTIONS(4577), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90695] = 14, + [90859] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 1, - sym_increment_operator, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + ACTIONS(4579), 1, + sym_identifier, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90740] = 14, + [90904] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(23), 1, + anon_sym_SQUOTE, + ACTIONS(25), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(27), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4479), 1, + anon_sym_r, + STATE(2979), 1, + sym_string_literal, + STATE(3032), 1, + sym_uri, + STATE(1190), 8, + sym__string_literal_double_quotes, + sym__string_literal_single_quotes, + sym__string_literal_double_quotes_multiple, + sym__string_literal_single_quotes_multiple, + sym__raw_string_literal_double_quotes, + sym__raw_string_literal_single_quotes, + sym__raw_string_literal_double_quotes_multiple, + sym__raw_string_literal_single_quotes_multiple, + [90939] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4501), 1, + ACTIONS(4581), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90785] = 14, + [90984] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4503), 1, + ACTIONS(4583), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90830] = 14, + [91029] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4505), 1, + ACTIONS(4585), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90875] = 14, + [91074] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4507), 1, + ACTIONS(4587), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90920] = 14, + [91119] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4509), 1, + ACTIONS(4589), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [90965] = 14, + [91164] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4511), 1, + ACTIONS(4591), 1, sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2531), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91010] = 14, + [91209] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - ACTIONS(4513), 1, - sym_identifier, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2481), 2, + STATE(2554), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91055] = 3, + [91251] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(4515), 13, - anon_sym_static, - anon_sym_void, - anon_sym_var, - anon_sym_covariant, - anon_sym_factory, - anon_sym_Function, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_const, - anon_sym_final, - anon_sym_external, - sym_identifier, - [91078] = 8, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(4432), 1, + anon_sym_LT, + ACTIONS(4559), 1, + anon_sym_LBRACK, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_QMARK_DOT, + STATE(2492), 1, + sym__type_args, + STATE(2865), 1, + sym_unconditional_assignable_selector, + STATE(2880), 1, + sym_assignable_selector, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2559), 2, + sym_assignable_selector_part, + aux_sym_assignable_expression_repeat1, + STATE(2601), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [91293] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(21), 1, @@ -179100,11 +183983,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(27), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4479), 1, anon_sym_r, - STATE(3561), 1, + STATE(3753), 1, sym_string_literal, - STATE(1129), 8, + STATE(1190), 8, sym__string_literal_double_quotes, sym__string_literal_single_quotes, sym__string_literal_double_quotes_multiple, @@ -179113,741 +183996,784 @@ static uint16_t ts_small_parse_table[] = { sym__raw_string_literal_single_quotes, sym__raw_string_literal_double_quotes_multiple, sym__raw_string_literal_single_quotes_multiple, - [91110] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(4363), 1, - anon_sym_LT, - ACTIONS(4485), 1, - anon_sym_LBRACK, - ACTIONS(4487), 1, - anon_sym_DOT, - ACTIONS(4489), 1, - anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2791), 1, - sym_unconditional_assignable_selector, - STATE(2875), 1, - sym_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2506), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2584), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [91152] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(4363), 1, - anon_sym_LT, - ACTIONS(4485), 1, - anon_sym_LBRACK, - ACTIONS(4487), 1, - anon_sym_DOT, - ACTIONS(4489), 1, - anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2791), 1, - sym_unconditional_assignable_selector, - STATE(2875), 1, - sym_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2518), 2, - sym_assignable_selector_part, - aux_sym_assignable_expression_repeat1, - STATE(2584), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [91194] = 13, + [91325] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2516), 2, + STATE(2557), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91236] = 13, + [91367] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2511), 2, + STATE(2562), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91278] = 13, + [91409] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2514), 2, + STATE(2555), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91320] = 13, + [91451] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2515), 2, + STATE(2560), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91362] = 13, + [91493] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2513), 2, + STATE(2561), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91404] = 13, + [91535] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2517), 2, + STATE(2553), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91446] = 13, + [91577] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2509), 2, + STATE(2550), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91488] = 12, + [91619] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4517), 1, + ACTIONS(4593), 1, sym_identifier, - ACTIONS(4520), 1, + ACTIONS(4596), 1, anon_sym_this, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3380), 1, + STATE(2442), 1, + sym__type_name, + STATE(3546), 1, sym__type, - STATE(2757), 2, + STATE(2798), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2939), 2, + STATE(2964), 2, sym__type_not_function, sym_void_type, - STATE(3041), 2, + STATE(3055), 2, sym_function_type, sym__type_not_void, - [91528] = 13, + [91659] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2505), 2, + STATE(2551), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91570] = 13, + [91701] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - ACTIONS(4485), 1, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4487), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4489), 1, + ACTIONS(4563), 1, anon_sym_QMARK_DOT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2791), 1, + STATE(2865), 1, sym_unconditional_assignable_selector, - STATE(2875), 1, + STATE(2880), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2519), 2, + STATE(2558), 2, sym_assignable_selector_part, aux_sym_assignable_expression_repeat1, - STATE(2584), 2, + STATE(2601), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [91612] = 11, + [91743] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3464), 1, - sym_mixin_application, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3125), 1, + sym__type_not_void_list, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, - sym__type_not_function, - sym_void_type, - STATE(3427), 2, + STATE(2997), 2, sym_function_type, sym__type_not_void, - [91649] = 11, + STATE(3061), 2, + sym__type_not_function, + sym_void_type, + [91780] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4522), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3096), 1, - sym_initialized_identifier, - STATE(3318), 1, - sym__type, - STATE(3615), 1, - sym_initialized_identifier_list, - STATE(2566), 2, + STATE(2442), 1, + sym__type_name, + STATE(3555), 1, + sym__type_not_void_list, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2997), 2, + sym_function_type, + sym__type_not_void, + STATE(3061), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [91686] = 11, + [91817] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3006), 1, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, sym__type, - STATE(3112), 1, - sym_normal_parameter_type, - STATE(3279), 1, + STATE(3288), 1, sym_typed_identifier, - STATE(2566), 2, + STATE(3345), 1, + sym_normal_parameter_type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [91723] = 11, + [91854] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4593), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3426), 1, - sym_mixin_application, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3297), 1, + sym__type, + STATE(2798), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(2964), 2, sym__type_not_function, sym_void_type, - STATE(3427), 2, + STATE(3055), 2, sym_function_type, sym__type_not_void, - [91760] = 11, + [91891] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3429), 1, - sym__type_not_void_list, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3564), 1, + sym_mixin_application, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2971), 2, + STATE(3061), 2, + sym__type_not_function, + sym_void_type, + STATE(3566), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + [91928] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_Function, + STATE(3108), 1, + sym__function_builtin_identifier, + STATE(2441), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(4600), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_GT, + ACTIONS(4598), 5, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [91955] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(4604), 1, + sym_identifier, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(3173), 1, + sym_initialized_identifier, + STATE(3211), 1, + sym__type, + STATE(3693), 1, + sym_initialized_identifier_list, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - [91797] = 11, + [91992] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1111), 1, + anon_sym_LT, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(4606), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2866), 1, + sym_formal_parameter_list, + STATE(2963), 1, + sym__formal_parameter_part, + STATE(3289), 1, + sym_type_parameters, + ACTIONS(1113), 5, + anon_sym_Function, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + sym_identifier, + [92027] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3165), 1, - sym__type_not_void_list, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3572), 1, + sym_mixin_application, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2971), 2, + STATE(3061), 2, + sym__type_not_function, + sym_void_type, + STATE(3566), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + [92064] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_Function, + STATE(3108), 1, + sym__function_builtin_identifier, + STATE(2441), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(4610), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_GT, + ACTIONS(4608), 5, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [92091] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(4128), 1, + sym_identifier, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(3071), 1, + sym__type, + STATE(3272), 1, + sym_normal_parameter_type, + STATE(3288), 1, + sym_typed_identifier, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - [91834] = 11, + [92128] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, + ACTIONS(85), 1, + anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4517), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3191), 1, - sym__type, - STATE(2757), 2, + STATE(2442), 1, + sym__type_name, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2939), 2, + STATE(3211), 2, + sym__type, + sym_inferred_type, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - STATE(3041), 2, - sym_function_type, - sym__type_not_void, - [91871] = 11, + [92163] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_Function, + STATE(3108), 1, + sym__function_builtin_identifier, + STATE(2585), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(4600), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_GT, + ACTIONS(4598), 5, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + anon_sym_this, + sym_identifier, + [92190] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4612), 1, sym_identifier, - STATE(2414), 1, + ACTIONS(4614), 1, + anon_sym_Function, + STATE(790), 1, sym__type_name, - STATE(2415), 1, + STATE(792), 1, sym__function_builtin_identifier, - STATE(3006), 1, - sym__type, - STATE(3083), 1, - sym_normal_parameter_type, - STATE(3279), 1, - sym_typed_identifier, - STATE(2566), 2, + STATE(940), 1, + sym__type_not_void_not_function, + STATE(776), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(906), 2, + sym_function_type, + sym__type_not_void, + STATE(3059), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [91908] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1058), 1, - anon_sym_LT, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(4524), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2879), 1, - sym_formal_parameter_list, - STATE(2925), 1, - sym__formal_parameter_part, - STATE(3220), 1, - sym_type_parameters, - ACTIONS(1060), 5, - anon_sym_Function, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - sym_identifier, - [91943] = 10, + [92224] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(85), 1, - anon_sym_var, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4616), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2566), 2, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3318), 2, - sym__type, - sym_inferred_type, - STATE(2569), 3, + STATE(3061), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [91978] = 13, + STATE(3100), 2, + sym_function_type, + sym__type_not_void, + [92258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(4526), 1, - anon_sym_LBRACE, - ACTIONS(4528), 1, + ACTIONS(4620), 2, anon_sym_EQ, - ACTIONS(4530), 1, - anon_sym_extends, - ACTIONS(4532), 1, - anon_sym_with, - ACTIONS(4534), 1, - anon_sym_implements, - STATE(1142), 1, - sym_class_body, - STATE(2538), 1, - sym__implements, - STATE(2672), 1, - sym_type_parameters, - STATE(2960), 1, - sym_superclass, - STATE(3389), 1, - sym_mixins, - STATE(3423), 1, - sym_interfaces, - [92018] = 10, + anon_sym_async, + ACTIONS(4618), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [92278] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4536), 1, - anon_sym_GT, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(2831), 1, + ACTIONS(4616), 1, + sym_identifier, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3272), 1, - sym__type, - STATE(2932), 2, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(3061), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [92052] = 10, + STATE(3090), 2, + sym_function_type, + sym__type_not_void, + [92312] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4616), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3026), 2, - sym_function_type, - sym__type_not_void, - STATE(3048), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - [92086] = 10, + STATE(3080), 2, + sym_function_type, + sym__type_not_void, + [92346] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4542), 1, + ACTIONS(4622), 1, sym_identifier, - ACTIONS(4544), 1, + ACTIONS(4624), 1, anon_sym_Function, - STATE(836), 1, + STATE(2158), 1, sym__function_builtin_identifier, - STATE(840), 1, + STATE(2201), 1, sym__type_name, - STATE(885), 1, + STATE(2245), 1, sym__type_not_void_not_function, - STATE(746), 2, + STATE(2082), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(889), 2, + STATE(2288), 2, sym_function_type, sym__type_not_void, - STATE(3028), 2, + STATE(3049), 2, sym__type_not_function, sym_void_type, - [92120] = 10, + [92380] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, + ACTIONS(4622), 1, sym_identifier, - ACTIONS(4538), 1, + ACTIONS(4624), 1, anon_sym_Function, - ACTIONS(4546), 1, - anon_sym_GT, - STATE(2831), 1, + STATE(2158), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2201), 1, sym__type_name, - STATE(3079), 1, - sym__type, - STATE(2932), 2, + STATE(2245), 1, + sym__type_not_void_not_function, + STATE(2082), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(2284), 2, + sym_function_type, + sym__type_not_void, + STATE(3049), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [92154] = 3, + [92414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 2, + ACTIONS(4628), 2, anon_sym_EQ, anon_sym_async, - ACTIONS(4548), 10, + ACTIONS(4626), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -179858,2015 +184784,1953 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [92174] = 13, + [92434] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(4427), 1, anon_sym_LT, - ACTIONS(4526), 1, - anon_sym_LBRACE, - ACTIONS(4528), 1, - anon_sym_EQ, - ACTIONS(4530), 1, - anon_sym_extends, - ACTIONS(4532), 1, - anon_sym_with, - ACTIONS(4534), 1, - anon_sym_implements, - STATE(1126), 1, - sym_class_body, - STATE(2538), 1, - sym__implements, - STATE(2674), 1, + ACTIONS(4455), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, sym_type_parameters, - STATE(2962), 1, - sym_superclass, - STATE(3389), 1, - sym_mixins, - STATE(3471), 1, - sym_interfaces, - [92214] = 10, + STATE(2974), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(4630), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + [92462] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3481), 1, + anon_sym_LBRACK, + ACTIONS(3485), 1, + anon_sym_QMARK_DOT, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(4247), 1, + anon_sym_DOT, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(1901), 1, + sym_assignable_selector, + STATE(1908), 1, + sym_unconditional_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2716), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [92500] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4552), 1, - anon_sym_GT, - STATE(2831), 1, + ACTIONS(4128), 1, + sym_identifier, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3136), 1, - sym__type, - STATE(2932), 2, + STATE(3290), 1, + sym__type_not_void_not_function, + STATE(2939), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(3109), 2, sym__type_not_function, + sym_void_type, + STATE(3492), 2, + sym_function_type, + sym__type_not_void, + [92534] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(4632), 1, + sym_identifier, + ACTIONS(4634), 1, + anon_sym_Function, + STATE(2078), 1, + sym__function_builtin_identifier, + STATE(2204), 1, + sym__type_name, + STATE(2246), 1, sym__type_not_void_not_function, + STATE(2069), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2305), 2, + sym_function_type, + sym__type_not_void, + STATE(3048), 2, + sym__type_not_function, sym_void_type, - [92248] = 12, + [92568] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, - anon_sym_QMARK_DOT, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(3946), 1, + ACTIONS(4432), 1, + anon_sym_LT, + ACTIONS(4559), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(871), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, + ACTIONS(4563), 1, + anon_sym_QMARK_DOT, + STATE(2492), 1, sym__type_args, - STATE(2411), 1, + STATE(2865), 1, + sym_unconditional_assignable_selector, + STATE(2932), 1, sym_assignable_selector, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2664), 2, + STATE(2716), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [92286] = 3, + [92606] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 2, - anon_sym_EQ, - anon_sym_async, - ACTIONS(4554), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [92306] = 10, + ACTIONS(1632), 1, + anon_sym_QMARK_DOT, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(4231), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_DOT, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(795), 1, + sym_unconditional_assignable_selector, + STATE(797), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2716), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [92644] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4636), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, + ACTIONS(4638), 1, + anon_sym_Function, + STATE(765), 1, sym__type_name, - STATE(2415), 1, + STATE(767), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(813), 1, + sym__type_not_void_not_function, + STATE(757), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, - sym__type_not_function, - sym_void_type, - STATE(3057), 2, + STATE(890), 2, sym_function_type, sym__type_not_void, - [92340] = 10, + STATE(3066), 2, + sym__type_not_function, + sym_void_type, + [92678] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4542), 1, - sym_identifier, - ACTIONS(4544), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(836), 1, + ACTIONS(4616), 1, + sym_identifier, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(840), 1, + STATE(2442), 1, sym__type_name, - STATE(885), 1, - sym__type_not_void_not_function, - STATE(746), 2, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(884), 2, - sym_function_type, - sym__type_not_void, - STATE(3028), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - [92374] = 10, + STATE(3089), 2, + sym_function_type, + sym__type_not_void, + [92712] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4636), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, + ACTIONS(4638), 1, + anon_sym_Function, + STATE(765), 1, sym__type_name, - STATE(2415), 1, + STATE(767), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(813), 1, + sym__type_not_void_not_function, + STATE(757), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3010), 2, + STATE(892), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + STATE(3066), 2, sym__type_not_function, sym_void_type, - [92408] = 10, + [92746] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4616), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - STATE(3074), 2, + STATE(3079), 2, sym_function_type, sym__type_not_void, - [92442] = 12, + [92780] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(657), 1, + ACTIONS(2426), 1, + anon_sym_LBRACK, + ACTIONS(2432), 1, anon_sym_QMARK_DOT, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, + ACTIONS(4229), 1, anon_sym_DOT, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - STATE(240), 1, + STATE(1401), 1, sym_unconditional_assignable_selector, - STATE(259), 1, + STATE(1495), 1, sym_assignable_selector, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2664), 2, + STATE(2716), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [92480] = 10, + [92818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4642), 2, + anon_sym_EQ, + anon_sym_async, + ACTIONS(4640), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [92838] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4558), 1, + ACTIONS(4644), 1, sym_identifier, - ACTIONS(4560), 1, + ACTIONS(4646), 1, anon_sym_Function, - STATE(1180), 1, + STATE(1687), 1, sym__function_builtin_identifier, - STATE(1185), 1, + STATE(1688), 1, sym__type_name, - STATE(1291), 1, + STATE(2015), 1, sym__type_not_void_not_function, - STATE(1118), 2, + STATE(1663), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(1394), 2, + STATE(2058), 2, sym_function_type, sym__type_not_void, - STATE(3078), 2, + STATE(3076), 2, sym__type_not_function, sym_void_type, - [92514] = 10, + [92872] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4562), 1, + ACTIONS(4644), 1, sym_identifier, - ACTIONS(4564), 1, + ACTIONS(4646), 1, anon_sym_Function, - STATE(1181), 1, + STATE(1687), 1, sym__function_builtin_identifier, - STATE(1184), 1, + STATE(1688), 1, sym__type_name, - STATE(1237), 1, + STATE(2015), 1, sym__type_not_void_not_function, - STATE(1106), 2, + STATE(1663), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(1345), 2, + STATE(2064), 2, sym_function_type, sym__type_not_void, - STATE(3018), 2, + STATE(3076), 2, sym__type_not_function, sym_void_type, - [92548] = 10, + [92906] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_LT, + ACTIONS(4648), 1, + anon_sym_LBRACE, + ACTIONS(4650), 1, + anon_sym_EQ, + ACTIONS(4652), 1, + anon_sym_extends, + ACTIONS(4654), 1, + anon_sym_with, + ACTIONS(4656), 1, + anon_sym_implements, + STATE(1153), 1, + sym_class_body, + STATE(2577), 1, + sym__implements, + STATE(2709), 1, + sym_type_parameters, + STATE(3015), 1, + sym_superclass, + STATE(3445), 1, + sym_interfaces, + STATE(3446), 1, + sym_mixins, + [92946] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4658), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3168), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - STATE(3055), 2, - sym_function_type, - sym__type_not_void, - [92582] = 10, + [92980] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_LT, + ACTIONS(4648), 1, + anon_sym_LBRACE, + ACTIONS(4650), 1, + anon_sym_EQ, + ACTIONS(4652), 1, + anon_sym_extends, + ACTIONS(4654), 1, + anon_sym_with, + ACTIONS(4656), 1, + anon_sym_implements, + STATE(1185), 1, + sym_class_body, + STATE(2577), 1, + sym__implements, + STATE(2715), 1, + sym_type_parameters, + STATE(2987), 1, + sym_superclass, + STATE(3446), 1, + sym_mixins, + STATE(3532), 1, + sym_interfaces, + [93020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4662), 2, + anon_sym_EQ, + anon_sym_async, + ACTIONS(4660), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [93040] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2459), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + anon_sym_QMARK_DOT, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(4211), 1, + anon_sym_DOT, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(1375), 1, + sym_unconditional_assignable_selector, + STATE(1458), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2716), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [93078] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4566), 1, - anon_sym_GT, - STATE(2831), 1, + ACTIONS(4616), 1, + sym_identifier, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3255), 1, - sym__type, - STATE(2932), 2, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(3055), 2, + sym_function_type, + sym__type_not_void, + STATE(3061), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [92616] = 10, + [93112] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4558), 1, + ACTIONS(4664), 1, sym_identifier, - ACTIONS(4560), 1, + ACTIONS(4666), 1, anon_sym_Function, - STATE(1180), 1, + STATE(1651), 1, sym__function_builtin_identifier, - STATE(1185), 1, + STATE(1652), 1, sym__type_name, - STATE(1291), 1, + STATE(1707), 1, sym__type_not_void_not_function, - STATE(1118), 2, + STATE(1642), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(1395), 2, + STATE(1871), 2, sym_function_type, sym__type_not_void, - STATE(3078), 2, + STATE(3085), 2, sym__type_not_function, sym_void_type, - [92650] = 10, + [93146] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4664), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4666), 1, + anon_sym_Function, + STATE(1651), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(1652), 1, + sym__type_name, + STATE(1707), 1, + sym__type_not_void_not_function, + STATE(1642), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3045), 2, + STATE(1899), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + STATE(3085), 2, sym__type_not_function, sym_void_type, - [92684] = 10, + [93180] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_QMARK_DOT, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(4432), 1, + anon_sym_LT, + ACTIONS(4668), 1, + anon_sym_DOT, + STATE(2043), 1, + sym_unconditional_assignable_selector, + STATE(2068), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2716), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [93218] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4670), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, + ACTIONS(4672), 1, + anon_sym_Function, + STATE(216), 1, sym__type_name, - STATE(2415), 1, + STATE(218), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(257), 1, + sym__type_not_void_not_function, + STATE(212), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3008), 2, + STATE(330), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + STATE(3040), 2, sym__type_not_function, sym_void_type, - [92718] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 1, - anon_sym_Function, - STATE(3072), 1, - sym__function_builtin_identifier, - STATE(1613), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(4570), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(4568), 5, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - [92744] = 10, + [93252] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4562), 1, + ACTIONS(4670), 1, sym_identifier, - ACTIONS(4564), 1, + ACTIONS(4672), 1, anon_sym_Function, - STATE(1181), 1, - sym__function_builtin_identifier, - STATE(1184), 1, + STATE(216), 1, sym__type_name, - STATE(1237), 1, + STATE(218), 1, + sym__function_builtin_identifier, + STATE(257), 1, sym__type_not_void_not_function, - STATE(1106), 2, + STATE(212), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(1346), 2, + STATE(331), 2, sym_function_type, sym__type_not_void, - STATE(3018), 2, + STATE(3040), 2, sym__type_not_function, sym_void_type, - [92778] = 12, + [93286] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, - anon_sym_LBRACK, - ACTIONS(3437), 1, - anon_sym_QMARK_DOT, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4363), 1, + ACTIONS(4427), 1, anon_sym_LT, - STATE(1732), 1, - sym_assignable_selector, - STATE(1792), 1, - sym_unconditional_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2664), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [92816] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 1, - anon_sym_Function, - STATE(3072), 1, - sym__function_builtin_identifier, - STATE(2596), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(4570), 3, + ACTIONS(4455), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, + sym_type_parameters, + STATE(2937), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + ACTIONS(4674), 6, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RPAREN, - ACTIONS(4568), 5, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_this, + [93314] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(4616), 1, sym_identifier, - [92842] = 10, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(3061), 2, + sym__type_not_function, + sym_void_type, + STATE(3097), 2, + sym_function_type, + sym__type_not_void, + [93348] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4616), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - STATE(3062), 2, + STATE(3110), 2, sym_function_type, sym__type_not_void, - [92876] = 10, + [93382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 2, + anon_sym_EQ, + anon_sym_async, + ACTIONS(4676), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [93402] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4574), 1, - sym_identifier, - ACTIONS(4576), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(182), 1, - sym__type_name, - STATE(191), 1, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4680), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(288), 1, - sym__type_not_void_not_function, - STATE(176), 2, + STATE(2442), 1, + sym__type_name, + STATE(3375), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(232), 2, - sym_function_type, - sym__type_not_void, - STATE(3004), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - [92910] = 10, + [93436] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3752), 1, + anon_sym_LBRACK, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(3758), 1, + anon_sym_QMARK_DOT, + ACTIONS(4432), 1, + anon_sym_LT, + ACTIONS(4682), 1, + anon_sym_DOT, + STATE(2034), 1, + sym_unconditional_assignable_selector, + STATE(2067), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2716), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [93474] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4574), 1, - sym_identifier, - ACTIONS(4576), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(182), 1, - sym__type_name, - STATE(191), 1, - sym__function_builtin_identifier, - STATE(288), 1, + ACTIONS(4616), 1, + sym_identifier, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(176), 2, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(254), 2, + STATE(3057), 2, sym_function_type, sym__type_not_void, - STATE(3004), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - [92944] = 10, + [93508] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4578), 1, - anon_sym_GT, - STATE(2831), 1, + ACTIONS(4616), 1, + sym_identifier, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3246), 1, - sym__type, - STATE(2932), 2, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(3056), 2, + sym_function_type, + sym__type_not_void, + STATE(3061), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [92978] = 10, + [93542] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - STATE(3069), 2, + STATE(3092), 2, sym_function_type, sym__type_not_void, - [93012] = 10, + [93576] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4684), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, + ACTIONS(4686), 1, + anon_sym_Function, + STATE(1215), 1, sym__type_name, - STATE(2415), 1, + STATE(1216), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(1276), 1, + sym__type_not_void_not_function, + STATE(1212), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3041), 2, + STATE(1397), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + STATE(3078), 2, sym__type_not_function, sym_void_type, - [93046] = 10, + [93610] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, + ACTIONS(4684), 1, sym_identifier, - ACTIONS(4538), 1, + ACTIONS(4686), 1, anon_sym_Function, - ACTIONS(4580), 1, - anon_sym_GT, - STATE(2831), 1, - sym__function_builtin_identifier, - STATE(2906), 1, + STATE(1215), 1, sym__type_name, - STATE(3206), 1, - sym__type, - STATE(2932), 2, + STATE(1216), 1, + sym__function_builtin_identifier, + STATE(1276), 1, + sym__type_not_void_not_function, + STATE(1212), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(1416), 2, + sym_function_type, + sym__type_not_void, + STATE(3078), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [93080] = 10, + [93644] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4582), 1, + ACTIONS(4622), 1, sym_identifier, - ACTIONS(4584), 1, + ACTIONS(4624), 1, anon_sym_Function, - STATE(2128), 1, + STATE(2158), 1, sym__function_builtin_identifier, - STATE(2165), 1, - sym__type_name, - STATE(2197), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2018), 2, + STATE(2201), 1, + sym__type_name, + STATE(2082), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2252), 2, + STATE(2288), 2, sym_function_type, sym__type_not_void, - STATE(3031), 2, + STATE(3049), 2, sym__type_not_function, sym_void_type, - [93114] = 10, + [93678] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4582), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4584), 1, + ACTIONS(4690), 1, anon_sym_Function, - STATE(2128), 1, + STATE(1649), 1, sym__function_builtin_identifier, - STATE(2165), 1, + STATE(1650), 1, sym__type_name, - STATE(2197), 1, + STATE(1748), 1, sym__type_not_void_not_function, - STATE(2018), 2, + STATE(1646), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2249), 2, + STATE(1898), 2, sym_function_type, sym__type_not_void, - STATE(3031), 2, + STATE(3099), 2, sym__type_not_function, sym_void_type, - [93148] = 10, + [93712] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4596), 1, + anon_sym_this, + ACTIONS(4692), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3487), 1, - sym_typed_identifier, - STATE(3640), 1, + STATE(2442), 1, + sym__type_name, + STATE(3546), 1, sym__type, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [93182] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(3658), 1, - anon_sym_LBRACK, - ACTIONS(3662), 1, - anon_sym_QMARK_DOT, - ACTIONS(4363), 1, - anon_sym_LT, - ACTIONS(4586), 1, - anon_sym_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2012), 1, - sym_unconditional_assignable_selector, - STATE(2035), 1, - sym_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2664), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [93220] = 10, + [93746] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4538), 1, + ACTIONS(4690), 1, anon_sym_Function, - ACTIONS(4588), 1, - anon_sym_GT, - STATE(2831), 1, + STATE(1649), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(1650), 1, sym__type_name, - STATE(3197), 1, - sym__type, - STATE(2932), 2, + STATE(1748), 1, + sym__type_not_void_not_function, + STATE(1646), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(1897), 2, + sym_function_type, + sym__type_not_void, + STATE(3099), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [93254] = 10, + [93780] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4695), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3131), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - STATE(3063), 2, - sym_function_type, - sym__type_not_void, - [93288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4592), 2, - anon_sym_EQ, - anon_sym_async, - ACTIONS(4590), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [93308] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(4363), 1, - anon_sym_LT, - ACTIONS(4485), 1, - anon_sym_LBRACK, - ACTIONS(4487), 1, - anon_sym_DOT, - ACTIONS(4489), 1, - anon_sym_QMARK_DOT, - STATE(1911), 1, - sym__type_args, - STATE(2791), 1, - sym_unconditional_assignable_selector, - STATE(2852), 1, - sym_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2664), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [93346] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(4526), 1, - anon_sym_LBRACE, - ACTIONS(4528), 1, - anon_sym_EQ, - ACTIONS(4530), 1, - anon_sym_extends, - ACTIONS(4532), 1, - anon_sym_with, - ACTIONS(4534), 1, - anon_sym_implements, - STATE(1127), 1, - sym_class_body, - STATE(2538), 1, - sym__implements, - STATE(2665), 1, - sym_type_parameters, - STATE(2988), 1, - sym_superclass, - STATE(3389), 1, - sym_mixins, - STATE(3390), 1, - sym_interfaces, - [93386] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2372), 1, - anon_sym_LBRACK, - ACTIONS(2378), 1, - anon_sym_QMARK_DOT, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(4140), 1, - anon_sym_DOT, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1384), 1, - sym_unconditional_assignable_selector, - STATE(1435), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2664), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [93424] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3407), 1, - anon_sym_QMARK_DOT, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(4190), 1, - anon_sym_DOT, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1811), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(1922), 1, - sym_unconditional_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2664), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [93462] = 12, + [93814] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 1, + ACTIONS(3475), 1, anon_sym_LBRACK, - ACTIONS(2332), 1, + ACTIONS(3479), 1, anon_sym_QMARK_DOT, - ACTIONS(3643), 1, + ACTIONS(3754), 1, anon_sym_LPAREN, - ACTIONS(4180), 1, + ACTIONS(4195), 1, anon_sym_DOT, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - STATE(1357), 1, + STATE(1777), 1, sym_assignable_selector, - STATE(1361), 1, + STATE(1852), 1, sym_unconditional_assignable_selector, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(2967), 1, + STATE(2989), 1, sym_arguments, - STATE(3505), 1, + STATE(3384), 1, sym_type_arguments, - STATE(2664), 2, + STATE(2716), 2, sym_argument_part, aux_sym_assignable_selector_part_repeat1, - [93500] = 10, + [93852] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4594), 1, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4697), 1, anon_sym_GT, - STATE(2831), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3174), 1, + STATE(3214), 1, sym__type, - STATE(2932), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [93534] = 10, + [93886] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4596), 1, + ACTIONS(4622), 1, sym_identifier, - ACTIONS(4598), 1, + ACTIONS(4624), 1, anon_sym_Function, - STATE(1651), 1, + STATE(2158), 1, sym__function_builtin_identifier, - STATE(1659), 1, - sym__type_name, - STATE(1983), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(1620), 2, + STATE(2201), 1, + sym__type_name, + STATE(2082), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2020), 2, + STATE(2284), 2, sym_function_type, sym__type_not_void, - STATE(3009), 2, + STATE(3049), 2, sym__type_not_function, sym_void_type, - [93568] = 10, + [93920] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4598), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(1651), 1, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4453), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(1659), 1, + STATE(2442), 1, sym__type_name, - STATE(1983), 1, - sym__type_not_void_not_function, - STATE(1620), 2, + STATE(3373), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2021), 2, - sym_function_type, - sym__type_not_void, - STATE(3009), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - [93602] = 10, + [93954] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4699), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, + ACTIONS(4701), 1, + anon_sym_Function, + STATE(1714), 1, sym__type_name, - STATE(2415), 1, + STATE(1716), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2023), 1, + sym__type_not_void_not_function, + STATE(1683), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, - sym__type_not_function, - sym_void_type, - STATE(3052), 2, + STATE(2186), 2, sym_function_type, sym__type_not_void, - [93636] = 10, + STATE(3102), 2, + sym__type_not_function, + sym_void_type, + [93988] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4582), 1, + ACTIONS(4699), 1, sym_identifier, - ACTIONS(4600), 1, + ACTIONS(4701), 1, anon_sym_Function, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2327), 1, - sym__function_builtin_identifier, - STATE(2333), 1, + STATE(1714), 1, sym__type_name, - STATE(2104), 2, + STATE(1716), 1, + sym__function_builtin_identifier, + STATE(2023), 1, + sym__type_not_void_not_function, + STATE(1683), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2249), 2, + STATE(2184), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + STATE(3102), 2, sym__type_not_function, sym_void_type, - [93670] = 10, + [94022] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4602), 1, - anon_sym_GT, - STATE(2831), 1, + ACTIONS(4616), 1, + sym_identifier, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3173), 1, - sym__type, - STATE(2932), 2, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(3058), 2, + sym_function_type, + sym__type_not_void, + STATE(3061), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [93704] = 10, + [94056] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4703), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3340), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - STATE(3073), 2, - sym_function_type, - sym__type_not_void, - [93738] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 1, - anon_sym_Function, - STATE(3072), 1, - sym__function_builtin_identifier, - STATE(1613), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - ACTIONS(4606), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(4604), 5, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - anon_sym_this, - sym_identifier, - [93764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4610), 2, - anon_sym_EQ, - anon_sym_async, - ACTIONS(4608), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [93784] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(4379), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - STATE(2929), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(4612), 6, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - [93812] = 10, + [94090] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3497), 1, + sym_typed_identifier, + STATE(3730), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - STATE(3077), 2, - sym_function_type, - sym__type_not_void, - [93846] = 10, + [94124] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4614), 1, - anon_sym_GT, - STATE(2831), 1, + ACTIONS(4128), 1, + sym_identifier, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3242), 1, - sym__type, - STATE(2932), 2, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(3061), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [93880] = 7, + STATE(3083), 2, + sym_function_type, + sym__type_not_void, + [94158] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1111), 1, anon_sym_LT, - ACTIONS(4379), 1, + ACTIONS(4455), 1, anon_sym_LPAREN, - STATE(2553), 1, + ACTIONS(4457), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(2625), 1, sym__strict_formal_parameter_list, - STATE(3220), 1, + STATE(3289), 1, sym_type_parameters, - STATE(2894), 2, + STATE(2963), 2, sym__formal_parameter_part, sym_formal_parameter_list, - ACTIONS(4616), 6, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - [93908] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3641), 1, - anon_sym_LBRACK, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(3647), 1, - anon_sym_QMARK_DOT, - ACTIONS(4363), 1, - anon_sym_LT, - ACTIONS(4618), 1, - anon_sym_DOT, - STATE(1911), 1, - sym__type_args, - STATE(1933), 1, - sym_unconditional_assignable_selector, - STATE(2019), 1, - sym_assignable_selector, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2664), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [93946] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(1113), 4, anon_sym_Function, - ACTIONS(4620), 1, - anon_sym_GT, - STATE(2831), 1, - sym__function_builtin_identifier, - STATE(2906), 1, - sym__type_name, - STATE(3134), 1, - sym__type, - STATE(2932), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2933), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - [93980] = 10, + anon_sym_get, + anon_sym_set, + sym_identifier, + [94190] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4616), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(2104), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(3011), 2, - sym_function_type, - sym__type_not_void, - STATE(3048), 2, - sym__type_not_function, - sym_void_type, - [94014] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, - anon_sym_Function, - ACTIONS(4622), 1, - anon_sym_GT, - STATE(2831), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3300), 1, - sym__type, - STATE(2932), 2, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(3061), 2, sym__type_not_function, - sym__type_not_void_not_function, sym_void_type, - [94048] = 10, + STATE(3101), 2, + sym_function_type, + sym__type_not_void, + [94224] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4624), 1, - sym_identifier, - ACTIONS(4626), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(918), 1, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4705), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(919), 1, + STATE(2442), 1, sym__type_name, - STATE(940), 1, - sym__type_not_void_not_function, - STATE(917), 2, + STATE(3319), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(930), 2, - sym_function_type, - sym__type_not_void, - STATE(3065), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - [94082] = 10, + [94258] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4628), 1, + ACTIONS(4707), 1, sym_identifier, - ACTIONS(4630), 1, + ACTIONS(4709), 1, anon_sym_Function, - STATE(728), 1, + STATE(1220), 1, sym__function_builtin_identifier, - STATE(734), 1, + STATE(1221), 1, sym__type_name, - STATE(834), 1, + STATE(1295), 1, sym__type_not_void_not_function, - STATE(723), 2, + STATE(1154), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(832), 2, + STATE(1484), 2, sym_function_type, sym__type_not_void, - STATE(3067), 2, + STATE(3103), 2, sym__type_not_function, sym_void_type, - [94116] = 10, + [94292] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_LT, + ACTIONS(4648), 1, + anon_sym_LBRACE, + ACTIONS(4650), 1, + anon_sym_EQ, + ACTIONS(4652), 1, + anon_sym_extends, + ACTIONS(4654), 1, + anon_sym_with, + ACTIONS(4656), 1, + anon_sym_implements, + STATE(1201), 1, + sym_class_body, + STATE(2577), 1, + sym__implements, + STATE(2713), 1, + sym_type_parameters, + STATE(3007), 1, + sym_superclass, + STATE(3446), 1, + sym_mixins, + STATE(3548), 1, + sym_interfaces, + [94332] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(682), 1, + anon_sym_QMARK_DOT, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(4197), 1, + anon_sym_LBRACK, + ACTIONS(4205), 1, + anon_sym_DOT, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(306), 1, + sym_unconditional_assignable_selector, + STATE(329), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2716), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [94370] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4711), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3089), 1, - sym_typed_identifier, - STATE(3640), 1, + STATE(2442), 1, + sym__type_name, + STATE(3189), 1, sym__type, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [94150] = 10, + [94404] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4624), 1, + ACTIONS(4707), 1, sym_identifier, - ACTIONS(4626), 1, + ACTIONS(4709), 1, anon_sym_Function, - STATE(918), 1, + STATE(1220), 1, sym__function_builtin_identifier, - STATE(919), 1, + STATE(1221), 1, sym__type_name, - STATE(940), 1, + STATE(1295), 1, sym__type_not_void_not_function, - STATE(917), 2, + STATE(1154), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(934), 2, + STATE(1482), 2, sym_function_type, sym__type_not_void, - STATE(3065), 2, + STATE(3103), 2, sym__type_not_function, sym_void_type, - [94184] = 10, + [94438] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4612), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, + ACTIONS(4614), 1, + anon_sym_Function, + STATE(790), 1, sym__type_name, - STATE(2415), 1, + STATE(792), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(940), 1, + sym__type_not_void_not_function, + STATE(776), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3027), 2, + STATE(926), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + STATE(3059), 2, sym__type_not_function, sym_void_type, - [94218] = 10, + [94472] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2166), 1, + anon_sym_QMARK_DOT, + ACTIONS(3754), 1, + anon_sym_LPAREN, + ACTIONS(4035), 1, + anon_sym_LBRACK, + ACTIONS(4312), 1, + anon_sym_DOT, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(939), 1, + sym_unconditional_assignable_selector, + STATE(2446), 1, + sym_assignable_selector, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2716), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + [94510] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4632), 1, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4713), 1, anon_sym_GT, - STATE(2831), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3143), 1, + STATE(3273), 1, sym__type, - STATE(2932), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [94252] = 10, + [94544] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4634), 1, - sym_identifier, - ACTIONS(4636), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(1614), 1, - sym__type_name, - STATE(1615), 1, - sym__function_builtin_identifier, - STATE(1680), 1, + ACTIONS(4128), 1, + sym_identifier, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(1603), 2, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(1890), 2, + STATE(3039), 2, sym_function_type, sym__type_not_void, - STATE(3051), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - [94286] = 10, + [94578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(4638), 1, - sym_identifier, - ACTIONS(4640), 1, + ACTIONS(4715), 1, anon_sym_Function, - STATE(2017), 1, + STATE(3108), 1, sym__function_builtin_identifier, - STATE(2169), 1, - sym__type_name, - STATE(2212), 1, - sym__type_not_void_not_function, - STATE(2060), 2, + STATE(2441), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2257), 2, - sym_function_type, - sym__type_not_void, - STATE(3022), 2, - sym__type_not_function, - sym_void_type, - [94320] = 10, + ACTIONS(1043), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_catch, + anon_sym_with, + anon_sym_implements, + anon_sym_SEMI, + [94602] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_Function, + STATE(3108), 1, + sym__function_builtin_identifier, + STATE(2441), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + ACTIONS(1037), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_catch, + anon_sym_with, + anon_sym_implements, + anon_sym_SEMI, + [94626] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4717), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3265), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3048), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - STATE(3053), 2, - sym_function_type, - sym__type_not_void, - [94354] = 10, + [94660] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4520), 1, - anon_sym_this, - ACTIONS(4642), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(3380), 1, + STATE(2442), 1, + sym__type_name, + STATE(3271), 1, + sym_typed_identifier, + STATE(3730), 1, sym__type, - STATE(2566), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2569), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [94388] = 10, + [94694] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4645), 1, + ACTIONS(4719), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4721), 1, anon_sym_Function, - STATE(1610), 1, + STATE(954), 1, sym__function_builtin_identifier, - STATE(1611), 1, + STATE(955), 1, sym__type_name, - STATE(1676), 1, + STATE(978), 1, sym__type_not_void_not_function, - STATE(1606), 2, + STATE(952), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(1814), 2, + STATE(969), 2, sym_function_type, sym__type_not_void, - STATE(3043), 2, + STATE(3091), 2, sym__type_not_function, sym_void_type, - [94422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4651), 2, - anon_sym_EQ, - anon_sym_async, - ACTIONS(4649), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [94442] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1058), 1, - anon_sym_LT, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(4381), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - STATE(2925), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - ACTIONS(1060), 4, - anon_sym_Function, - anon_sym_get, - anon_sym_set, - sym_identifier, - [94474] = 10, + [94728] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4582), 1, + ACTIONS(4719), 1, sym_identifier, - ACTIONS(4600), 1, + ACTIONS(4721), 1, anon_sym_Function, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2327), 1, + STATE(954), 1, sym__function_builtin_identifier, - STATE(2333), 1, + STATE(955), 1, sym__type_name, - STATE(2104), 2, + STATE(978), 1, + sym__type_not_void_not_function, + STATE(952), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2252), 2, + STATE(971), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + STATE(3091), 2, sym__type_not_function, sym_void_type, - [94508] = 10, + [94762] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4128), 1, sym_identifier, - STATE(2162), 1, - sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + ACTIONS(4723), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(3298), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3032), 2, - sym_function_type, - sym__type_not_void, - STATE(3048), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - [94542] = 10, + [94796] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4653), 1, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4725), 1, anon_sym_GT, - STATE(2831), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3232), 1, + STATE(3127), 1, sym__type, - STATE(2932), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [94576] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1546), 1, - anon_sym_QMARK_DOT, - ACTIONS(3643), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_LBRACK, - ACTIONS(4198), 1, - anon_sym_DOT, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(779), 1, - sym_unconditional_assignable_selector, - STATE(783), 1, - sym_assignable_selector, - STATE(1911), 1, - sym__type_args, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2664), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - [94614] = 10, + [94830] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4628), 1, + ACTIONS(4632), 1, sym_identifier, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_Function, - STATE(728), 1, + STATE(2078), 1, sym__function_builtin_identifier, - STATE(734), 1, + STATE(2204), 1, sym__type_name, - STATE(834), 1, + STATE(2246), 1, sym__type_not_void_not_function, - STATE(723), 2, + STATE(2069), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(833), 2, + STATE(2304), 2, sym_function_type, sym__type_not_void, - STATE(3067), 2, + STATE(3048), 2, sym__type_not_function, sym_void_type, - [94648] = 10, + [94864] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4634), 1, - sym_identifier, - ACTIONS(4636), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(1614), 1, - sym__type_name, - STATE(1615), 1, - sym__function_builtin_identifier, - STATE(1680), 1, + ACTIONS(4616), 1, + sym_identifier, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(1603), 2, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(1774), 2, + STATE(3052), 2, sym_function_type, sym__type_not_void, - STATE(3051), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - [94682] = 10, + [94898] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4657), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(1682), 1, - sym__type_name, - STATE(1683), 1, - sym__function_builtin_identifier, - STATE(1938), 1, + ACTIONS(4616), 1, + sym_identifier, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(1629), 2, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2054), 2, - sym_function_type, - sym__type_not_void, - STATE(3038), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - [94716] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4657), 1, - anon_sym_Function, - STATE(1682), 1, - sym__type_name, - STATE(1683), 1, - sym__function_builtin_identifier, - STATE(1938), 1, - sym__type_not_void_not_function, - STATE(1629), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2051), 2, + STATE(3106), 2, sym_function_type, sym__type_not_void, - STATE(3038), 2, - sym__type_not_function, - sym_void_type, - [94750] = 10, + [94932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4729), 2, + anon_sym_EQ, + anon_sym_async, + ACTIONS(4727), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [94952] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4059), 1, + ACTIONS(4616), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3039), 2, + STATE(3051), 2, sym_function_type, sym__type_not_void, - STATE(3048), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - [94784] = 10, + [94986] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(2831), 1, + ACTIONS(4128), 1, + sym_identifier, + STATE(2195), 1, + sym__type_not_void_not_function, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3178), 1, - sym__type_not_void_not_function, - STATE(2917), 2, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3070), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - STATE(3409), 2, + STATE(3094), 2, sym_function_type, sym__type_not_void, - [94818] = 10, + [95020] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, ACTIONS(93), 1, anon_sym_Function, - ACTIONS(4540), 1, + ACTIONS(4616), 1, sym_identifier, - STATE(2162), 1, + STATE(2195), 1, sym__type_not_void_not_function, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2104), 2, + STATE(2442), 1, + sym__type_name, + STATE(2661), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(3033), 2, - sym_function_type, - sym__type_not_void, - STATE(3048), 2, + STATE(3061), 2, sym__type_not_function, sym_void_type, - [94852] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(4645), 1, - sym_identifier, - ACTIONS(4647), 1, - anon_sym_Function, - STATE(1610), 1, - sym__function_builtin_identifier, - STATE(1611), 1, - sym__type_name, - STATE(1676), 1, - sym__type_not_void_not_function, - STATE(1606), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(1815), 2, + STATE(3073), 2, sym_function_type, sym__type_not_void, - STATE(3043), 2, - sym__type_not_function, - sym_void_type, - [94886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 2, - anon_sym_EQ, - anon_sym_async, - ACTIONS(4659), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [94906] = 10, + [95054] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4638), 1, - sym_identifier, - ACTIONS(4640), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(2017), 1, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4731), 1, + anon_sym_GT, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2169), 1, + STATE(2442), 1, sym__type_name, - STATE(2212), 1, - sym__type_not_void_not_function, - STATE(2060), 2, + STATE(3267), 1, + sym__type, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2254), 2, - sym_function_type, - sym__type_not_void, - STATE(3022), 2, + STATE(2588), 3, sym__type_not_function, + sym__type_not_void_not_function, sym_void_type, - [94940] = 9, + [95088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(655), 1, + STATE(605), 1, sym_relational_operator, - STATE(2613), 1, + STATE(2594), 1, + sym_is_operator, + STATE(2595), 1, sym_as_operator, - STATE(2632), 1, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + [95119] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_is, + ACTIONS(4092), 1, + anon_sym_as, + STATE(722), 1, + sym_relational_operator, + STATE(2617), 1, sym_is_operator, - ACTIONS(2091), 2, + STATE(2618), 1, + sym_as_operator, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2243), 2, + STATE(1792), 2, sym_type_test, sym_type_cast, - [94971] = 9, + [95150] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(629), 1, + STATE(734), 1, sym_relational_operator, - STATE(2613), 1, + STATE(2631), 1, sym_as_operator, STATE(2632), 1, sym_is_operator, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2243), 2, + STATE(1465), 2, sym_type_test, sym_type_cast, - [95002] = 11, + [95181] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -181875,22 +186739,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1632), 1, + ACTIONS(1822), 1, sym_increment_operator, - ACTIONS(4663), 1, + ACTIONS(4733), 1, anon_sym_await, - STATE(1379), 1, - sym_unary_expression, - STATE(1406), 1, + STATE(910), 1, sym_await_expression, - STATE(2635), 1, + STATE(914), 1, + sym_unary_expression, + STATE(2679), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, STATE(2859), 2, sym_minus_operator, sym_tilde_operator, - [95037] = 11, + [95216] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_is, + ACTIONS(4092), 1, + anon_sym_as, + STATE(713), 1, + sym_relational_operator, + STATE(2633), 1, + sym_is_operator, + STATE(2640), 1, + sym_as_operator, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + [95247] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -181899,88 +186785,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1828), 1, + ACTIONS(1778), 1, sym_increment_operator, - ACTIONS(4665), 1, + ACTIONS(4735), 1, anon_sym_await, - STATE(766), 1, + STATE(1939), 1, sym_unary_expression, - STATE(767), 1, + STATE(1945), 1, sym_await_expression, - STATE(2636), 1, + STATE(2681), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2796), 2, + STATE(2915), 2, sym_minus_operator, sym_tilde_operator, - [95072] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 1, - anon_sym_is, - ACTIONS(4002), 1, - anon_sym_as, - STATE(651), 1, - sym_relational_operator, - STATE(2593), 1, - sym_as_operator, - STATE(2619), 1, - sym_is_operator, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(2247), 2, - sym_type_test, - sym_type_cast, - [95103] = 9, + [95282] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(714), 1, + STATE(597), 1, sym_relational_operator, - STATE(2577), 1, + STATE(2664), 1, sym_is_operator, - STATE(2578), 1, + STATE(2665), 1, sym_as_operator, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2247), 2, + STATE(970), 2, sym_type_test, sym_type_cast, - [95134] = 9, + [95313] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(570), 1, + STATE(684), 1, sym_relational_operator, - STATE(2559), 1, + STATE(2609), 1, sym_is_operator, - STATE(2563), 1, + STATE(2610), 1, sym_as_operator, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(1419), 2, + STATE(2106), 2, sym_type_test, sym_type_cast, - [95165] = 11, + [95344] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -181989,68 +186853,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1734), 1, + ACTIONS(1784), 1, sym_increment_operator, - ACTIONS(4667), 1, + ACTIONS(4737), 1, anon_sym_await, - STATE(2250), 1, + STATE(2277), 1, + sym_unary_expression, + STATE(2290), 1, sym_await_expression, - STATE(2271), 1, + STATE(2684), 1, + sym_prefix_operator, + STATE(3008), 1, + sym_negation_operator, + STATE(2822), 2, + sym_minus_operator, + sym_tilde_operator, + [95379] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_DASH, + ACTIONS(45), 1, + anon_sym_BANG, + ACTIONS(47), 1, + anon_sym_TILDE, + ACTIONS(1796), 1, + sym_increment_operator, + ACTIONS(4739), 1, + anon_sym_await, + STATE(2131), 1, sym_unary_expression, - STATE(2640), 1, + STATE(2134), 1, + sym_await_expression, + STATE(2685), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2857), 2, + STATE(2911), 2, sym_minus_operator, sym_tilde_operator, - [95200] = 9, + [95414] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(577), 1, + STATE(703), 1, sym_relational_operator, - STATE(2607), 1, + STATE(2600), 1, sym_as_operator, - STATE(2623), 1, + STATE(2668), 1, sym_is_operator, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(763), 2, + STATE(2292), 2, sym_type_test, sym_type_cast, - [95231] = 11, + [95445] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(43), 1, - sym_increment_operator, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_TILDE, - ACTIONS(4669), 1, - anon_sym_await, - STATE(2250), 1, - sym_await_expression, - STATE(2271), 1, - sym_unary_expression, - STATE(2642), 1, - sym_prefix_operator, - STATE(2965), 1, - sym_negation_operator, - STATE(2857), 2, - sym_minus_operator, - sym_tilde_operator, - [95266] = 11, + ACTIONS(4090), 1, + anon_sym_is, + ACTIONS(4092), 1, + anon_sym_as, + STATE(639), 1, + sym_relational_operator, + STATE(2633), 1, + sym_is_operator, + STATE(2640), 1, + sym_as_operator, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(2280), 2, + sym_type_test, + sym_type_cast, + [95476] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -182059,44 +186945,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1773), 1, + ACTIONS(1716), 1, sym_increment_operator, - ACTIONS(4671), 1, + ACTIONS(4741), 1, anon_sym_await, - STATE(2109), 1, + STATE(2077), 1, sym_unary_expression, - STATE(2125), 1, + STATE(2100), 1, sym_await_expression, - STATE(2643), 1, + STATE(2688), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2771), 2, + STATE(2890), 2, sym_minus_operator, sym_tilde_operator, - [95301] = 9, + [95511] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(638), 1, + STATE(640), 1, sym_relational_operator, - STATE(2612), 1, + STATE(2620), 1, sym_as_operator, - STATE(2624), 1, + STATE(2621), 1, sym_is_operator, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(1919), 2, + STATE(332), 2, sym_type_test, sym_type_cast, - [95332] = 11, + [95542] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(4128), 1, + sym_identifier, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(3518), 1, + sym__type, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + [95573] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -182105,178 +187013,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1763), 1, + ACTIONS(1832), 1, sym_increment_operator, - ACTIONS(4673), 1, + ACTIONS(4743), 1, anon_sym_await, - STATE(887), 1, - sym_unary_expression, - STATE(898), 1, + STATE(835), 1, sym_await_expression, - STATE(2645), 1, + STATE(839), 1, + sym_unary_expression, + STATE(2691), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2778), 2, + STATE(2818), 2, sym_minus_operator, sym_tilde_operator, - [95367] = 9, + [95608] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(603), 1, + STATE(595), 1, sym_relational_operator, - STATE(2590), 1, - sym_as_operator, - STATE(2591), 1, + STATE(2603), 1, sym_is_operator, - ACTIONS(2091), 2, + STATE(2605), 1, + sym_as_operator, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2080), 2, + STATE(849), 2, sym_type_test, sym_type_cast, - [95398] = 9, + [95639] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(653), 1, + STATE(650), 1, sym_relational_operator, - STATE(2560), 1, - sym_as_operator, - STATE(2567), 1, + STATE(2642), 1, sym_is_operator, - ACTIONS(2091), 2, + STATE(2643), 1, + sym_as_operator, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(1403), 2, + STATE(2122), 2, sym_type_test, sym_type_cast, - [95429] = 9, + [95670] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4642), 1, - sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(3191), 1, - sym__type, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - [95460] = 9, + ACTIONS(4090), 1, + anon_sym_is, + ACTIONS(4092), 1, + anon_sym_as, + STATE(669), 1, + sym_relational_operator, + STATE(2634), 1, + sym_is_operator, + STATE(2636), 1, + sym_as_operator, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(1930), 2, + sym_type_test, + sym_type_cast, + [95701] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(586), 1, + STATE(673), 1, sym_relational_operator, - STATE(2593), 1, + STATE(2651), 1, + sym_is_operator, + STATE(2655), 1, sym_as_operator, - STATE(2619), 1, + ACTIONS(2154), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2156), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(1409), 2, + sym_type_test, + sym_type_cast, + [95732] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_is, + ACTIONS(4092), 1, + anon_sym_as, + STATE(742), 1, + sym_relational_operator, + STATE(2594), 1, sym_is_operator, - ACTIONS(2091), 2, + STATE(2595), 1, + sym_as_operator, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2247), 2, + STATE(2280), 2, sym_type_test, sym_type_cast, - [95491] = 9, + [95763] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym_void, - ACTIONS(4059), 1, - sym_identifier, - ACTIONS(4538), 1, + ACTIONS(93), 1, anon_sym_Function, - STATE(2831), 1, + ACTIONS(4128), 1, + sym_identifier, + STATE(2440), 1, sym__function_builtin_identifier, - STATE(2906), 1, + STATE(2442), 1, sym__type_name, - STATE(3470), 1, + STATE(3179), 1, sym__type, - STATE(2932), 2, + STATE(2581), 2, aux_sym__function_type_tails, sym__function_type_tail, - STATE(2933), 3, + STATE(2588), 3, sym__type_not_function, sym__type_not_void_not_function, sym_void_type, - [95522] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_TILDE, - ACTIONS(1753), 1, - sym_increment_operator, - ACTIONS(4675), 1, - anon_sym_await, - STATE(2241), 1, - sym_await_expression, - STATE(2246), 1, - sym_unary_expression, - STATE(2651), 1, - sym_prefix_operator, - STATE(2965), 1, - sym_negation_operator, - STATE(2887), 2, - sym_minus_operator, - sym_tilde_operator, - [95557] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 1, - anon_sym_is, - ACTIONS(4002), 1, - anon_sym_as, - STATE(680), 1, - sym_relational_operator, - STATE(2547), 1, - sym_as_operator, - STATE(2555), 1, - sym_is_operator, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(878), 2, - sym_type_test, - sym_type_cast, - [95588] = 11, + [95794] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -182285,44 +187169,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1722), 1, + ACTIONS(1847), 1, sym_increment_operator, - ACTIONS(4677), 1, + ACTIONS(4745), 1, anon_sym_await, - STATE(225), 1, + STATE(1348), 1, sym_unary_expression, - STATE(303), 1, + STATE(1402), 1, sym_await_expression, - STATE(2653), 1, + STATE(2698), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2797), 2, + STATE(2835), 2, sym_minus_operator, sym_tilde_operator, - [95623] = 9, + [95829] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, - anon_sym_is, - ACTIONS(4002), 1, - anon_sym_as, - STATE(701), 1, - sym_relational_operator, - STATE(2571), 1, - sym_is_operator, - STATE(2572), 1, - sym_as_operator, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(276), 2, - sym_type_test, - sym_type_cast, - [95654] = 11, + ACTIONS(83), 1, + anon_sym_void, + ACTIONS(93), 1, + anon_sym_Function, + ACTIONS(4692), 1, + sym_identifier, + STATE(2440), 1, + sym__function_builtin_identifier, + STATE(2442), 1, + sym__type_name, + STATE(3297), 1, + sym__type, + STATE(2581), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + STATE(2588), 3, + sym__type_not_function, + sym__type_not_void_not_function, + sym_void_type, + [95860] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -182331,46 +187215,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1806), 1, + ACTIONS(1768), 1, sym_increment_operator, - ACTIONS(4679), 1, + ACTIONS(4747), 1, anon_sym_await, - STATE(2139), 1, + STATE(1821), 1, sym_unary_expression, - STATE(2143), 1, + STATE(1827), 1, sym_await_expression, - STATE(2655), 1, + STATE(2700), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2799), 2, + STATE(2914), 2, sym_minus_operator, sym_tilde_operator, - [95689] = 11, + [95895] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_DASH, + ACTIONS(43), 1, + sym_increment_operator, ACTIONS(45), 1, anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1668), 1, - sym_increment_operator, - ACTIONS(4681), 1, + ACTIONS(4749), 1, anon_sym_await, - STATE(1896), 1, + STATE(2277), 1, sym_unary_expression, - STATE(1905), 1, + STATE(2290), 1, sym_await_expression, - STATE(2656), 1, + STATE(2701), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2861), 2, + STATE(2822), 2, sym_minus_operator, sym_tilde_operator, - [95724] = 11, + [95930] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -182379,110 +187263,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1684), 1, + ACTIONS(1752), 1, sym_increment_operator, - ACTIONS(4683), 1, + ACTIONS(4751), 1, anon_sym_await, - STATE(1864), 1, - sym_await_expression, - STATE(1888), 1, + STATE(300), 1, sym_unary_expression, - STATE(2657), 1, + STATE(327), 1, + sym_await_expression, + STATE(2702), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2812), 2, + STATE(2833), 2, sym_minus_operator, sym_tilde_operator, - [95759] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_void, - ACTIONS(93), 1, - anon_sym_Function, - ACTIONS(4059), 1, - sym_identifier, - STATE(2414), 1, - sym__type_name, - STATE(2415), 1, - sym__function_builtin_identifier, - STATE(3317), 1, - sym__type, - STATE(2566), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - STATE(2569), 3, - sym__type_not_function, - sym__type_not_void_not_function, - sym_void_type, - [95790] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 1, - anon_sym_is, - ACTIONS(4002), 1, - anon_sym_as, - STATE(652), 1, - sym_relational_operator, - STATE(2606), 1, - sym_is_operator, - STATE(2609), 1, - sym_as_operator, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(931), 2, - sym_type_test, - sym_type_cast, - [95821] = 9, + [95965] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(703), 1, + STATE(692), 1, sym_relational_operator, - STATE(2616), 1, + STATE(2600), 1, sym_as_operator, - STATE(2630), 1, + STATE(2668), 1, sym_is_operator, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(1875), 2, + STATE(2292), 2, sym_type_test, sym_type_cast, - [95852] = 9, + [95996] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 1, + ACTIONS(4090), 1, anon_sym_is, - ACTIONS(4002), 1, + ACTIONS(4092), 1, anon_sym_as, - STATE(681), 1, + STATE(710), 1, sym_relational_operator, - STATE(2625), 1, + STATE(2589), 1, sym_is_operator, - STATE(2626), 1, + STATE(2656), 1, sym_as_operator, - ACTIONS(2091), 2, + ACTIONS(2154), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2093), 2, + ACTIONS(2156), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(2106), 2, + STATE(934), 2, sym_type_test, sym_type_cast, - [95883] = 11, + [96027] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -182491,220 +187331,185 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(47), 1, anon_sym_TILDE, - ACTIONS(1848), 1, + ACTIONS(1700), 1, sym_increment_operator, - ACTIONS(4685), 1, + ACTIONS(4753), 1, anon_sym_await, - STATE(1337), 1, - sym_unary_expression, - STATE(1338), 1, + STATE(2274), 1, sym_await_expression, - STATE(2662), 1, + STATE(2300), 1, + sym_unary_expression, + STATE(2705), 1, sym_prefix_operator, - STATE(2965), 1, + STATE(3008), 1, sym_negation_operator, - STATE(2856), 2, + STATE(2930), 2, sym_minus_operator, sym_tilde_operator, - [95918] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 1, - anon_sym_is, - ACTIONS(4002), 1, - anon_sym_as, - STATE(602), 1, - sym_relational_operator, - STATE(2577), 1, - sym_is_operator, - STATE(2578), 1, - sym_as_operator, - ACTIONS(2091), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2093), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(2247), 2, - sym_type_test, - sym_type_cast, - [95949] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4690), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(2967), 1, - sym_arguments, - STATE(3505), 1, - sym_type_arguments, - STATE(2664), 2, - sym_argument_part, - aux_sym_assignable_selector_part_repeat1, - ACTIONS(837), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [95977] = 11, + [96062] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - ACTIONS(4530), 1, - anon_sym_extends, - ACTIONS(4532), 1, - anon_sym_with, - ACTIONS(4534), 1, - anon_sym_implements, - ACTIONS(4693), 1, - anon_sym_EQ, - STATE(1144), 1, - sym_class_body, - STATE(2538), 1, - sym__implements, - STATE(2948), 1, - sym_superclass, - STATE(3389), 1, - sym_mixins, - STATE(3428), 1, - sym_interfaces, - [96011] = 5, + ACTIONS(41), 1, + anon_sym_DASH, + ACTIONS(45), 1, + anon_sym_BANG, + ACTIONS(47), 1, + anon_sym_TILDE, + ACTIONS(1806), 1, + sym_increment_operator, + ACTIONS(4755), 1, + anon_sym_await, + STATE(1449), 1, + sym_await_expression, + STATE(1483), 1, + sym_unary_expression, + STATE(2706), 1, + sym_prefix_operator, + STATE(3008), 1, + sym_negation_operator, + STATE(2912), 2, + sym_minus_operator, + sym_tilde_operator, + [96097] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, + ACTIONS(3946), 1, anon_sym_DOT_DOT, - ACTIONS(4697), 1, + ACTIONS(4759), 1, anon_sym_async, - STATE(2668), 2, + STATE(2717), 2, sym_cascade_section, aux_sym__expression_repeat1, - ACTIONS(4695), 6, + ACTIONS(4757), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [96033] = 5, + [96119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, + ACTIONS(3946), 1, anon_sym_DOT_DOT, - ACTIONS(4701), 1, + ACTIONS(4763), 1, anon_sym_async, - STATE(2668), 2, + STATE(2717), 2, sym_cascade_section, aux_sym__expression_repeat1, - ACTIONS(4699), 6, + ACTIONS(4761), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [96055] = 5, + [96141] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 1, - anon_sym_async, - ACTIONS(4703), 1, - anon_sym_DOT_DOT, - STATE(2668), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(1016), 6, + ACTIONS(4648), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [96077] = 8, + ACTIONS(4652), 1, + anon_sym_extends, + ACTIONS(4654), 1, + anon_sym_with, + ACTIONS(4656), 1, + anon_sym_implements, + ACTIONS(4765), 1, + anon_sym_EQ, + STATE(1165), 1, + sym_class_body, + STATE(2577), 1, + sym__implements, + STATE(3001), 1, + sym_superclass, + STATE(3446), 1, + sym_mixins, + STATE(3560), 1, + sym_interfaces, + [96175] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 1, + ACTIONS(4767), 1, anon_sym_AT, - ACTIONS(4708), 1, + ACTIONS(4769), 1, anon_sym_export, - ACTIONS(4710), 1, + ACTIONS(4771), 1, anon_sym_import, - STATE(1060), 1, + STATE(1120), 1, sym_import_specification, - STATE(2491), 1, - sym__export, - STATE(2501), 1, + STATE(2517), 1, sym__import, - STATE(2858), 4, + STATE(2537), 1, + sym__export, + STATE(2920), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - [96105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 1, - anon_sym_DOT_DOT, - STATE(2673), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - ACTIONS(996), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_SEMI, - [96125] = 3, + [96203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 4, + ACTIONS(4775), 4, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_GT, - ACTIONS(4712), 6, + ACTIONS(4773), 6, anon_sym_Function, anon_sym_get, anon_sym_operator, anon_sym_set, anon_sym_this, sym_identifier, - [96143] = 11, + [96221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4777), 1, + anon_sym_DOT_DOT, + STATE(2712), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1077), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_SEMI, + [96241] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 1, anon_sym_LBRACE, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_extends, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_with, - ACTIONS(4534), 1, + ACTIONS(4656), 1, anon_sym_implements, - ACTIONS(4693), 1, + ACTIONS(4765), 1, anon_sym_EQ, - STATE(1171), 1, + STATE(1214), 1, sym_class_body, - STATE(2538), 1, + STATE(2577), 1, sym__implements, - STATE(2992), 1, + STATE(3028), 1, sym_superclass, - STATE(3389), 1, + STATE(3446), 1, sym_mixins, - STATE(3458), 1, + STATE(3508), 1, sym_interfaces, - [96177] = 4, + [96275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4716), 1, + ACTIONS(3927), 1, anon_sym_DOT_DOT, - STATE(2673), 2, + STATE(2712), 2, sym_cascade_section, aux_sym__expression_repeat1, - ACTIONS(1016), 7, + ACTIONS(1070), 7, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -182712,1479 +187517,1519 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_else, anon_sym_SEMI, - [96197] = 11, + [96295] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4648), 1, anon_sym_LBRACE, - ACTIONS(4530), 1, + ACTIONS(4652), 1, anon_sym_extends, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_with, - ACTIONS(4534), 1, + ACTIONS(4656), 1, anon_sym_implements, - ACTIONS(4693), 1, + ACTIONS(4765), 1, anon_sym_EQ, - STATE(1133), 1, + STATE(1175), 1, sym_class_body, - STATE(2538), 1, + STATE(2577), 1, sym__implements, - STATE(2959), 1, + STATE(3014), 1, sym_superclass, - STATE(3389), 1, - sym_mixins, - STATE(3484), 1, + STATE(3439), 1, sym_interfaces, - [96231] = 6, + STATE(3446), 1, + sym_mixins, + [96329] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4780), 1, + anon_sym_LPAREN, + ACTIONS(4783), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(2989), 1, + sym_arguments, + STATE(3384), 1, + sym_type_arguments, + STATE(2716), 2, + sym_argument_part, + aux_sym_assignable_selector_part_repeat1, + ACTIONS(1007), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [96357] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1079), 1, + anon_sym_async, + ACTIONS(4786), 1, + anon_sym_DOT_DOT, + STATE(2717), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + ACTIONS(1077), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [96379] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4725), 1, + ACTIONS(4795), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4793), 2, + sym__template_chars_double, anon_sym_SQUOTE, - ACTIONS(4723), 2, - sym__template_chars_single_single, + STATE(2723), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_double_quotes_multiple_repeat1, + [96402] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 1, + sym__unused_escape_sequence, + ACTIONS(4799), 1, + anon_sym_DOLLAR, + ACTIONS(4803), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4801), 2, + sym__template_chars_single, anon_sym_DQUOTE, - STATE(2747), 4, + STATE(2775), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_repeat1, - [96254] = 6, + aux_sym__string_literal_single_quotes_multiple_repeat1, + [96425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4730), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4736), 1, + ACTIONS(4807), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4733), 2, + ACTIONS(4805), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2676), 4, + STATE(2732), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [96277] = 6, + [96448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4742), 1, + ACTIONS(4811), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4809), 2, + sym__template_chars_single, anon_sym_DQUOTE, - ACTIONS(4744), 2, - sym__template_chars_double_single, + STATE(2735), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_single_quotes_multiple_repeat1, + [96471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 1, + sym__unused_escape_sequence, + ACTIONS(4791), 1, + anon_sym_DOLLAR, + ACTIONS(4815), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4813), 2, + sym__template_chars_double, anon_sym_SQUOTE, - STATE(2744), 4, + STATE(2754), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_repeat1, - [96300] = 6, + aux_sym__string_literal_double_quotes_multiple_repeat1, + [96494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4817), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4820), 1, + anon_sym_DOLLAR, + ACTIONS(4826), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4823), 2, + sym__template_chars_double, + anon_sym_SQUOTE, + STATE(2723), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_double_quotes_multiple_repeat1, + [96517] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 1, + sym__unused_escape_sequence, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4748), 1, + ACTIONS(4834), 1, anon_sym_SQUOTE, - ACTIONS(4746), 2, + ACTIONS(4832), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2743), 4, + STATE(2752), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [96323] = 6, + [96540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4750), 1, + ACTIONS(4840), 1, anon_sym_DQUOTE, - ACTIONS(4752), 2, + ACTIONS(4842), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2705), 4, + STATE(2751), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [96346] = 6, + [96563] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 1, + sym__unused_escape_sequence, + ACTIONS(4799), 1, + anon_sym_DOLLAR, + ACTIONS(4846), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4844), 2, + sym__template_chars_single, + anon_sym_DQUOTE, + STATE(2743), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_single_quotes_multiple_repeat1, + [96586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4830), 1, + anon_sym_DOLLAR, + ACTIONS(4850), 1, + anon_sym_SQUOTE, + ACTIONS(4848), 2, + sym__template_chars_single_single, + anon_sym_DQUOTE, + STATE(2742), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_single_quotes_repeat1, + [96609] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 1, + sym__unused_escape_sequence, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4760), 1, + ACTIONS(4852), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4758), 2, + ACTIONS(4793), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2742), 4, + STATE(2723), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [96369] = 6, + [96632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4838), 1, + anon_sym_DOLLAR, + ACTIONS(4854), 1, + anon_sym_DQUOTE, + ACTIONS(4856), 2, + sym__template_chars_double_single, + anon_sym_SQUOTE, + STATE(2741), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_double_quotes_repeat1, + [96655] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 1, + sym__unused_escape_sequence, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4764), 1, + ACTIONS(4858), 1, anon_sym_SQUOTE, - ACTIONS(4762), 2, + ACTIONS(4848), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2714), 4, + STATE(2742), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [96392] = 6, + [96678] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4768), 1, + ACTIONS(4860), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4766), 2, + ACTIONS(4793), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2715), 4, + STATE(2723), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [96415] = 6, + [96701] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 1, + sym__unused_escape_sequence, + ACTIONS(4799), 1, + anon_sym_DOLLAR, + ACTIONS(4862), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4844), 2, + sym__template_chars_single, + anon_sym_DQUOTE, + STATE(2743), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_single_quotes_multiple_repeat1, + [96724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(4866), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4774), 2, + ACTIONS(4864), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2716), 4, + STATE(2772), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [96438] = 6, + [96747] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + sym__unused_escape_sequence, + ACTIONS(4838), 1, + anon_sym_DOLLAR, + ACTIONS(4868), 1, + anon_sym_DQUOTE, + ACTIONS(4856), 2, + sym__template_chars_double_single, + anon_sym_SQUOTE, + STATE(2741), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_double_quotes_repeat1, + [96770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4780), 1, + ACTIONS(4870), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4778), 2, + ACTIONS(4844), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2741), 4, + STATE(2743), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [96461] = 6, + [96793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4784), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4782), 2, - sym__template_chars_single, + ACTIONS(4872), 1, anon_sym_DQUOTE, - STATE(2745), 4, + ACTIONS(4874), 2, + sym__template_chars_double_single, + anon_sym_SQUOTE, + STATE(2777), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_multiple_repeat1, - [96484] = 6, + aux_sym__string_literal_double_quotes_repeat1, + [96816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4788), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4786), 2, - sym__template_chars_double, + ACTIONS(4878), 1, anon_sym_SQUOTE, - STATE(2725), 4, + ACTIONS(4876), 2, + sym__template_chars_single_single, + anon_sym_DQUOTE, + STATE(2762), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_multiple_repeat1, - [96507] = 6, + aux_sym__string_literal_single_quotes_repeat1, + [96839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4792), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4790), 2, - sym__template_chars_single, + ACTIONS(4882), 1, + anon_sym_SQUOTE, + ACTIONS(4880), 2, + sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2740), 4, + STATE(2730), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_multiple_repeat1, - [96530] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4796), 1, - anon_sym_COLON, - ACTIONS(4798), 1, - anon_sym_async, - ACTIONS(4800), 1, - anon_sym_SEMI, - STATE(2927), 1, - sym_initializers, - STATE(3615), 1, - sym_redirection, - ACTIONS(4794), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [96555] = 6, + aux_sym__string_literal_single_quotes_repeat1, + [96862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4802), 1, + ACTIONS(4884), 1, anon_sym_DQUOTE, - ACTIONS(4804), 2, + ACTIONS(4886), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2748), 4, + STATE(2729), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [96578] = 8, + [96885] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(4427), 1, anon_sym_LT, - ACTIONS(4379), 1, + ACTIONS(4455), 1, anon_sym_LPAREN, - ACTIONS(4808), 1, + ACTIONS(4890), 1, anon_sym_EQ, - STATE(2553), 1, + STATE(2625), 1, sym__strict_formal_parameter_list, - STATE(3220), 1, + STATE(3289), 1, sym_type_parameters, - ACTIONS(4806), 2, + ACTIONS(4888), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(2897), 2, + STATE(2968), 2, sym__formal_parameter_part, sym_formal_parameter_list, - [96605] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4812), 1, - anon_sym_if, - ACTIONS(4814), 1, - anon_sym_deferred, - STATE(3403), 1, - sym__deferred, - STATE(2849), 2, - sym_configuration_uri, - aux_sym_configurable_uri_repeat1, - ACTIONS(4810), 4, - anon_sym_as, - anon_sym_show, - anon_sym_hide, - anon_sym_SEMI, - [96628] = 6, + [96912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4892), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4895), 1, anon_sym_DOLLAR, - ACTIONS(4816), 1, + ACTIONS(4898), 1, anon_sym_DQUOTE, - ACTIONS(4818), 2, + ACTIONS(4900), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2707), 4, + STATE(2741), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [96651] = 6, + [96935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4903), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4906), 1, anon_sym_DOLLAR, - ACTIONS(4822), 1, + ACTIONS(4912), 1, anon_sym_SQUOTE, - ACTIONS(4820), 2, + ACTIONS(4909), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2708), 4, + STATE(2742), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [96674] = 6, + [96958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4914), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4917), 1, anon_sym_DOLLAR, - ACTIONS(4826), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4824), 2, - sym__template_chars_double, - anon_sym_SQUOTE, - STATE(2709), 4, + ACTIONS(4923), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4920), 2, + sym__template_chars_single, + anon_sym_DQUOTE, + STATE(2743), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_multiple_repeat1, - [96697] = 6, + aux_sym__string_literal_single_quotes_multiple_repeat1, + [96981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(1349), 1, + anon_sym_LT, + ACTIONS(4455), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2839), 1, + sym_formal_parameter_list, + ACTIONS(1351), 5, + anon_sym_Function, + anon_sym_get, + anon_sym_operator, + anon_sym_set, + sym_identifier, + [97004] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4830), 1, + ACTIONS(4925), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4828), 2, + ACTIONS(4844), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2710), 4, + STATE(2743), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [96720] = 6, + [97027] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4832), 1, + ACTIONS(4927), 1, + anon_sym_SQUOTE, + ACTIONS(4848), 2, + sym__template_chars_single_single, anon_sym_DQUOTE, - ACTIONS(4834), 2, - sym__template_chars_double_single, + STATE(2742), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_single_quotes_repeat1, + [97050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 1, + sym__unused_escape_sequence, + ACTIONS(4791), 1, + anon_sym_DOLLAR, + ACTIONS(4929), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4793), 2, + sym__template_chars_double, anon_sym_SQUOTE, - STATE(2719), 4, + STATE(2723), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_repeat1, - [96743] = 6, + aux_sym__string_literal_double_quotes_multiple_repeat1, + [97073] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(532), 1, + anon_sym_SEMI, + ACTIONS(4931), 1, + anon_sym_LBRACE, + ACTIONS(4933), 1, + anon_sym_async, + ACTIONS(4935), 1, + anon_sym_EQ_GT, + STATE(1048), 1, + sym_block, + ACTIONS(4937), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + STATE(1161), 2, + sym_function_body, + sym__semicolon, + [97100] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4941), 1, + anon_sym_COLON, + ACTIONS(4943), 1, + anon_sym_async, + ACTIONS(4945), 1, + anon_sym_SEMI, + STATE(2949), 1, + sym_initializers, + STATE(3693), 1, + sym_redirection, + ACTIONS(4939), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [97125] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4836), 2, - sym__template_chars_single, + ACTIONS(4947), 1, + anon_sym_SQUOTE, + ACTIONS(4848), 2, + sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2676), 4, + STATE(2742), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_multiple_repeat1, - [96766] = 6, + aux_sym__string_literal_single_quotes_repeat1, + [97148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4842), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4840), 2, - sym__template_chars_double, + ACTIONS(4949), 1, + anon_sym_DQUOTE, + ACTIONS(4856), 2, + sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2724), 4, + STATE(2741), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_multiple_repeat1, - [96789] = 6, + aux_sym__string_literal_double_quotes_repeat1, + [97171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4846), 1, + ACTIONS(4951), 1, anon_sym_SQUOTE, - ACTIONS(4844), 2, + ACTIONS(4848), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2726), 4, + STATE(2742), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [96812] = 6, + [97194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(4953), 1, anon_sym_DQUOTE, - ACTIONS(4850), 2, + ACTIONS(4856), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2728), 4, + STATE(2741), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [96835] = 6, + [97217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4854), 1, + ACTIONS(4955), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4793), 2, + sym__template_chars_double, anon_sym_SQUOTE, - ACTIONS(4852), 2, - sym__template_chars_single_single, - anon_sym_DQUOTE, - STATE(2720), 4, + STATE(2723), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_repeat1, - [96858] = 6, + aux_sym__string_literal_double_quotes_multiple_repeat1, + [97240] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, + ACTIONS(4959), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4856), 2, + ACTIONS(4957), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2721), 4, + STATE(2731), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [96881] = 6, + [97263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4860), 1, + ACTIONS(4961), 1, anon_sym_DQUOTE, - ACTIONS(4850), 2, + ACTIONS(4963), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2728), 4, + STATE(2760), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [96904] = 6, + [97286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4864), 1, + ACTIONS(4967), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4862), 2, + ACTIONS(4965), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2723), 4, + STATE(2785), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [96927] = 6, + [97309] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4971), 1, + anon_sym_if, + ACTIONS(4973), 1, + anon_sym_deferred, + STATE(3431), 1, + sym__deferred, + STATE(2844), 2, + sym_configuration_uri, + aux_sym_configurable_uri_repeat1, + ACTIONS(4969), 4, + anon_sym_as, + anon_sym_show, + anon_sym_hide, + anon_sym_SEMI, + [97332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, - anon_sym_DQUOTE, - ACTIONS(4850), 2, - sym__template_chars_double_single, + ACTIONS(4977), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4975), 2, + sym__template_chars_double, anon_sym_SQUOTE, STATE(2728), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_repeat1, - [96950] = 6, + aux_sym__string_literal_double_quotes_multiple_repeat1, + [97355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4870), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4868), 2, - sym__template_chars_single, + ACTIONS(4979), 1, anon_sym_DQUOTE, - STATE(2697), 4, + ACTIONS(4856), 2, + sym__template_chars_double_single, + anon_sym_SQUOTE, + STATE(2741), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_multiple_repeat1, - [96973] = 6, + aux_sym__string_literal_double_quotes_repeat1, + [97378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4872), 1, + ACTIONS(4981), 1, anon_sym_DQUOTE, - ACTIONS(4850), 2, + ACTIONS(4856), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2728), 4, + STATE(2741), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [96996] = 6, + [97401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4874), 1, + ACTIONS(4983), 1, anon_sym_SQUOTE, - ACTIONS(4844), 2, + ACTIONS(4848), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2726), 4, + STATE(2742), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [97019] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4754), 1, - sym__unused_escape_sequence, - ACTIONS(4756), 1, - anon_sym_DOLLAR, - ACTIONS(4876), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4840), 2, - sym__template_chars_double, - anon_sym_SQUOTE, - STATE(2724), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_double_quotes_multiple_repeat1, - [97042] = 6, + [97424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4878), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4836), 2, + ACTIONS(4985), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2676), 4, + STATE(2745), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [97065] = 6, + [97447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4882), 1, + ACTIONS(4991), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4880), 2, + ACTIONS(4989), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2698), 4, + STATE(2747), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [97088] = 6, + [97470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4886), 1, + ACTIONS(4995), 1, anon_sym_SQUOTE, - ACTIONS(4884), 2, + ACTIONS(4993), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2699), 4, + STATE(2750), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [97111] = 6, + [97493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4888), 1, + ACTIONS(4997), 1, anon_sym_DQUOTE, - ACTIONS(4890), 2, + ACTIONS(4999), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2700), 4, + STATE(2753), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [97134] = 6, + [97516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4892), 1, + ACTIONS(5003), 1, anon_sym_SQUOTE, - ACTIONS(4844), 2, + ACTIONS(5001), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2726), 4, + STATE(2727), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [97157] = 6, + [97539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4894), 1, + ACTIONS(5005), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4840), 2, + ACTIONS(4793), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2724), 4, + STATE(2723), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [97180] = 6, + [97562] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, - sym__unused_escape_sequence, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4896), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4836), 2, - sym__template_chars_single, - anon_sym_DQUOTE, - STATE(2676), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_single_quotes_multiple_repeat1, - [97203] = 10, + ACTIONS(532), 1, + anon_sym_SEMI, + ACTIONS(4931), 1, + anon_sym_LBRACE, + ACTIONS(4933), 1, + anon_sym_async, + ACTIONS(4935), 1, + anon_sym_EQ_GT, + STATE(1048), 1, + sym_block, + STATE(1161), 1, + sym__semicolon, + STATE(1168), 1, + sym_function_body, + ACTIONS(4937), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [97591] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, + ACTIONS(5007), 1, sym_identifier, - ACTIONS(4900), 1, + ACTIONS(5009), 1, anon_sym_get, - ACTIONS(4902), 1, + ACTIONS(5011), 1, anon_sym_operator, - ACTIONS(4904), 1, + ACTIONS(5013), 1, anon_sym_set, - STATE(2369), 1, + STATE(2396), 1, sym__operator, - STATE(3096), 1, + STATE(3173), 1, sym_initialized_identifier, - STATE(3615), 1, + STATE(3693), 1, sym_initialized_identifier_list, - STATE(3687), 1, + STATE(3787), 1, sym__set, - STATE(3688), 1, + STATE(3788), 1, sym__get, - [97234] = 6, + [97622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4906), 1, - anon_sym_SQUOTE, + ACTIONS(5015), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(4844), 2, - sym__template_chars_single_single, - anon_sym_DQUOTE, - STATE(2726), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_single_quotes_repeat1, - [97257] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4738), 1, - sym__unused_escape_sequence, - ACTIONS(4740), 1, - anon_sym_DOLLAR, - ACTIONS(4908), 1, + sym__template_chars_single, anon_sym_DQUOTE, - ACTIONS(4850), 2, - sym__template_chars_double_single, - anon_sym_SQUOTE, - STATE(2728), 4, + STATE(2743), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_repeat1, - [97280] = 6, + aux_sym__string_literal_single_quotes_multiple_repeat1, + [97645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4910), 1, - anon_sym_SQUOTE, + ACTIONS(5017), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(4844), 2, - sym__template_chars_single_single, + sym__template_chars_single, anon_sym_DQUOTE, - STATE(2726), 4, + STATE(2743), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_repeat1, - [97303] = 6, + aux_sym__string_literal_single_quotes_multiple_repeat1, + [97668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5019), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4840), 2, + ACTIONS(4793), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2724), 4, + STATE(2723), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [97326] = 6, + [97691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, - anon_sym_SQUOTE, - ACTIONS(4914), 2, - sym__template_chars_single_single, + ACTIONS(5021), 1, anon_sym_DQUOTE, - STATE(2718), 4, + ACTIONS(5023), 2, + sym__template_chars_double_single, + anon_sym_SQUOTE, + STATE(2761), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_repeat1, - [97349] = 6, + aux_sym__string_literal_double_quotes_repeat1, + [97714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(5025), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4836), 2, + ACTIONS(4844), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2676), 4, + STATE(2743), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [97372] = 6, + [97737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4923), 1, - anon_sym_DOLLAR, - ACTIONS(4929), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4926), 2, - sym__template_chars_double, - anon_sym_SQUOTE, - STATE(2724), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_double_quotes_multiple_repeat1, - [97395] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4754), 1, - sym__unused_escape_sequence, - ACTIONS(4756), 1, - anon_sym_DOLLAR, - ACTIONS(4931), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4840), 2, - sym__template_chars_double, - anon_sym_SQUOTE, - STATE(2724), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_double_quotes_multiple_repeat1, - [97418] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 1, - sym__unused_escape_sequence, - ACTIONS(4936), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4942), 1, + ACTIONS(5027), 1, anon_sym_SQUOTE, - ACTIONS(4939), 2, + ACTIONS(4848), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2726), 4, + STATE(2742), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [97441] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - anon_sym_async, - ACTIONS(4948), 1, - anon_sym_EQ_GT, - STATE(1000), 1, - sym_block, - STATE(1110), 1, - sym_function_body, - STATE(1113), 1, - sym__semicolon, - ACTIONS(4950), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [97470] = 6, + [97760] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4955), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4958), 1, + ACTIONS(5029), 1, anon_sym_DQUOTE, - ACTIONS(4960), 2, + ACTIONS(4856), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2728), 4, + STATE(2741), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [97493] = 6, + [97783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4965), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4963), 2, + ACTIONS(5031), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2746), 4, + STATE(2768), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [97516] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4738), 1, - sym__unused_escape_sequence, - ACTIONS(4740), 1, - anon_sym_DOLLAR, - ACTIONS(4967), 1, - anon_sym_DQUOTE, - ACTIONS(4969), 2, - sym__template_chars_double_single, - anon_sym_SQUOTE, - STATE(2736), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_double_quotes_repeat1, - [97539] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4719), 1, - sym__unused_escape_sequence, - ACTIONS(4721), 1, - anon_sym_DOLLAR, - ACTIONS(4973), 1, - anon_sym_SQUOTE, - ACTIONS(4971), 2, - sym__template_chars_single_single, - anon_sym_DQUOTE, - STATE(2737), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_single_quotes_repeat1, - [97562] = 6, + [97806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4977), 1, + ACTIONS(5037), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4975), 2, + ACTIONS(5035), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2738), 4, + STATE(2718), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [97585] = 6, + [97829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4981), 1, + ACTIONS(5041), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4979), 2, + ACTIONS(5039), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2739), 4, + STATE(2771), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [97608] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - anon_sym_async, - ACTIONS(4948), 1, - anon_sym_EQ_GT, - STATE(1000), 1, - sym_block, - ACTIONS(4950), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - STATE(1113), 2, - sym_function_body, - sym__semicolon, - [97635] = 8, + [97852] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 1, + ACTIONS(5043), 1, anon_sym_on, - ACTIONS(4985), 1, + ACTIONS(5045), 1, anon_sym_catch, - ACTIONS(4987), 1, + ACTIONS(5047), 1, anon_sym_finally, - STATE(1218), 1, + STATE(1228), 1, sym_finally_clause, - STATE(3501), 1, + STATE(3387), 1, sym_catch_clause, - ACTIONS(2456), 2, + ACTIONS(2506), 2, anon_sym_while, anon_sym_else, - STATE(2768), 2, + STATE(2794), 2, sym__on_part, aux_sym_try_statement_repeat1, - [97662] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4738), 1, - sym__unused_escape_sequence, - ACTIONS(4740), 1, - anon_sym_DOLLAR, - ACTIONS(4989), 1, - anon_sym_DQUOTE, - ACTIONS(4850), 2, - sym__template_chars_double_single, - anon_sym_SQUOTE, - STATE(2728), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_double_quotes_repeat1, - [97685] = 6, + [97879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(4991), 1, + ACTIONS(5051), 1, anon_sym_SQUOTE, - ACTIONS(4844), 2, + ACTIONS(5049), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2726), 4, + STATE(2746), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [97708] = 6, + [97902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(4993), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4840), 2, - sym__template_chars_double, + ACTIONS(5053), 1, + anon_sym_DQUOTE, + ACTIONS(5055), 2, + sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2724), 4, + STATE(2790), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_multiple_repeat1, - [97731] = 6, + aux_sym__string_literal_double_quotes_repeat1, + [97925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4995), 1, + ACTIONS(5059), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4836), 2, + ACTIONS(5057), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2676), 4, + STATE(2726), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [97754] = 6, + [97948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4797), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4799), 1, anon_sym_DOLLAR, - ACTIONS(4997), 1, + ACTIONS(5061), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4836), 2, + ACTIONS(4844), 2, sym__template_chars_single, anon_sym_DQUOTE, - STATE(2676), 4, + STATE(2743), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_multiple_repeat1, - [97777] = 6, + [97971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(4999), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4836), 2, - sym__template_chars_single, - anon_sym_DQUOTE, - STATE(2676), 4, + ACTIONS(5065), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5063), 2, + sym__template_chars_double, + anon_sym_SQUOTE, + STATE(2773), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_single_quotes_multiple_repeat1, - [97800] = 6, + aux_sym__string_literal_double_quotes_multiple_repeat1, + [97994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4756), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(5001), 1, + ACTIONS(5067), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4840), 2, + ACTIONS(4793), 2, sym__template_chars_double, anon_sym_SQUOTE, - STATE(2724), 4, + STATE(2723), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_multiple_repeat1, - [97823] = 6, + [98017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(5003), 1, + ACTIONS(5069), 1, anon_sym_SQUOTE, - ACTIONS(4844), 2, + ACTIONS(4848), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2726), 4, + STATE(2742), 4, + sym_escape_sequence, + sym_template_substitution, + sym__sub_string_test, + aux_sym__string_literal_single_quotes_repeat1, + [98040] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 1, + sym__unused_escape_sequence, + ACTIONS(4830), 1, + anon_sym_DOLLAR, + ACTIONS(5073), 1, + anon_sym_SQUOTE, + ACTIONS(5071), 2, + sym__template_chars_single_single, + anon_sym_DQUOTE, + STATE(2776), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [97846] = 6, + [98063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(5005), 1, + ACTIONS(5075), 1, anon_sym_DQUOTE, - ACTIONS(4850), 2, + ACTIONS(4856), 2, sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2728), 4, + STATE(2741), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_double_quotes_repeat1, - [97869] = 6, + [98086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4836), 1, sym__unused_escape_sequence, - ACTIONS(4772), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR, - ACTIONS(5007), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4836), 2, - sym__template_chars_single, + ACTIONS(5077), 1, anon_sym_DQUOTE, - STATE(2676), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_single_quotes_multiple_repeat1, - [97892] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4754), 1, - sym__unused_escape_sequence, - ACTIONS(4756), 1, - anon_sym_DOLLAR, - ACTIONS(5009), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4840), 2, - sym__template_chars_double, + ACTIONS(5079), 2, + sym__template_chars_double_single, anon_sym_SQUOTE, - STATE(2724), 4, + STATE(2734), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_multiple_repeat1, - [97915] = 6, + aux_sym__string_literal_double_quotes_repeat1, + [98109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4719), 1, + ACTIONS(4828), 1, sym__unused_escape_sequence, - ACTIONS(4721), 1, + ACTIONS(4830), 1, anon_sym_DOLLAR, - ACTIONS(5011), 1, + ACTIONS(5083), 1, anon_sym_SQUOTE, - ACTIONS(4844), 2, + ACTIONS(5081), 2, sym__template_chars_single_single, anon_sym_DQUOTE, - STATE(2726), 4, + STATE(2788), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, aux_sym__string_literal_single_quotes_repeat1, - [97938] = 6, + [98132] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4789), 1, sym__unused_escape_sequence, - ACTIONS(4740), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR, - ACTIONS(5013), 1, - anon_sym_DQUOTE, - ACTIONS(4850), 2, - sym__template_chars_double_single, + ACTIONS(5087), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5085), 2, + sym__template_chars_double, anon_sym_SQUOTE, - STATE(2728), 4, + STATE(2787), 4, sym_escape_sequence, sym_template_substitution, sym__sub_string_test, - aux_sym__string_literal_double_quotes_repeat1, - [97961] = 6, + aux_sym__string_literal_double_quotes_multiple_repeat1, + [98155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1134), 1, - anon_sym_LT, - ACTIONS(4379), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2851), 1, - sym_formal_parameter_list, - ACTIONS(1136), 5, - anon_sym_Function, - anon_sym_get, - anon_sym_operator, - anon_sym_set, - sym_identifier, - [97984] = 6, + ACTIONS(5089), 1, + anon_sym_on, + ACTIONS(5092), 1, + anon_sym_catch, + STATE(3387), 1, + sym_catch_clause, + STATE(2794), 2, + sym__on_part, + aux_sym_try_statement_repeat1, + ACTIONS(2588), 3, + anon_sym_while, + anon_sym_finally, + anon_sym_else, + [98177] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, - sym__unused_escape_sequence, - ACTIONS(4740), 1, - anon_sym_DOLLAR, - ACTIONS(5015), 1, - anon_sym_DQUOTE, - ACTIONS(5017), 2, - sym__template_chars_double_single, - anon_sym_SQUOTE, - STATE(2703), 4, - sym_escape_sequence, - sym_template_substitution, - sym__sub_string_test, - aux_sym__string_literal_double_quotes_repeat1, - [98007] = 2, + ACTIONS(4457), 1, + anon_sym_DOT, + ACTIONS(5098), 1, + anon_sym_extends, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(3478), 1, + sym_type_bound, + ACTIONS(1111), 2, + anon_sym_LT, + anon_sym_Function, + ACTIONS(5095), 2, + anon_sym_COMMA, + anon_sym_GT, + [98201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 8, - anon_sym_RBRACE, + ACTIONS(5102), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, + ACTIONS(5105), 1, + anon_sym_async, + STATE(2796), 1, + aux_sym_initializers_repeat1, + ACTIONS(5100), 5, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [98021] = 2, + [98221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 8, - anon_sym_RBRACE, + ACTIONS(5109), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, + ACTIONS(5111), 1, + anon_sym_async, + STATE(2796), 1, + aux_sym_initializers_repeat1, + ACTIONS(5107), 5, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, anon_sym_SEMI, - [98035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(2912), 1, - sym_type_arguments, - ACTIONS(985), 5, - anon_sym_Function, - anon_sym_get, - anon_sym_set, - anon_sym_this, - sym_identifier, - [98055] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_assert, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(5023), 1, - sym_identifier, - ACTIONS(5025), 1, - anon_sym_super, - STATE(3253), 1, - sym_initializer_list_entry, - STATE(3281), 1, - sym_this, - STATE(2794), 2, - sym_assertion, - sym_field_initializer, - [98081] = 6, + [98241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(4602), 1, anon_sym_Function, - STATE(3072), 1, + STATE(3108), 1, sym__function_builtin_identifier, - ACTIONS(972), 2, + ACTIONS(1037), 2, anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(4604), 2, + ACTIONS(4598), 2, anon_sym_this, sym_identifier, - STATE(1613), 2, + STATE(2441), 2, aux_sym__function_type_tails, sym__function_type_tail, - [98103] = 5, + [98263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5029), 1, - anon_sym_COMMA, - ACTIONS(5032), 1, - anon_sym_async, - STATE(2756), 1, - aux_sym_initializers_repeat1, - ACTIONS(5027), 5, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [98123] = 6, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(2972), 1, + sym_type_arguments, + ACTIONS(1059), 5, + anon_sym_Function, + anon_sym_get, + anon_sym_set, + anon_sym_this, + sym_identifier, + [98283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(4602), 1, anon_sym_Function, - STATE(3072), 1, + STATE(3108), 1, sym__function_builtin_identifier, - ACTIONS(966), 2, + ACTIONS(1043), 2, anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(4568), 2, + ACTIONS(4608), 2, anon_sym_this, sym_identifier, - STATE(1613), 2, + STATE(2441), 2, aux_sym__function_type_tails, sym__function_type_tail, - [98145] = 8, + [98305] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_assert, ACTIONS(109), 1, anon_sym_this, - ACTIONS(5023), 1, + ACTIONS(5113), 1, sym_identifier, - ACTIONS(5025), 1, + ACTIONS(5115), 1, anon_sym_super, - STATE(2874), 1, + STATE(3124), 1, sym_initializer_list_entry, - STATE(3775), 1, + STATE(3277), 1, sym_this, - STATE(2794), 2, + STATE(2919), 2, sym_assertion, sym_field_initializer, - [98171] = 8, + [98331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(5109), 1, + anon_sym_COMMA, + ACTIONS(5119), 1, anon_sym_async, - ACTIONS(4948), 1, + STATE(2797), 1, + aux_sym_initializers_repeat1, + ACTIONS(5117), 5, + anon_sym_LBRACE, anon_sym_EQ_GT, - ACTIONS(5034), 1, - anon_sym_SEMI, - STATE(1000), 1, - sym_block, - STATE(1105), 1, - sym_function_body, - ACTIONS(4950), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [98197] = 2, + anon_sym_SEMI, + [98351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 8, + ACTIONS(5121), 8, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, @@ -184193,11682 +189038,11836 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_in, anon_sym_SEMI, - [98211] = 7, + [98365] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - ACTIONS(5038), 1, + ACTIONS(5123), 1, anon_sym_as, - STATE(1048), 1, + STATE(1095), 1, sym__semicolon, - STATE(3694), 1, + STATE(3797), 1, sym__as, - ACTIONS(5040), 2, + ACTIONS(5125), 2, anon_sym_show, anon_sym_hide, - STATE(2920), 2, + STATE(2941), 2, sym_combinator, aux_sym_library_export_repeat1, - [98235] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(5042), 1, - sym_identifier, - ACTIONS(5044), 1, - anon_sym_assert, - ACTIONS(5046), 1, - anon_sym_super, - STATE(2767), 1, - sym_initializer_list_entry, - STATE(3163), 1, - sym_this, - STATE(2794), 2, - sym_assertion, - sym_field_initializer, - [98261] = 8, + [98389] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(4931), 1, anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(4933), 1, anon_sym_async, - ACTIONS(4948), 1, + ACTIONS(4935), 1, anon_sym_EQ_GT, - ACTIONS(5048), 1, + ACTIONS(5127), 1, anon_sym_SEMI, - STATE(1000), 1, + STATE(1048), 1, sym_block, - STATE(1169), 1, + STATE(1180), 1, sym_function_body, - ACTIONS(4950), 2, + ACTIONS(4937), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [98287] = 8, + [98415] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_assert, ACTIONS(109), 1, anon_sym_this, - ACTIONS(5042), 1, + ACTIONS(5113), 1, sym_identifier, - ACTIONS(5044), 1, - anon_sym_assert, - ACTIONS(5046), 1, + ACTIONS(5115), 1, anon_sym_super, - STATE(2874), 1, + STATE(2814), 1, sym_initializer_list_entry, - STATE(3559), 1, + STATE(3833), 1, sym_this, - STATE(2794), 2, + STATE(2919), 2, sym_assertion, sym_field_initializer, - [98313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5052), 1, - anon_sym_COMMA, - ACTIONS(5054), 1, - anon_sym_async, - STATE(2756), 1, - aux_sym_initializers_repeat1, - ACTIONS(5050), 5, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [98333] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(4524), 1, - anon_sym_DOT, - STATE(2453), 1, - sym__type_dot_identifier, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3554), 1, - sym_formal_parameter_list, - ACTIONS(1058), 3, - anon_sym_LT, - anon_sym_Function, - anon_sym_operator, - [98357] = 5, + [98441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 1, + ACTIONS(5129), 8, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5058), 1, - anon_sym_async, - STATE(2765), 1, - aux_sym_initializers_repeat1, - ACTIONS(5056), 5, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, anon_sym_SEMI, - [98377] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5060), 1, - anon_sym_on, - ACTIONS(5063), 1, - anon_sym_catch, - STATE(3501), 1, - sym_catch_clause, - STATE(2768), 2, - sym__on_part, - aux_sym_try_statement_repeat1, - ACTIONS(2502), 3, - anon_sym_while, - anon_sym_finally, - anon_sym_else, - [98399] = 7, + [98455] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1058), 1, + ACTIONS(1111), 1, anon_sym_LT, - ACTIONS(4381), 1, + ACTIONS(4457), 1, anon_sym_DOT, - ACTIONS(4808), 1, + ACTIONS(4890), 1, anon_sym_EQ, - STATE(2453), 1, + STATE(2490), 1, sym__type_dot_identifier, - ACTIONS(1060), 2, + ACTIONS(1113), 2, anon_sym_Function, sym_identifier, - ACTIONS(4806), 2, + ACTIONS(4888), 2, anon_sym_COMMA, anon_sym_SEMI, - [98423] = 5, + [98479] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_DOLLAR, - ACTIONS(5070), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5066), 3, - sym__template_chars_double, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [98442] = 5, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(4606), 1, + anon_sym_DOT, + STATE(2490), 1, + sym__type_dot_identifier, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3666), 1, + sym_formal_parameter_list, + ACTIONS(1111), 3, + anon_sym_LT, + anon_sym_Function, + anon_sym_operator, + [98503] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_DASH, - ACTIONS(5076), 1, + ACTIONS(109), 1, + anon_sym_this, + ACTIONS(5131), 1, + sym_identifier, + ACTIONS(5133), 1, + anon_sym_assert, + ACTIONS(5135), 1, anon_sym_super, - STATE(2109), 1, - sym_super, - ACTIONS(5074), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [98461] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5081), 1, - anon_sym_DOLLAR, - ACTIONS(5084), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5078), 3, - sym__template_chars_double, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [98480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5089), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5086), 3, - sym__template_chars_single, - sym__unused_escape_sequence, - anon_sym_DQUOTE, - [98499] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5096), 1, - anon_sym_DOLLAR, - ACTIONS(5098), 1, - anon_sym_DQUOTE, - STATE(2816), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5094), 3, - sym__template_chars_double_single, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [98518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5102), 1, - anon_sym_DOLLAR, - ACTIONS(5104), 1, - anon_sym_SQUOTE, - STATE(2819), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5100), 3, - sym__template_chars_single_single, - sym__unused_escape_sequence, - anon_sym_DQUOTE, - [98537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - anon_sym_DOLLAR, - ACTIONS(5106), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5066), 3, - sym__template_chars_double, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [98556] = 5, + STATE(2814), 1, + sym_initializer_list_entry, + STATE(3763), 1, + sym_this, + STATE(2919), 2, + sym_assertion, + sym_field_initializer, + [98529] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, - anon_sym_DOLLAR, - ACTIONS(5112), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5108), 3, - sym__template_chars_single, - sym__unused_escape_sequence, - anon_sym_DQUOTE, - [98575] = 5, + ACTIONS(109), 1, + anon_sym_this, + ACTIONS(5131), 1, + sym_identifier, + ACTIONS(5133), 1, + anon_sym_assert, + ACTIONS(5135), 1, + anon_sym_super, + STATE(2802), 1, + sym_initializer_list_entry, + STATE(3155), 1, + sym_this, + STATE(2919), 2, + sym_assertion, + sym_field_initializer, + [98555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_DASH, - ACTIONS(5114), 1, - anon_sym_super, - STATE(887), 1, - sym_super, - ACTIONS(5074), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [98594] = 7, + ACTIONS(5137), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_SEMI, + [98569] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(4931), 1, anon_sym_LBRACE, - ACTIONS(5118), 1, + ACTIONS(4933), 1, anon_sym_async, - ACTIONS(5120), 1, + ACTIONS(4935), 1, anon_sym_EQ_GT, - STATE(1400), 1, + ACTIONS(5139), 1, + anon_sym_SEMI, + STATE(1048), 1, sym_block, - STATE(1452), 1, - sym_function_expression_body, - ACTIONS(5122), 2, + STATE(1144), 1, + sym_function_body, + ACTIONS(4937), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [98617] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5110), 1, - anon_sym_DOLLAR, - ACTIONS(5124), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5108), 3, - sym__template_chars_single, - sym__unused_escape_sequence, - anon_sym_DQUOTE, - [98636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - anon_sym_DOLLAR, - ACTIONS(5126), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5066), 3, - sym__template_chars_double, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [98655] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5102), 1, - anon_sym_DOLLAR, - ACTIONS(5128), 1, - anon_sym_SQUOTE, - STATE(2819), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5100), 3, - sym__template_chars_single_single, - sym__unused_escape_sequence, - anon_sym_DQUOTE, - [98674] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5096), 1, - anon_sym_DOLLAR, - ACTIONS(5130), 1, - anon_sym_DQUOTE, - STATE(2816), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5094), 3, - sym__template_chars_double_single, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [98693] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5110), 1, - anon_sym_DOLLAR, - ACTIONS(5132), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5108), 3, - sym__template_chars_single, - sym__unused_escape_sequence, - anon_sym_DQUOTE, - [98712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_DOT, - anon_sym_QMARK_DOT, - sym_identifier, - [98725] = 5, + [98595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, - anon_sym_DOLLAR, - ACTIONS(5136), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2846), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5134), 3, - sym__template_chars_single, - sym__unused_escape_sequence, - anon_sym_DQUOTE, - [98744] = 5, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5100), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [98610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5140), 1, + ACTIONS(5145), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2845), 2, + STATE(2905), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5138), 3, + ACTIONS(5141), 3, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [98763] = 5, + [98629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5144), 1, + ACTIONS(5151), 1, anon_sym_SQUOTE, - STATE(2834), 2, + STATE(2901), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5142), 3, + ACTIONS(5147), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [98782] = 5, + [98648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5156), 1, anon_sym_DOLLAR, - ACTIONS(5148), 1, + ACTIONS(5159), 1, anon_sym_DQUOTE, - STATE(2832), 2, + STATE(2817), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5146), 3, - sym__template_chars_double_single, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [98801] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(5150), 1, - sym_identifier, - STATE(3412), 1, - sym_type_parameter, - STATE(2901), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - [98820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1260), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_DOT, - anon_sym_QMARK_DOT, - sym_identifier, - [98833] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - anon_sym_DOLLAR, - ACTIONS(5152), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5066), 3, - sym__template_chars_double, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [98852] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5154), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_async, - ACTIONS(5158), 1, - anon_sym_EQ_GT, - STATE(1843), 1, - sym_function_expression_body, - STATE(1845), 1, - sym_block, - ACTIONS(5160), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [98875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_async, - ACTIONS(5162), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [98890] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - anon_sym_async, - ACTIONS(4948), 1, - anon_sym_EQ_GT, - STATE(1000), 1, - sym_block, - STATE(2520), 1, - sym_function_body, - ACTIONS(4950), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [98913] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5072), 1, - anon_sym_DASH, - ACTIONS(5166), 1, - anon_sym_super, - STATE(766), 1, - sym_super, - ACTIONS(5074), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [98932] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5072), 1, - anon_sym_DASH, - ACTIONS(5168), 1, - anon_sym_super, - STATE(225), 1, - sym_super, - ACTIONS(5074), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [98951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_DOT, - anon_sym_QMARK_DOT, - sym_identifier, - [98964] = 5, + ACTIONS(5153), 3, + sym__template_chars_double_single, + sym__unused_escape_sequence, + anon_sym_SQUOTE, + [98667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(5161), 1, anon_sym_DASH, - ACTIONS(5170), 1, + ACTIONS(5165), 1, anon_sym_super, - STATE(2139), 1, + STATE(839), 1, sym_super, - ACTIONS(5074), 4, + ACTIONS(5163), 4, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_await, - [98983] = 5, + [98686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, - anon_sym_SQUOTE, - STATE(2819), 2, + ACTIONS(5171), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2878), 2, sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5100), 3, - sym__template_chars_single_single, + aux_sym__raw_string_literal_single_quotes_multiple_repeat1, + ACTIONS(5167), 3, + sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99002] = 5, + [98705] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(5150), 1, - sym_identifier, - STATE(3179), 1, - sym_type_parameter, - STATE(2901), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - [99021] = 5, + ACTIONS(5173), 1, + anon_sym_LBRACE, + ACTIONS(5175), 1, + anon_sym_async, + ACTIONS(5177), 1, + anon_sym_EQ_GT, + STATE(1391), 1, + sym_block, + STATE(1392), 1, + sym_function_expression_body, + ACTIONS(5179), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [98728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5184), 1, anon_sym_DOLLAR, - ACTIONS(5176), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2780), 2, + ACTIONS(5187), 1, + anon_sym_SQUOTE, + STATE(2821), 2, sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5174), 3, - sym__template_chars_single, + aux_sym__raw_string_literal_single_quotes_repeat1, + ACTIONS(5181), 3, + sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99040] = 5, + [98747] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5189), 1, + anon_sym_super, + STATE(2277), 1, + sym_super, + ACTIONS(5163), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [98766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5180), 1, + ACTIONS(5193), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2781), 2, + STATE(2877), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5178), 3, + ACTIONS(5191), 3, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99059] = 7, + [98785] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5195), 1, anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(5197), 1, anon_sym_async, - ACTIONS(4948), 1, + ACTIONS(5199), 1, anon_sym_EQ_GT, - STATE(1000), 1, + STATE(255), 1, sym_block, - STATE(1198), 1, - sym_function_body, - ACTIONS(4950), 2, + STATE(256), 1, + sym_function_expression_body, + ACTIONS(5201), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [99082] = 5, + [98808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(5205), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2898), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5203), 3, + sym__template_chars_double, + sym__unused_escape_sequence, anon_sym_SQUOTE, - STATE(2782), 2, + [98827] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5210), 1, + anon_sym_DOLLAR, + ACTIONS(5213), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2826), 2, sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5182), 3, - sym__template_chars_single_single, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5207), 3, + sym__template_chars_double, sym__unused_escape_sequence, - anon_sym_DQUOTE, - [99101] = 5, + anon_sym_SQUOTE, + [98846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5218), 1, anon_sym_DOLLAR, - ACTIONS(5186), 1, + ACTIONS(5221), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, + STATE(2827), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5108), 3, + ACTIONS(5215), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99120] = 5, + [98865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_DOLLAR, - ACTIONS(5188), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5066), 3, - sym__template_chars_double, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [99139] = 5, + STATE(2490), 1, + sym__type_dot_identifier, + ACTIONS(1111), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(1113), 3, + anon_sym_Function, + anon_sym_this, + sym_identifier, + [98882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5190), 1, + ACTIONS(5225), 1, anon_sym_SQUOTE, - STATE(2819), 2, + STATE(2872), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5100), 3, + ACTIONS(5223), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99158] = 5, + [98901] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5227), 1, + anon_sym_LBRACE, + ACTIONS(5229), 1, + anon_sym_async, + ACTIONS(5231), 1, + anon_sym_EQ_GT, + STATE(2072), 1, + sym_function_expression_body, + STATE(2075), 1, + sym_block, + ACTIONS(5233), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [98924] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4931), 1, + anon_sym_LBRACE, + ACTIONS(4933), 1, + anon_sym_async, + ACTIONS(4935), 1, + anon_sym_EQ_GT, + STATE(1048), 1, + sym_block, + STATE(2548), 1, + sym_function_body, + ACTIONS(4937), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [98947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5194), 1, + ACTIONS(5239), 1, anon_sym_DQUOTE, - STATE(2783), 2, + STATE(2871), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5192), 3, + ACTIONS(5235), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99177] = 5, + [98966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5241), 1, + anon_sym_super, + STATE(300), 1, + sym_super, + ACTIONS(5163), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [98985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5196), 1, + ACTIONS(5245), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, + STATE(2882), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5108), 3, + ACTIONS(5243), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99196] = 7, + [99004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5247), 1, + anon_sym_super, + STATE(1348), 1, + sym_super, + ACTIONS(5163), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [99023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1341), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_DOT, + anon_sym_QMARK_DOT, + sym_identifier, + [99036] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5200), 1, + ACTIONS(5251), 1, anon_sym_async, - ACTIONS(5202), 1, + ACTIONS(5253), 1, anon_sym_EQ_GT, - STATE(2026), 1, + STATE(1753), 1, sym_block, - STATE(2027), 1, + STATE(1823), 1, sym_function_expression_body, - ACTIONS(5204), 2, + ACTIONS(5255), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [99219] = 5, + [99059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_DASH, - ACTIONS(5206), 1, - anon_sym_super, - STATE(1888), 1, - sym_super, - ACTIONS(5074), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [99238] = 5, + ACTIONS(5259), 1, + anon_sym_async, + ACTIONS(5257), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [99074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, - anon_sym_DOLLAR, - ACTIONS(5208), 1, - anon_sym_DQUOTE, - STATE(2816), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5094), 3, - sym__template_chars_double_single, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [99257] = 7, + ACTIONS(5263), 1, + anon_sym_async, + ACTIONS(5261), 6, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [99089] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 1, - anon_sym_on, - ACTIONS(4985), 1, + ACTIONS(5045), 1, anon_sym_catch, - ACTIONS(4987), 1, + ACTIONS(5265), 1, + anon_sym_on, + ACTIONS(5267), 1, anon_sym_finally, - STATE(1223), 1, + STATE(1231), 1, sym_finally_clause, - STATE(3501), 1, + STATE(3527), 1, sym_catch_clause, - STATE(2735), 2, + STATE(1060), 2, sym__on_part, aux_sym_try_statement_repeat1, - [99280] = 4, + [99112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(5269), 1, + sym_identifier, + STATE(3374), 1, + sym_type_parameter, + STATE(2936), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + [99131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5212), 1, + ACTIONS(1301), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_DOT, + anon_sym_QMARK_DOT, + sym_identifier, + [99144] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5271), 1, + anon_sym_LBRACE, + ACTIONS(5273), 1, + anon_sym_async, + ACTIONS(5275), 1, + anon_sym_EQ_GT, + STATE(2115), 1, + sym_function_expression_body, + STATE(2116), 1, + sym_block, + ACTIONS(5277), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [99167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4971), 1, anon_sym_if, - STATE(2815), 2, + STATE(2875), 2, sym_configuration_uri, aux_sym_configurable_uri_repeat1, - ACTIONS(5210), 4, + ACTIONS(5279), 4, anon_sym_as, anon_sym_show, anon_sym_hide, anon_sym_SEMI, - [99297] = 5, + [99184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5221), 1, + ACTIONS(5283), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2827), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_multiple_repeat1, + ACTIONS(5281), 3, + sym__template_chars_single, + sym__unused_escape_sequence, anon_sym_DQUOTE, - STATE(2816), 2, + [99203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5143), 1, + anon_sym_DOLLAR, + ACTIONS(5287), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2826), 2, sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5215), 3, - sym__template_chars_double_single, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5285), 3, + sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99316] = 7, + [99222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, - anon_sym_LBRACE, - ACTIONS(5225), 1, - anon_sym_async, - ACTIONS(5227), 1, - anon_sym_EQ_GT, - STATE(1306), 1, - sym_function_expression_body, - STATE(1307), 1, - sym_block, - ACTIONS(5229), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [99339] = 3, + ACTIONS(5169), 1, + anon_sym_DOLLAR, + ACTIONS(5289), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2827), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_multiple_repeat1, + ACTIONS(5281), 3, + sym__template_chars_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [99241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_async, - ACTIONS(3005), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [99354] = 5, + ACTIONS(5143), 1, + anon_sym_DOLLAR, + ACTIONS(5291), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2826), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5285), 3, + sym__template_chars_double, + sym__unused_escape_sequence, + anon_sym_SQUOTE, + [99260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5237), 1, + ACTIONS(5295), 1, anon_sym_SQUOTE, - STATE(2819), 2, + STATE(2821), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5231), 3, + ACTIONS(5293), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99373] = 5, + [99279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5241), 1, + ACTIONS(5299), 1, anon_sym_DQUOTE, - STATE(2862), 2, + STATE(2894), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5239), 3, + ACTIONS(5297), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99392] = 5, + [99298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5245), 1, + ACTIONS(5303), 1, anon_sym_SQUOTE, - STATE(2863), 2, + STATE(2895), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5243), 3, + ACTIONS(5301), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99411] = 5, + [99317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5249), 1, + ACTIONS(5307), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2864), 2, + STATE(2896), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5247), 3, + ACTIONS(5305), 3, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99430] = 5, + [99336] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(5311), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2865), 2, + STATE(2897), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5251), 3, + ACTIONS(5309), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_async, - ACTIONS(2903), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [99464] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5198), 1, - anon_sym_LBRACE, - ACTIONS(5255), 1, - anon_sym_async, - ACTIONS(5257), 1, - anon_sym_EQ_GT, - STATE(2026), 1, - sym_block, - STATE(2027), 1, - sym_function_expression_body, - ACTIONS(5204), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [99487] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2453), 1, - sym__type_dot_identifier, - ACTIONS(1058), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(1060), 3, - anon_sym_Function, - anon_sym_this, - sym_identifier, - [99504] = 5, + [99355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5259), 1, + ACTIONS(5313), 1, anon_sym_SQUOTE, - STATE(2819), 2, + STATE(2821), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5100), 3, + ACTIONS(5293), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2829), 1, - anon_sym_async, - ACTIONS(2827), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [99538] = 5, + [99374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5261), 1, + ACTIONS(5317), 1, anon_sym_DQUOTE, - STATE(2816), 2, + STATE(2817), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5094), 3, + ACTIONS(5315), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99557] = 7, + [99393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, - anon_sym_LBRACE, - ACTIONS(5265), 1, - anon_sym_async, - ACTIONS(5267), 1, - anon_sym_EQ_GT, - STATE(1883), 1, - sym_function_expression_body, - STATE(1916), 1, - sym_block, - ACTIONS(5269), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [99580] = 6, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(5269), 1, + sym_identifier, + STATE(3495), 1, + sym_type_parameter, + STATE(2936), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + [99412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(5271), 1, - anon_sym_LPAREN, - STATE(3123), 1, - sym_parameter_type_list, - STATE(3325), 1, - sym_type_parameters, - ACTIONS(983), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [99601] = 5, + ACTIONS(5237), 1, + anon_sym_DOLLAR, + ACTIONS(5319), 1, + anon_sym_DQUOTE, + STATE(2817), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_double_quotes_repeat1, + ACTIONS(5315), 3, + sym__template_chars_double_single, + sym__unused_escape_sequence, + anon_sym_SQUOTE, + [99431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5273), 1, + ACTIONS(5321), 1, anon_sym_DQUOTE, - STATE(2816), 2, + STATE(2817), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5094), 3, + ACTIONS(5315), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99620] = 7, + [99450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5323), 1, + anon_sym_super, + STATE(914), 1, + sym_super, + ACTIONS(5163), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [99469] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4931), 1, anon_sym_LBRACE, - ACTIONS(5275), 1, + ACTIONS(4933), 1, anon_sym_async, - ACTIONS(5277), 1, + ACTIONS(4935), 1, anon_sym_EQ_GT, - STATE(1883), 1, - sym_function_expression_body, - STATE(1916), 1, + STATE(1048), 1, sym_block, - ACTIONS(5269), 2, + STATE(1264), 1, + sym_function_body, + ACTIONS(4937), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [99643] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5102), 1, - anon_sym_DOLLAR, - ACTIONS(5279), 1, - anon_sym_SQUOTE, - STATE(2819), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5100), 3, - sym__template_chars_single_single, - sym__unused_escape_sequence, - anon_sym_DQUOTE, - [99662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5096), 1, - anon_sym_DOLLAR, - ACTIONS(5283), 1, - anon_sym_DQUOTE, - STATE(2873), 2, - sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5281), 3, - sym__template_chars_double_single, - sym__unused_escape_sequence, - anon_sym_SQUOTE, - [99681] = 5, + [99492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5287), 1, + ACTIONS(5325), 1, anon_sym_SQUOTE, - STATE(2800), 2, + STATE(2821), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5285), 3, + ACTIONS(5293), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99700] = 5, + [99511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5291), 1, + ACTIONS(5327), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2792), 2, + STATE(2826), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5289), 3, + ACTIONS(5285), 3, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99719] = 5, + [99530] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5295), 1, + ACTIONS(5329), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2784), 2, + STATE(2827), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5293), 3, + ACTIONS(5281), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99738] = 7, + [99549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(5331), 1, + sym_identifier, + STATE(3530), 1, + sym_enum_constant, + STATE(2978), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + [99568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1421), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_DOT, + anon_sym_QMARK_DOT, + sym_identifier, + [99581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym_COLON, + ACTIONS(5338), 1, anon_sym_async, - ACTIONS(4948), 1, + ACTIONS(5333), 5, + anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(1000), 1, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [99598] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4935), 1, + anon_sym_EQ_GT, + ACTIONS(5341), 1, + anon_sym_LBRACE, + ACTIONS(5343), 1, + anon_sym_async, + STATE(1048), 1, sym_block, - STATE(2510), 1, + STATE(1264), 1, sym_function_body, - ACTIONS(4950), 2, + ACTIONS(5345), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [99761] = 5, + [99621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_DOT, + anon_sym_QMARK_DOT, + sym_identifier, + [99634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5299), 1, + ACTIONS(5349), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2806), 2, + STATE(2847), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5297), 3, + ACTIONS(5347), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5303), 1, - anon_sym_async, - ACTIONS(5301), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [99795] = 5, + [99653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5307), 1, + ACTIONS(5353), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2807), 2, + STATE(2848), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5305), 3, + ACTIONS(5351), 3, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99814] = 5, + [99672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5237), 1, + anon_sym_DOLLAR, + ACTIONS(5355), 1, + anon_sym_DQUOTE, + STATE(2817), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_double_quotes_repeat1, + ACTIONS(5315), 3, + sym__template_chars_double_single, + sym__unused_escape_sequence, + anon_sym_SQUOTE, + [99691] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5149), 1, + anon_sym_DOLLAR, + ACTIONS(5357), 1, + anon_sym_SQUOTE, + STATE(2821), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_repeat1, + ACTIONS(5293), 3, + sym__template_chars_single_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [99710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5311), 1, + ACTIONS(5361), 1, anon_sym_SQUOTE, - STATE(2808), 2, + STATE(2849), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5309), 3, + ACTIONS(5359), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99833] = 5, + [99729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5315), 1, + ACTIONS(5365), 1, anon_sym_DQUOTE, - STATE(2813), 2, + STATE(2855), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5313), 3, + ACTIONS(5363), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99852] = 5, + [99748] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5369), 1, + anon_sym_if, + STATE(2875), 2, + sym_configuration_uri, + aux_sym_configurable_uri_repeat1, + ACTIONS(5367), 4, + anon_sym_as, + anon_sym_show, + anon_sym_hide, + anon_sym_SEMI, + [99765] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 1, + anon_sym_LBRACE, + ACTIONS(5374), 1, + anon_sym_async, + ACTIONS(5376), 1, + anon_sym_EQ_GT, + STATE(1872), 1, + sym_function_expression_body, + STATE(1874), 1, + sym_block, + ACTIONS(5378), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [99788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5317), 1, + ACTIONS(5380), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, + STATE(2826), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5066), 3, + ACTIONS(5285), 3, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [99871] = 5, + [99807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5319), 1, + ACTIONS(5382), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, + STATE(2827), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5108), 3, + ACTIONS(5281), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [99890] = 7, + [99826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, - anon_sym_EQ_GT, - ACTIONS(5321), 1, + ACTIONS(4931), 1, anon_sym_LBRACE, - ACTIONS(5323), 1, + ACTIONS(4933), 1, anon_sym_async, - STATE(1000), 1, + ACTIONS(4935), 1, + anon_sym_EQ_GT, + STATE(1048), 1, sym_block, - STATE(1198), 1, + STATE(2549), 1, sym_function_body, - ACTIONS(5325), 2, + ACTIONS(4937), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [99913] = 7, + [99849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, - anon_sym_catch, - ACTIONS(5327), 1, - anon_sym_on, - ACTIONS(5329), 1, - anon_sym_finally, - STATE(1223), 1, - sym_finally_clause, - STATE(3366), 1, - sym_catch_clause, - STATE(1029), 2, - sym__on_part, - aux_sym_try_statement_repeat1, - [99936] = 4, + ACTIONS(1415), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_DOT, + anon_sym_QMARK_DOT, + sym_identifier, + [99862] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_if, - STATE(2815), 2, - sym_configuration_uri, - aux_sym_configurable_uri_repeat1, - ACTIONS(5331), 4, - anon_sym_as, - anon_sym_show, - anon_sym_hide, - anon_sym_SEMI, - [99953] = 7, + ACTIONS(5169), 1, + anon_sym_DOLLAR, + ACTIONS(5386), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2863), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_multiple_repeat1, + ACTIONS(5384), 3, + sym__template_chars_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [99881] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5169), 1, + anon_sym_DOLLAR, + ACTIONS(5388), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2827), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_multiple_repeat1, + ACTIONS(5281), 3, + sym__template_chars_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [99900] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5390), 1, anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(5392), 1, anon_sym_async, - ACTIONS(4948), 1, + ACTIONS(5394), 1, anon_sym_EQ_GT, - STATE(1000), 1, + STATE(1417), 1, + sym_function_expression_body, + STATE(1426), 1, sym_block, - STATE(1117), 1, - sym_function_body, - ACTIONS(4950), 2, + ACTIONS(5396), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [99976] = 3, + [99923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5169), 1, + anon_sym_DOLLAR, + ACTIONS(5400), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2933), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_multiple_repeat1, + ACTIONS(5398), 3, + sym__template_chars_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [99942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5335), 1, + ACTIONS(5043), 1, + anon_sym_on, + ACTIONS(5045), 1, + anon_sym_catch, + ACTIONS(5047), 1, + anon_sym_finally, + STATE(1231), 1, + sym_finally_clause, + STATE(3387), 1, + sym_catch_clause, + STATE(2781), 2, + sym__on_part, + aux_sym_try_statement_repeat1, + [99965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(5333), 6, + ACTIONS(2922), 6, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [99991] = 2, + [99980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_DOT, - anon_sym_QMARK_DOT, - sym_identifier, - [100004] = 7, + ACTIONS(5237), 1, + anon_sym_DOLLAR, + ACTIONS(5402), 1, + anon_sym_DQUOTE, + STATE(2817), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_double_quotes_repeat1, + ACTIONS(5315), 3, + sym__template_chars_double_single, + sym__unused_escape_sequence, + anon_sym_SQUOTE, + [99999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 1, - anon_sym_LBRACE, - ACTIONS(5339), 1, - anon_sym_async, - ACTIONS(5341), 1, - anon_sym_EQ_GT, - STATE(824), 1, - sym_block, - STATE(825), 1, - sym_function_expression_body, - ACTIONS(5343), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [100027] = 7, + ACTIONS(5143), 1, + anon_sym_DOLLAR, + ACTIONS(5406), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2931), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5404), 3, + sym__template_chars_double, + sym__unused_escape_sequence, + anon_sym_SQUOTE, + [100018] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(4931), 1, anon_sym_LBRACE, - ACTIONS(5345), 1, + ACTIONS(4933), 1, anon_sym_async, - ACTIONS(5347), 1, + ACTIONS(4935), 1, anon_sym_EQ_GT, - STATE(1400), 1, + STATE(1048), 1, sym_block, - STATE(1452), 1, - sym_function_expression_body, - ACTIONS(5122), 2, + STATE(1210), 1, + sym_function_body, + ACTIONS(4937), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [100050] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_DOT, - anon_sym_QMARK_DOT, - sym_identifier, - [100063] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5072), 1, - anon_sym_DASH, - ACTIONS(5349), 1, - anon_sym_super, - STATE(1337), 1, - sym_super, - ACTIONS(5074), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [100082] = 5, + [100041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(5161), 1, anon_sym_DASH, - ACTIONS(5351), 1, + ACTIONS(5408), 1, anon_sym_super, - STATE(2271), 1, + STATE(2077), 1, sym_super, - ACTIONS(5074), 4, + ACTIONS(5163), 4, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_await, - [100101] = 4, + [100060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_AT, - ACTIONS(5356), 2, - anon_sym_export, - anon_sym_import, - STATE(2858), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - [100118] = 5, + ACTIONS(5149), 1, + anon_sym_DOLLAR, + ACTIONS(5412), 1, + anon_sym_SQUOTE, + STATE(2922), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_repeat1, + ACTIONS(5410), 3, + sym__template_chars_single_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [100079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_DASH, - ACTIONS(5358), 1, - anon_sym_super, - STATE(1379), 1, - sym_super, - ACTIONS(5074), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [100137] = 5, + ACTIONS(5169), 1, + anon_sym_DOLLAR, + ACTIONS(5416), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(2845), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_multiple_repeat1, + ACTIONS(5414), 3, + sym__template_chars_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [100098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5362), 1, + ACTIONS(5420), 1, anon_sym_DQUOTE, - STATE(2774), 2, + STATE(2887), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5360), 3, + ACTIONS(5418), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100156] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5072), 1, - anon_sym_DASH, - ACTIONS(5364), 1, - anon_sym_super, - STATE(1896), 1, - sym_super, - ACTIONS(5074), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [100175] = 5, + [100117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5366), 1, + ACTIONS(5422), 1, anon_sym_DQUOTE, - STATE(2816), 2, + STATE(2817), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5094), 3, + ACTIONS(5315), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100194] = 5, + [100136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5368), 1, + ACTIONS(5424), 1, anon_sym_SQUOTE, - STATE(2819), 2, + STATE(2821), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5100), 3, + ACTIONS(5293), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [100213] = 5, + [100155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5370), 1, + ACTIONS(5426), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, + STATE(2826), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5066), 3, + ACTIONS(5285), 3, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100232] = 5, + [100174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5372), 1, + ACTIONS(5428), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, + STATE(2827), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5108), 3, + ACTIONS(5281), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [100251] = 5, + [100193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5376), 1, - anon_sym_SQUOTE, - STATE(2775), 2, + ACTIONS(5430), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2826), 2, sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5374), 3, - sym__template_chars_single_single, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5285), 3, + sym__template_chars_double, sym__unused_escape_sequence, - anon_sym_DQUOTE, - [100270] = 5, + anon_sym_SQUOTE, + [100212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5378), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2773), 2, + ACTIONS(5434), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2862), 2, sym__sub_string_test, - aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5108), 3, - sym__template_chars_single, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5432), 3, + sym__template_chars_double, sym__unused_escape_sequence, - anon_sym_DQUOTE, - [100289] = 5, + anon_sym_SQUOTE, + [100231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5382), 1, + ACTIONS(5438), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2776), 2, + STATE(2846), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5380), 3, + ACTIONS(5436), 3, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100308] = 5, + [100250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5384), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2772), 2, + ACTIONS(5440), 1, + anon_sym_SQUOTE, + STATE(2821), 2, sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5066), 3, - sym__template_chars_double, + aux_sym__raw_string_literal_single_quotes_repeat1, + ACTIONS(5293), 3, + sym__template_chars_single_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [100269] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5237), 1, + anon_sym_DOLLAR, + ACTIONS(5442), 1, + anon_sym_DQUOTE, + STATE(2817), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_double_quotes_repeat1, + ACTIONS(5315), 3, + sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100327] = 5, + [100288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5386), 1, + ACTIONS(5446), 1, anon_sym_SQUOTE, - STATE(2819), 2, + STATE(2854), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5100), 3, + ACTIONS(5444), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [100346] = 5, + [100307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5169), 1, anon_sym_DOLLAR, - ACTIONS(5390), 1, + ACTIONS(5448), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2777), 2, + STATE(2827), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5388), 3, + ACTIONS(5281), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [100365] = 5, + [100326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5392), 1, - anon_sym_DQUOTE, - STATE(2816), 2, + ACTIONS(5450), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2826), 2, sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5094), 3, - sym__template_chars_double_single, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5285), 3, + sym__template_chars_double, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100384] = 5, + [100345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5394), 1, + ACTIONS(5452), 1, + anon_sym_SQUOTE, + STATE(2821), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_repeat1, + ACTIONS(5293), 3, + sym__template_chars_single_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [100364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5237), 1, + anon_sym_DOLLAR, + ACTIONS(5454), 1, anon_sym_DQUOTE, - STATE(2816), 2, + STATE(2817), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5094), 3, + ACTIONS(5315), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100403] = 3, + [100383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 1, + ACTIONS(2937), 1, anon_sym_async, - ACTIONS(5027), 6, + ACTIONS(2935), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [100418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1166), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - sym_increment_operator, - anon_sym_DOT, - anon_sym_QMARK_DOT, - sym_identifier, - [100431] = 5, + [100398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5398), 1, + ACTIONS(5458), 1, anon_sym_DQUOTE, - STATE(2829), 2, + STATE(2857), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5396), 3, + ACTIONS(5456), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100450] = 5, + [100417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5402), 1, + ACTIONS(5462), 1, anon_sym_SQUOTE, - STATE(2827), 2, + STATE(2861), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5400), 3, + ACTIONS(5460), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [100469] = 5, + [100436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5464), 1, + anon_sym_super, + STATE(2131), 1, + sym_super, + ACTIONS(5163), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [100455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5466), 1, + anon_sym_super, + STATE(1483), 1, + sym_super, + ACTIONS(5163), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [100474] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(5331), 1, + sym_identifier, + STATE(3120), 1, + sym_enum_constant, + STATE(2978), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + [100493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5468), 1, + anon_sym_super, + STATE(1821), 1, + sym_super, + ACTIONS(5163), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [100512] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_DASH, + ACTIONS(5470), 1, + anon_sym_super, + STATE(1939), 1, + sym_super, + ACTIONS(5163), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [100531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5249), 1, + anon_sym_LBRACE, + ACTIONS(5472), 1, + anon_sym_async, + ACTIONS(5474), 1, + anon_sym_EQ_GT, + STATE(1753), 1, + sym_block, + STATE(1823), 1, + sym_function_expression_body, + ACTIONS(5255), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [100554] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4931), 1, + anon_sym_LBRACE, + ACTIONS(4933), 1, + anon_sym_async, + ACTIONS(4935), 1, + anon_sym_EQ_GT, + STATE(1048), 1, + sym_block, + STATE(1144), 1, + sym_function_body, + ACTIONS(4937), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [100577] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5406), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2770), 2, + ACTIONS(5478), 1, + anon_sym_DQUOTE, + STATE(2858), 2, sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5404), 3, - sym__template_chars_double, + aux_sym__raw_string_literal_double_quotes_repeat1, + ACTIONS(5476), 3, + sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100488] = 4, + [100596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5411), 1, - anon_sym_COLON, - ACTIONS(5413), 1, + ACTIONS(5482), 1, anon_sym_async, - ACTIONS(5408), 5, + ACTIONS(5480), 6, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [100505] = 5, + [100611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, + ACTIONS(5484), 1, anon_sym_AT, - ACTIONS(5416), 1, - sym_identifier, - STATE(3137), 1, - sym_enum_constant, - STATE(2936), 4, + ACTIONS(5487), 2, + anon_sym_export, + anon_sym_import, + STATE(2920), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - [100524] = 5, + [100628] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5271), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_async, + ACTIONS(5491), 1, + anon_sym_EQ_GT, + STATE(2115), 1, + sym_function_expression_body, + STATE(2116), 1, + sym_block, + ACTIONS(5277), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [100651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5420), 1, + ACTIONS(5493), 1, + anon_sym_SQUOTE, + STATE(2821), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_single_quotes_repeat1, + ACTIONS(5293), 3, + sym__template_chars_single_single, + sym__unused_escape_sequence, + anon_sym_DQUOTE, + [100670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5169), 1, + anon_sym_DOLLAR, + ACTIONS(5497), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2867), 2, + STATE(2904), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5418), 3, + ACTIONS(5495), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [100543] = 5, + [100689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5424), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(2869), 2, + ACTIONS(5501), 1, + anon_sym_DQUOTE, + STATE(2902), 2, sym__sub_string_test, - aux_sym__raw_string_literal_double_quotes_multiple_repeat1, - ACTIONS(5422), 3, - sym__template_chars_double, + aux_sym__raw_string_literal_double_quotes_repeat1, + ACTIONS(5499), 3, + sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100562] = 5, + [100708] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5390), 1, + anon_sym_LBRACE, + ACTIONS(5503), 1, + anon_sym_async, + ACTIONS(5505), 1, + anon_sym_EQ_GT, + STATE(1417), 1, + sym_function_expression_body, + STATE(1426), 1, + sym_block, + ACTIONS(5396), 2, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [100731] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5149), 1, anon_sym_DOLLAR, - ACTIONS(5428), 1, + ACTIONS(5509), 1, anon_sym_SQUOTE, - STATE(2870), 2, + STATE(2906), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_repeat1, - ACTIONS(5426), 3, + ACTIONS(5507), 3, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [100581] = 5, + [100750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3007), 1, + anon_sym_async, + ACTIONS(3005), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [100765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5237), 1, anon_sym_DOLLAR, - ACTIONS(5432), 1, + ACTIONS(5513), 1, anon_sym_DQUOTE, - STATE(2872), 2, + STATE(2907), 2, sym__sub_string_test, aux_sym__raw_string_literal_double_quotes_repeat1, - ACTIONS(5430), 3, + ACTIONS(5511), 3, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_SQUOTE, - [100600] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5434), 1, - anon_sym_LBRACE, - ACTIONS(5436), 1, - anon_sym_async, - ACTIONS(5438), 1, - anon_sym_EQ_GT, - STATE(2129), 1, - sym_function_expression_body, - STATE(2130), 1, - sym_block, - ACTIONS(5440), 2, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [100623] = 7, + [100784] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5515), 1, anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(5517), 1, anon_sym_async, - ACTIONS(4948), 1, + ACTIONS(5519), 1, anon_sym_EQ_GT, - STATE(1000), 1, + STATE(810), 1, sym_block, - STATE(1105), 1, - sym_function_body, - ACTIONS(4950), 2, + STATE(812), 1, + sym_function_expression_body, + ACTIONS(5521), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [100646] = 5, + [100807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(5161), 1, anon_sym_DASH, - ACTIONS(5442), 1, + ACTIONS(5523), 1, anon_sym_super, - STATE(2246), 1, + STATE(2300), 1, sym_super, - ACTIONS(5074), 4, + ACTIONS(5163), 4, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_await, - [100665] = 5, + [100826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5143), 1, anon_sym_DOLLAR, - ACTIONS(5446), 1, + ACTIONS(5525), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(2826), 2, + sym__sub_string_test, + aux_sym__raw_string_literal_double_quotes_multiple_repeat1, + ACTIONS(5285), 3, + sym__template_chars_double, + sym__unused_escape_sequence, + anon_sym_SQUOTE, + [100845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + sym_increment_operator, + anon_sym_DOT, + anon_sym_QMARK_DOT, + sym_identifier, + [100858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5169), 1, + anon_sym_DOLLAR, + ACTIONS(5527), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(2810), 2, + STATE(2827), 2, sym__sub_string_test, aux_sym__raw_string_literal_single_quotes_multiple_repeat1, - ACTIONS(5444), 3, + ACTIONS(5281), 3, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DQUOTE, - [100684] = 7, + [100877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5448), 1, - anon_sym_LBRACE, - ACTIONS(5450), 1, + ACTIONS(4943), 1, anon_sym_async, - ACTIONS(5452), 1, + ACTIONS(4945), 1, + anon_sym_SEMI, + ACTIONS(4939), 4, + anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(289), 1, - sym_function_expression_body, - STATE(290), 1, - sym_block, - ACTIONS(5454), 2, anon_sym_async_STAR, anon_sym_sync_STAR, - [100707] = 5, + [100893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3910), 1, + anon_sym_LBRACE, + ACTIONS(3912), 1, + anon_sym_LBRACK, + ACTIONS(5529), 1, + anon_sym_RPAREN, + STATE(3722), 1, + sym_optional_formal_parameters, + STATE(3834), 2, + sym__optional_postional_formal_parameters, + sym__named_formal_parameters, + [100913] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, anon_sym_AT, - ACTIONS(5416), 1, + ACTIONS(5531), 1, sym_identifier, - STATE(3478), 1, - sym_enum_constant, - STATE(2936), 4, + STATE(2429), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym__metadata, - [100726] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(4379), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - STATE(2897), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - [100746] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1047), 1, - sym__semicolon, - ACTIONS(5040), 2, - anon_sym_show, - anon_sym_hide, - STATE(2989), 2, - sym_combinator, - aux_sym_library_export_repeat1, - [100764] = 4, - ACTIONS(5460), 1, - aux_sym__sub_string_test_token1, - ACTIONS(5462), 1, - sym_comment, - ACTIONS(5456), 2, - sym__template_chars_double_single, - sym__unused_escape_sequence, - ACTIONS(5458), 3, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [100780] = 2, + [100929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 6, + ACTIONS(4630), 6, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_EQ, anon_sym_RPAREN, - [100792] = 2, + [100941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 6, + ACTIONS(5533), 6, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_EQ, anon_sym_RPAREN, - [100804] = 2, + [100953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_Function, + STATE(3108), 1, + sym__function_builtin_identifier, + ACTIONS(1037), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2441), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + [100971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 6, + ACTIONS(5535), 6, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_EQ, anon_sym_RPAREN, - [100816] = 3, + [100983] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5471), 1, - anon_sym_async, - ACTIONS(5469), 5, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, + ACTIONS(532), 1, anon_sym_SEMI, - [100830] = 3, + STATE(1099), 1, + sym__semicolon, + ACTIONS(5125), 2, + anon_sym_show, + anon_sym_hide, + STATE(2995), 2, + sym_combinator, + aux_sym_library_export_repeat1, + [101001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5537), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + [101013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5475), 1, + ACTIONS(5541), 1, anon_sym_async, - ACTIONS(5473), 5, + ACTIONS(5539), 5, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [100844] = 3, + [101027] = 4, + ACTIONS(5547), 1, + aux_sym__sub_string_test_token1, + ACTIONS(5549), 1, + sym_comment, + ACTIONS(5543), 2, + sym__template_chars_double, + sym__unused_escape_sequence, + ACTIONS(5545), 3, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + [101043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, + ACTIONS(5553), 1, anon_sym_async, - ACTIONS(5034), 5, + ACTIONS(5551), 5, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [100858] = 5, + [101057] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1074), 1, + STATE(1094), 1, sym__semicolon, - ACTIONS(5040), 2, + ACTIONS(5125), 2, anon_sym_show, anon_sym_hide, - STATE(2989), 2, + STATE(2962), 2, sym_combinator, aux_sym_library_export_repeat1, - [100876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(5479), 1, - sym_identifier, - STATE(2393), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - [100892] = 4, + [101075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 1, + ACTIONS(5555), 1, anon_sym_COMMA, - STATE(2902), 1, + STATE(2947), 1, aux_sym_inferred_parameters_repeat1, - ACTIONS(5484), 4, + ACTIONS(5558), 4, anon_sym_LPAREN, anon_sym_show, anon_sym_hide, anon_sym_SEMI, - [100908] = 3, + [101091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_async, - ACTIONS(5048), 5, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [100922] = 3, + ACTIONS(5560), 1, + anon_sym_DASH, + ACTIONS(5562), 5, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + anon_sym_super, + [101105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5490), 1, + ACTIONS(5566), 1, anon_sym_async, - ACTIONS(5488), 5, + ACTIONS(5568), 1, + anon_sym_SEMI, + ACTIONS(5564), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - anon_sym_SEMI, - [100936] = 2, + [101121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 6, + ACTIONS(5570), 6, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_EQ, anon_sym_RPAREN, - [100948] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5494), 1, - anon_sym_LT, - STATE(3101), 1, - sym_type_arguments, - STATE(3133), 1, - sym__type_args, - ACTIONS(983), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [100966] = 5, + [101133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_Function, - STATE(3076), 1, - sym__function_builtin_identifier, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2913), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [100984] = 2, + ACTIONS(5573), 1, + anon_sym_DASH, + ACTIONS(5575), 5, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + anon_sym_super, + [101147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5498), 6, + ACTIONS(5577), 6, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_EQ, anon_sym_RPAREN, - [100996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 6, - anon_sym_as, - anon_sym_if, - anon_sym_show, - anon_sym_hide, - anon_sym_deferred, - anon_sym_SEMI, - [101008] = 4, - ACTIONS(5462), 1, + [101159] = 4, + ACTIONS(5549), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5584), 1, aux_sym__sub_string_test_token1, - ACTIONS(5502), 2, + ACTIONS(5580), 2, sym__template_chars_single_single, sym__unused_escape_sequence, - ACTIONS(5504), 3, + ACTIONS(5582), 3, anon_sym_DOLLAR, anon_sym_DQUOTE, anon_sym_SQUOTE, - [101024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5508), 1, - anon_sym_DASH, - ACTIONS(5510), 5, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - anon_sym_super, - [101038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5512), 1, - anon_sym_DOT, - ACTIONS(1346), 5, - anon_sym_Function, - anon_sym_get, - anon_sym_set, - anon_sym_this, - sym_identifier, - [101052] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - anon_sym_Function, - STATE(3076), 1, - sym__function_builtin_identifier, - ACTIONS(976), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2913), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [101070] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 1, - anon_sym_Function, - STATE(3076), 1, - sym__function_builtin_identifier, - ACTIONS(972), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2913), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [101088] = 5, + [101175] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1069), 1, + STATE(1094), 1, sym__semicolon, - ACTIONS(5040), 2, + ACTIONS(5125), 2, anon_sym_show, anon_sym_hide, - STATE(2989), 2, + STATE(2995), 2, sym_combinator, aux_sym_library_export_repeat1, - [101106] = 5, + [101193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - ACTIONS(4335), 1, - anon_sym_DOT, - STATE(2407), 1, - sym_arguments, - ACTIONS(4337), 3, - anon_sym_AT, - anon_sym_export, - anon_sym_import, - [101124] = 5, + ACTIONS(5586), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + [101205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_Function, - STATE(3076), 1, - sym__function_builtin_identifier, - ACTIONS(966), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2913), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [101142] = 3, + ACTIONS(4427), 1, + anon_sym_LT, + ACTIONS(4455), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, + sym_type_parameters, + STATE(2968), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + [101225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_DASH, - ACTIONS(5519), 5, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - anon_sym_super, - [101156] = 5, + ACTIONS(5588), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + [101237] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1064), 1, + STATE(1118), 1, sym__semicolon, - ACTIONS(5040), 2, + ACTIONS(5125), 2, anon_sym_show, anon_sym_hide, - STATE(2989), 2, + STATE(2960), 2, sym_combinator, aux_sym_library_export_repeat1, - [101174] = 5, + [101255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1073), 1, - sym__semicolon, - ACTIONS(5040), 2, - anon_sym_show, - anon_sym_hide, - STATE(2989), 2, - sym_combinator, - aux_sym_library_export_repeat1, - [101192] = 5, + ACTIONS(5590), 6, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_with, + anon_sym_implements, + [101267] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1047), 1, + STATE(1122), 1, sym__semicolon, - ACTIONS(5040), 2, + ACTIONS(5125), 2, anon_sym_show, anon_sym_hide, - STATE(2919), 2, + STATE(2995), 2, sym_combinator, aux_sym_library_export_repeat1, - [101210] = 4, + [101285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_if, - STATE(2849), 2, - sym_configuration_uri, - aux_sym_configurable_uri_repeat1, - ACTIONS(4810), 3, - anon_sym_show, - anon_sym_hide, - anon_sym_SEMI, - [101226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5521), 6, + ACTIONS(5592), 6, anon_sym_LBRACE, anon_sym_EQ, anon_sym_LPAREN, anon_sym_extends, anon_sym_with, anon_sym_implements, - [101238] = 5, + [101297] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - ACTIONS(5525), 1, - anon_sym_COLON, - STATE(1203), 1, + STATE(1106), 1, sym__semicolon, - ACTIONS(5523), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - [101256] = 3, + ACTIONS(5125), 2, + anon_sym_show, + anon_sym_hide, + STATE(2995), 2, + sym_combinator, + aux_sym_library_export_repeat1, + [101315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5529), 1, + ACTIONS(5596), 1, anon_sym_async, - ACTIONS(5527), 5, + ACTIONS(5594), 5, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [101270] = 5, + [101329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1056), 1, - sym__semicolon, - ACTIONS(5040), 2, - anon_sym_show, - anon_sym_hide, - STATE(2900), 2, - sym_combinator, - aux_sym_library_export_repeat1, - [101288] = 4, + ACTIONS(4602), 1, + anon_sym_Function, + STATE(3108), 1, + sym__function_builtin_identifier, + ACTIONS(4598), 2, + anon_sym_this, + sym_identifier, + STATE(2800), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + [101347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 1, + ACTIONS(5600), 1, anon_sym_async, - ACTIONS(5535), 1, - anon_sym_SEMI, - ACTIONS(5531), 4, + ACTIONS(5598), 5, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - [101304] = 4, - ACTIONS(5462), 1, - sym_comment, - ACTIONS(5541), 1, - aux_sym__sub_string_test_token1, - ACTIONS(5537), 2, - sym__template_chars_double, - sym__unused_escape_sequence, - ACTIONS(5539), 3, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - [101320] = 2, + anon_sym_SEMI, + [101361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 6, + ACTIONS(5602), 6, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_EQ, anon_sym_RPAREN, - [101332] = 4, + [101373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(4715), 1, + anon_sym_Function, + STATE(3108), 1, + sym__function_builtin_identifier, + ACTIONS(1043), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2441), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + [101391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 1, anon_sym_async, - ACTIONS(4800), 1, - anon_sym_SEMI, - ACTIONS(4794), 4, + ACTIONS(5604), 5, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - [101348] = 3, + anon_sym_SEMI, + [101405] = 4, + ACTIONS(5549), 1, + sym_comment, + ACTIONS(5612), 1, + aux_sym__sub_string_test_token1, + ACTIONS(5608), 2, + sym__template_chars_double_single, + sym__unused_escape_sequence, + ACTIONS(5610), 3, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [101421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, + ACTIONS(5616), 1, anon_sym_async, - ACTIONS(5545), 5, + ACTIONS(5614), 5, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, anon_sym_SEMI, - [101362] = 5, + [101435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - anon_sym_Function, - STATE(3076), 1, - sym__function_builtin_identifier, - ACTIONS(4570), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2913), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [101380] = 5, + ACTIONS(5618), 1, + anon_sym_async, + ACTIONS(5127), 5, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [101449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(5620), 1, + anon_sym_DOT, + ACTIONS(1355), 5, anon_sym_Function, - STATE(3076), 1, - sym__function_builtin_identifier, - ACTIONS(4570), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2907), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [101398] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1067), 1, - sym__semicolon, - ACTIONS(5040), 2, - anon_sym_show, - anon_sym_hide, - STATE(2892), 2, - sym_combinator, - aux_sym_library_export_repeat1, - [101416] = 5, + anon_sym_get, + anon_sym_set, + anon_sym_this, + sym_identifier, + [101463] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1074), 1, + STATE(1118), 1, sym__semicolon, - ACTIONS(5040), 2, + ACTIONS(5125), 2, anon_sym_show, anon_sym_hide, - STATE(2915), 2, + STATE(2995), 2, sym_combinator, aux_sym_library_export_repeat1, - [101434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_AT, - ACTIONS(5549), 1, - sym_identifier, - STATE(2393), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym__metadata, - [101450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 1, - anon_sym_async, - ACTIONS(5551), 5, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - anon_sym_SEMI, - [101464] = 4, - ACTIONS(5462), 1, - sym_comment, - ACTIONS(5559), 1, - aux_sym__sub_string_test_token1, - ACTIONS(5555), 2, - sym__template_chars_single, - sym__unused_escape_sequence, - ACTIONS(5557), 3, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - [101480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 1, - anon_sym_Function, - STATE(3072), 1, - sym__function_builtin_identifier, - ACTIONS(4568), 2, - anon_sym_this, - sym_identifier, - STATE(2755), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [101498] = 2, + [101481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 6, + ACTIONS(5622), 6, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_COLON, anon_sym_EQ, anon_sym_RPAREN, - [101510] = 2, + [101493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 6, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(4427), 1, + anon_sym_LT, + ACTIONS(4455), 1, anon_sym_LPAREN, - anon_sym_extends, - anon_sym_with, - anon_sym_implements, - [101522] = 6, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3289), 1, + sym_type_parameters, + STATE(2938), 2, + sym__formal_parameter_part, + sym_formal_parameter_list, + [101513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(4971), 1, + anon_sym_if, + STATE(2844), 2, + sym_configuration_uri, + aux_sym_configurable_uri_repeat1, + ACTIONS(4969), 3, + anon_sym_show, + anon_sym_hide, + anon_sym_SEMI, + [101529] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, anon_sym_LT, - ACTIONS(4379), 1, + ACTIONS(4455), 1, anon_sym_LPAREN, - STATE(2553), 1, + STATE(2625), 1, sym__strict_formal_parameter_list, - STATE(3220), 1, + STATE(3289), 1, sym_type_parameters, - STATE(2895), 2, + STATE(2955), 2, sym__formal_parameter_part, sym_formal_parameter_list, - [101542] = 2, + [101549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 6, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - [101554] = 2, + ACTIONS(73), 1, + anon_sym_AT, + ACTIONS(5624), 1, + sym_identifier, + STATE(2429), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym__metadata, + [101565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 6, + ACTIONS(5626), 6, + anon_sym_as, + anon_sym_if, + anon_sym_show, + anon_sym_hide, + anon_sym_deferred, + anon_sym_SEMI, + [101577] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(532), 1, + anon_sym_SEMI, + ACTIONS(5630), 1, + anon_sym_COLON, + STATE(1229), 1, + sym__semicolon, + ACTIONS(5628), 3, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - [101566] = 6, + anon_sym_else, + [101595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 1, + ACTIONS(5632), 1, + anon_sym_async, + ACTIONS(5139), 5, anon_sym_LBRACE, - ACTIONS(3832), 1, - anon_sym_LBRACK, - ACTIONS(5570), 1, - anon_sym_RPAREN, - STATE(3676), 1, - sym_optional_formal_parameters, - STATE(3764), 2, - sym__optional_postional_formal_parameters, - sym__named_formal_parameters, - [101586] = 6, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + anon_sym_SEMI, + [101609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(4379), 1, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1111), 1, + sym__semicolon, + ACTIONS(5125), 2, + anon_sym_show, + anon_sym_hide, + STATE(2954), 2, + sym_combinator, + aux_sym_library_export_repeat1, + [101627] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1098), 1, + sym__semicolon, + ACTIONS(5125), 2, + anon_sym_show, + anon_sym_hide, + STATE(2973), 2, + sym_combinator, + aux_sym_library_export_repeat1, + [101645] = 4, + ACTIONS(5549), 1, + sym_comment, + ACTIONS(5638), 1, + aux_sym__sub_string_test_token1, + ACTIONS(5634), 2, + sym__template_chars_single, + sym__unused_escape_sequence, + ACTIONS(5636), 3, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + [101661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3220), 1, - sym_type_parameters, - STATE(2943), 2, - sym__formal_parameter_part, - sym_formal_parameter_list, - [101606] = 2, + ACTIONS(4400), 1, + anon_sym_DOT, + STATE(2439), 1, + sym_arguments, + ACTIONS(4402), 3, + anon_sym_AT, + anon_sym_export, + anon_sym_import, + [101679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5572), 6, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RPAREN, - [101618] = 6, + ACTIONS(5640), 5, + sym__template_chars_double, + sym__unused_escape_sequence, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + [101690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4648), 1, anon_sym_LBRACE, - ACTIONS(4534), 1, + ACTIONS(4656), 1, anon_sym_implements, - STATE(1139), 1, + STATE(1211), 1, sym_class_body, - STATE(2538), 1, + STATE(2577), 1, sym__implements, - STATE(3467), 1, + STATE(3452), 1, sym_interfaces, - [101637] = 2, + [101709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_show, - anon_sym_hide, - anon_sym_SEMI, - [101648] = 6, + ACTIONS(5642), 5, + sym__template_chars_double_single, + sym__unused_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [101720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, + ACTIONS(1204), 5, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(5574), 1, - anon_sym_COMMA, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2902), 1, - aux_sym_inferred_parameters_repeat1, - STATE(2979), 1, - sym_formal_parameter_list, - [101667] = 4, + anon_sym_LT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [101731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3927), 1, anon_sym_DOT_DOT, - ACTIONS(4695), 2, + ACTIONS(4761), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(2673), 2, + STATE(2712), 2, sym_cascade_section, aux_sym__expression_repeat1, - [101682] = 4, + [101746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_DOT_DOT, - ACTIONS(4699), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(2673), 2, - sym_cascade_section, - aux_sym__expression_repeat1, - [101697] = 2, + ACTIONS(5644), 5, + sym__template_chars_single, + sym__unused_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + [101757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5576), 5, - sym__template_chars_single_single, + ACTIONS(5640), 5, + sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_DOLLAR, anon_sym_DQUOTE, anon_sym_SQUOTE, - [101708] = 3, + [101768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 1, - anon_sym_DASH, - ACTIONS(5580), 4, - sym_increment_operator, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_await, - [101721] = 2, + ACTIONS(5644), 5, + sym__template_chars_double_single, + sym__unused_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [101779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 5, - sym__template_chars_single_single, + ACTIONS(5646), 5, + sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DOLLAR, anon_sym_DQUOTE, - anon_sym_SQUOTE, - [101732] = 2, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + [101790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5651), 1, + anon_sym_SEMI, + ACTIONS(5648), 2, + anon_sym_show, + anon_sym_hide, + STATE(2995), 2, + sym_combinator, + aux_sym_library_export_repeat1, + [101805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 5, + ACTIONS(5642), 5, sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DOLLAR, anon_sym_DQUOTE, anon_sym_SQUOTE, - [101743] = 4, + [101816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5588), 1, + ACTIONS(5655), 1, anon_sym_COMMA, - STATE(2957), 1, + STATE(3002), 1, aux_sym__type_not_void_list_repeat1, - ACTIONS(5586), 3, + ACTIONS(5653), 3, anon_sym_LBRACE, anon_sym_implements, anon_sym_SEMI, - [101758] = 2, + [101831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [101842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 5, + ACTIONS(5640), 5, sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DOLLAR, anon_sym_DQUOTE, anon_sym_SQUOTE_SQUOTE_SQUOTE, - [101769] = 6, + [101853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(5558), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_show, + anon_sym_hide, + anon_sym_SEMI, + [101864] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 1, anon_sym_LBRACE, - ACTIONS(4534), 1, + ACTIONS(4656), 1, anon_sym_implements, - STATE(1150), 1, + STATE(1195), 1, sym_class_body, - STATE(2538), 1, + STATE(2577), 1, sym__implements, - STATE(3491), 1, + STATE(3565), 1, sym_interfaces, - [101788] = 6, + [101883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(5655), 1, + anon_sym_COMMA, + STATE(3012), 1, + aux_sym__type_not_void_list_repeat1, + ACTIONS(5657), 3, anon_sym_LBRACE, - ACTIONS(4534), 1, anon_sym_implements, - STATE(1152), 1, - sym_class_body, - STATE(2538), 1, - sym__implements, - STATE(3459), 1, - sym_interfaces, - [101807] = 2, + anon_sym_SEMI, + [101898] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 1, + sym_identifier, + ACTIONS(5662), 1, + anon_sym_get, + ACTIONS(5664), 1, + anon_sym_set, + STATE(3591), 1, + sym__get, + STATE(3592), 1, + sym__set, + [101917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 5, + ACTIONS(5630), 1, + anon_sym_COLON, + ACTIONS(5628), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_else, + [101930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5646), 5, sym__template_chars_double_single, sym__unused_escape_sequence, anon_sym_DOLLAR, anon_sym_DQUOTE, anon_sym_SQUOTE, - [101818] = 6, + [101941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(5640), 5, + sym__template_chars_single_single, + sym__unused_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [101952] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 1, anon_sym_LBRACE, - ACTIONS(4534), 1, + ACTIONS(4656), 1, anon_sym_implements, - STATE(1161), 1, + STATE(1204), 1, sym_class_body, - STATE(2538), 1, + STATE(2577), 1, sym__implements, - STATE(3485), 1, + STATE(3502), 1, sym_interfaces, - [101837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1232), 5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [101848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5576), 5, - sym__template_chars_double_single, - sym__unused_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [101859] = 3, + [101971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(5161), 1, anon_sym_DASH, - ACTIONS(5074), 4, + ACTIONS(5163), 4, sym_increment_operator, anon_sym_BANG, anon_sym_TILDE, anon_sym_await, - [101872] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5593), 1, - sym_identifier, - ACTIONS(5596), 1, - anon_sym_get, - ACTIONS(5598), 1, - anon_sym_set, - STATE(3717), 1, - sym__get, - STATE(3737), 1, - sym__set, - [101891] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [101902] = 4, + [101984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, + ACTIONS(3927), 1, + anon_sym_DOT_DOT, + ACTIONS(4757), 2, anon_sym_COMMA, - STATE(2957), 1, - aux_sym__type_not_void_list_repeat1, - ACTIONS(5600), 3, - anon_sym_LBRACE, - anon_sym_implements, anon_sym_SEMI, - [101917] = 3, + STATE(2712), 2, + sym_cascade_section, + aux_sym__expression_repeat1, + [101999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(5566), 1, anon_sym_async, - ACTIONS(4794), 4, + ACTIONS(5564), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - [101930] = 2, + [102012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 5, - sym__template_chars_single_single, + ACTIONS(5642), 5, + sym__template_chars_single, sym__unused_escape_sequence, anon_sym_DOLLAR, anon_sym_DQUOTE, - anon_sym_SQUOTE, - [101941] = 4, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + [102023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, + ACTIONS(5668), 1, anon_sym_COMMA, - STATE(2968), 1, + STATE(3012), 1, aux_sym__type_not_void_list_repeat1, - ACTIONS(5604), 3, + ACTIONS(5666), 3, anon_sym_LBRACE, anon_sym_implements, anon_sym_SEMI, - [101956] = 2, + [102038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [101967] = 6, + ACTIONS(5642), 5, + sym__template_chars_double, + sym__unused_escape_sequence, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + [102049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, - anon_sym_get, - ACTIONS(4904), 1, - anon_sym_set, - ACTIONS(5606), 1, - sym_identifier, - STATE(3687), 1, - sym__set, - STATE(3688), 1, - sym__get, - [101986] = 2, + ACTIONS(4648), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, + anon_sym_implements, + STATE(1143), 1, + sym_class_body, + STATE(2577), 1, + sym__implements, + STATE(3528), 1, + sym_interfaces, + [102068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 5, - anon_sym_as, - anon_sym_if, - anon_sym_show, - anon_sym_hide, - anon_sym_SEMI, - [101997] = 2, + ACTIONS(4648), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, + anon_sym_implements, + STATE(1163), 1, + sym_class_body, + STATE(2577), 1, + sym__implements, + STATE(3559), 1, + sym_interfaces, + [102087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 5, - sym__template_chars_single, - sym__unused_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102008] = 2, + ACTIONS(5671), 1, + anon_sym_DASH, + ACTIONS(5673), 4, + sym_increment_operator, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_await, + [102100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 5, - sym__template_chars_double_single, + ACTIONS(5646), 5, + sym__template_chars_double, sym__unused_escape_sequence, anon_sym_DOLLAR, - anon_sym_DQUOTE, anon_sym_SQUOTE, - [102019] = 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + [102111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5612), 1, - anon_sym_async, - ACTIONS(5610), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_async_STAR, - anon_sym_sync_STAR, - [102032] = 3, + ACTIONS(5675), 5, + anon_sym_void, + anon_sym_Function, + anon_sym_get, + anon_sym_set, + sym_identifier, + [102122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 1, + ACTIONS(5679), 1, anon_sym_async, - ACTIONS(5531), 4, + ACTIONS(5677), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - [102045] = 3, + [102135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 1, + ACTIONS(4943), 1, anon_sym_async, - ACTIONS(5614), 4, + ACTIONS(4939), 4, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_async_STAR, anon_sym_sync_STAR, - [102058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(5574), 1, - anon_sym_COMMA, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2950), 1, - aux_sym_inferred_parameters_repeat1, - STATE(2977), 1, - sym_formal_parameter_list, - [102077] = 2, + [102148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 5, + ACTIONS(5644), 5, sym__template_chars_double, sym__unused_escape_sequence, anon_sym_DOLLAR, anon_sym_SQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [102088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 1, - anon_sym_COLON, - ACTIONS(5523), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_else, - [102101] = 4, + [102159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(5681), 1, anon_sym_COMMA, - STATE(2987), 1, + STATE(3027), 1, aux_sym_inferred_parameters_repeat1, - ACTIONS(5618), 3, + ACTIONS(5683), 3, anon_sym_show, anon_sym_hide, anon_sym_SEMI, - [102116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5620), 5, - anon_sym_void, - anon_sym_Function, - anon_sym_get, - anon_sym_set, - sym_identifier, - [102127] = 2, + [102174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5576), 5, - sym__template_chars_double, + ACTIONS(5644), 5, + sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DOLLAR, + anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - [102138] = 2, + [102185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 5, - sym__template_chars_double, + ACTIONS(1563), 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [102196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5646), 5, + sym__template_chars_single_single, sym__unused_escape_sequence, anon_sym_DOLLAR, + anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - [102149] = 4, + [102207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(5681), 1, anon_sym_COMMA, - STATE(2902), 1, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2947), 1, aux_sym_inferred_parameters_repeat1, - ACTIONS(5622), 3, - anon_sym_show, - anon_sym_hide, - anon_sym_SEMI, - [102164] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - ACTIONS(4534), 1, - anon_sym_implements, - STATE(1137), 1, - sym_class_body, - STATE(2538), 1, - sym__implements, - STATE(3460), 1, - sym_interfaces, - [102183] = 4, + STATE(3019), 1, + sym_formal_parameter_list, + [102226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5627), 1, - anon_sym_SEMI, - ACTIONS(5624), 2, + ACTIONS(5681), 1, + anon_sym_COMMA, + STATE(2947), 1, + aux_sym_inferred_parameters_repeat1, + ACTIONS(5685), 3, anon_sym_show, anon_sym_hide, - STATE(2989), 2, - sym_combinator, - aux_sym_library_export_repeat1, - [102198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5582), 5, - sym__template_chars_single, - sym__unused_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5591), 5, - sym__template_chars_double, - sym__unused_escape_sequence, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - [102220] = 6, + anon_sym_SEMI, + [102241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4648), 1, anon_sym_LBRACE, - ACTIONS(4534), 1, + ACTIONS(4656), 1, anon_sym_implements, - STATE(1145), 1, + STATE(1205), 1, sym_class_body, - STATE(2538), 1, + STATE(2577), 1, sym__implements, - STATE(3479), 1, + STATE(3464), 1, sym_interfaces, - [102239] = 2, + [102260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5576), 5, - sym__template_chars_single, - sym__unused_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102250] = 6, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(5681), 1, + anon_sym_COMMA, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3026), 1, + aux_sym_inferred_parameters_repeat1, + STATE(3033), 1, + sym_formal_parameter_list, + [102279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, + ACTIONS(5687), 1, anon_sym_COMMA, - ACTIONS(5631), 1, + ACTIONS(5689), 1, anon_sym_EQ, - ACTIONS(5633), 1, + ACTIONS(5691), 1, anon_sym_in, - ACTIONS(5635), 1, + ACTIONS(5693), 1, anon_sym_SEMI, - STATE(3113), 1, + STATE(3145), 1, aux_sym_initialized_identifier_list_repeat1, - [102269] = 2, + [102298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 5, - sym__template_chars_double_single, - sym__unused_escape_sequence, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [102280] = 5, + ACTIONS(5009), 1, + anon_sym_get, + ACTIONS(5013), 1, + anon_sym_set, + ACTIONS(5695), 1, + sym_identifier, + STATE(3787), 1, + sym__set, + STATE(3788), 1, + sym__get, + [102317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(2099), 1, - anon_sym_LPAREN, - STATE(802), 1, - sym_parameter_type_list, - STATE(3387), 1, - sym_type_parameters, - [102296] = 5, + ACTIONS(5697), 5, + anon_sym_as, + anon_sym_if, + anon_sym_show, + anon_sym_hide, + anon_sym_SEMI, + [102328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, - anon_sym_implements, - ACTIONS(5637), 1, - anon_sym_SEMI, - STATE(2538), 1, - sym__implements, - STATE(3577), 1, - sym_interfaces, - [102312] = 3, + ACTIONS(5701), 1, + anon_sym_async, + ACTIONS(5699), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_async_STAR, + anon_sym_sync_STAR, + [102341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5639), 2, + ACTIONS(5705), 1, + anon_sym_else, + ACTIONS(5703), 3, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5641), 2, - anon_sym_COLON, - anon_sym_EQ, - [102324] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5643), 1, - anon_sym_DQUOTE, - ACTIONS(5645), 1, - anon_sym_SQUOTE, - ACTIONS(5647), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5649), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102340] = 5, + anon_sym_RBRACK, + [102353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(3899), 1, + ACTIONS(3095), 1, anon_sym_LPAREN, - STATE(1947), 1, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(1317), 1, sym_parameter_type_list, - STATE(3446), 1, + STATE(3455), 1, sym_type_parameters, - [102356] = 5, + [102369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4808), 1, - anon_sym_EQ, - ACTIONS(5651), 1, + ACTIONS(5707), 4, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5654), 1, - anon_sym_SEMI, - STATE(3130), 1, - aux_sym_inferred_parameters_repeat1, - [102372] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(1974), 1, - sym_parameter_type_list, - STATE(3447), 1, - sym_type_parameters, - [102388] = 5, + anon_sym_RBRACK, + anon_sym_else, + [102379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(5473), 1, + ACTIONS(532), 1, anon_sym_SEMI, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2850), 1, - sym_formal_parameter_list, - [102404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym_Function, - STATE(3005), 1, - sym__function_builtin_identifier, - STATE(178), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [102418] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(1027), 1, - anon_sym_LPAREN, - STATE(219), 1, - sym_parameter_type_list, - STATE(3333), 1, - sym_type_parameters, - [102434] = 3, + ACTIONS(5709), 1, + anon_sym_COMMA, + STATE(365), 1, + sym__semicolon, + STATE(3115), 1, + aux_sym__for_loop_parts_repeat1, + [102395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - sym_identifier, - ACTIONS(5661), 3, + ACTIONS(5711), 4, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RPAREN, - [102446] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_DQUOTE, - ACTIONS(5665), 1, - anon_sym_SQUOTE, - ACTIONS(5667), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5669), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102462] = 2, + anon_sym_else, + [102405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 4, + ACTIONS(5045), 1, + anon_sym_catch, + ACTIONS(5713), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_SEMI, - [102472] = 4, + STATE(1138), 1, + sym_block, + STATE(3517), 1, + sym_catch_clause, + [102421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 1, + ACTIONS(5715), 1, anon_sym_Function, - STATE(3000), 1, + STATE(3060), 1, sym__function_builtin_identifier, - STATE(1624), 2, + STATE(213), 2, aux_sym__function_type_tails, sym__function_type_tail, - [102486] = 5, + [102435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 1, - anon_sym_LPAREN, - ACTIONS(5673), 1, - anon_sym_DOT, - STATE(811), 1, - sym_arguments, - STATE(3438), 1, - sym__dot_identifier, - [102502] = 5, + ACTIONS(5717), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_else, + [102445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 1, + ACTIONS(4114), 1, anon_sym_LPAREN, - ACTIONS(5673), 1, - anon_sym_DOT, - STATE(754), 1, - sym_arguments, - STATE(3437), 1, - sym__dot_identifier, - [102518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5675), 1, - anon_sym_COMMA, - ACTIONS(5678), 1, - anon_sym_RPAREN, - STATE(3061), 1, - aux_sym__argument_list_repeat2, - STATE(3156), 1, - aux_sym__argument_list_repeat3, - [102534] = 5, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(2261), 1, + sym_parameter_type_list, + STATE(3396), 1, + sym_type_parameters, + [102461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5680), 1, + ACTIONS(5719), 1, anon_sym_DQUOTE, - ACTIONS(5682), 1, + ACTIONS(5721), 1, anon_sym_SQUOTE, - ACTIONS(5684), 1, + ACTIONS(5723), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5686), 1, + ACTIONS(5725), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102550] = 3, + [102477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5690), 1, - anon_sym_BANG, - ACTIONS(5688), 3, - anon_sym_void, - anon_sym_Function, - sym_identifier, - [102562] = 2, + ACTIONS(4124), 1, + anon_sym_LPAREN, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(2266), 1, + sym_parameter_type_list, + STATE(3389), 1, + sym_type_parameters, + [102493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 4, + ACTIONS(5727), 2, anon_sym_RBRACE, anon_sym_COMMA, + ACTIONS(5729), 2, + anon_sym_COLON, + anon_sym_EQ, + [102505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5731), 1, + anon_sym_COMMA, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + ACTIONS(5734), 2, anon_sym_RBRACK, - anon_sym_else, - [102572] = 5, + anon_sym_RPAREN, + [102519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(3026), 1, + ACTIONS(2179), 1, anon_sym_LPAREN, - STATE(1236), 1, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(856), 1, sym_parameter_type_list, - STATE(3465), 1, + STATE(3418), 1, sym_type_parameters, - [102588] = 3, + [102535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5696), 1, - anon_sym_else, - ACTIONS(5694), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [102600] = 4, + ACTIONS(4112), 1, + anon_sym_Function, + STATE(3042), 1, + sym__function_builtin_identifier, + STATE(2057), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + [102549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(4116), 1, anon_sym_Function, - STATE(3016), 1, + STATE(3044), 1, sym__function_builtin_identifier, - STATE(1104), 2, + STATE(2193), 2, aux_sym__function_type_tails, sym__function_type_tail, - [102614] = 5, + [102563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5698), 1, + ACTIONS(5736), 1, anon_sym_DQUOTE, - ACTIONS(5700), 1, + ACTIONS(5738), 1, anon_sym_SQUOTE, - ACTIONS(5702), 1, + ACTIONS(5740), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5704), 1, + ACTIONS(5742), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102630] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - ACTIONS(5706), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - [102644] = 5, + [102579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(4043), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(2203), 1, - sym_parameter_type_list, - STATE(3350), 1, - sym_type_parameters, - [102660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 1, - anon_sym_Function, - STATE(3021), 1, - sym__function_builtin_identifier, - STATE(2057), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [102674] = 2, + ACTIONS(5744), 1, + anon_sym_DOT, + STATE(2189), 1, + sym_arguments, + STATE(3398), 1, + sym__dot_identifier, + [102595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_else, - [102684] = 2, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(5744), 1, + anon_sym_DOT, + STATE(2191), 1, + sym_arguments, + STATE(3401), 1, + sym__dot_identifier, + [102611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 4, - anon_sym_RBRACE, + ACTIONS(4890), 1, + anon_sym_EQ, + ACTIONS(5746), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_else, - [102694] = 5, + ACTIONS(5749), 1, + anon_sym_SEMI, + STATE(3221), 1, + aux_sym_inferred_parameters_repeat1, + [102627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, + ACTIONS(5752), 1, anon_sym_DQUOTE, - ACTIONS(5717), 1, + ACTIONS(5754), 1, anon_sym_SQUOTE, - ACTIONS(5719), 1, + ACTIONS(5756), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5721), 1, + ACTIONS(5758), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102710] = 5, + [102643] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 1, + anon_sym_DOT, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(1414), 1, + sym_arguments, + STATE(3435), 1, + sym__dot_identifier, + [102659] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, + ACTIONS(5744), 1, anon_sym_DOT, - ACTIONS(5723), 1, + ACTIONS(5762), 1, anon_sym_LPAREN, - STATE(1413), 1, + STATE(1366), 1, sym_arguments, - STATE(3348), 1, + STATE(3441), 1, sym__dot_identifier, - [102726] = 5, + [102675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, + ACTIONS(5744), 1, anon_sym_DOT, - ACTIONS(5723), 1, + ACTIONS(5762), 1, anon_sym_LPAREN, - STATE(1412), 1, + STATE(1382), 1, sym_arguments, - STATE(3349), 1, + STATE(3442), 1, sym__dot_identifier, - [102742] = 4, + [102691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, + ACTIONS(5744), 1, + anon_sym_DOT, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(1485), 1, + sym_arguments, + STATE(3433), 1, + sym__dot_identifier, + [102707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5764), 1, anon_sym_Function, - STATE(3029), 1, + STATE(3093), 1, sym__function_builtin_identifier, - STATE(739), 2, + STATE(774), 2, aux_sym__function_type_tails, sym__function_type_tail, - [102756] = 5, + [102721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(2135), 1, + ACTIONS(1066), 1, anon_sym_LPAREN, - STATE(897), 1, - sym_parameter_type_list, - STATE(3360), 1, - sym_type_parameters, - [102772] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + ACTIONS(4427), 1, anon_sym_LT, - ACTIONS(4057), 1, - anon_sym_LPAREN, - STATE(2196), 1, + STATE(341), 1, sym_parameter_type_list, - STATE(3514), 1, + STATE(3448), 1, sym_type_parameters, - [102788] = 4, + [102737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(4715), 1, anon_sym_Function, - STATE(3030), 1, + STATE(3108), 1, sym__function_builtin_identifier, - STATE(2137), 2, + STATE(2660), 2, aux_sym__function_type_tails, sym__function_type_tail, - [102802] = 5, + [102751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_DOT, - ACTIONS(5727), 1, + ACTIONS(4945), 1, + anon_sym_SEMI, + ACTIONS(5766), 1, + anon_sym_COLON, + STATE(3693), 2, + sym_initializers, + sym_redirection, + [102765] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3904), 1, anon_sym_LPAREN, - STATE(1760), 1, - sym_arguments, - STATE(3509), 1, - sym__dot_identifier, - [102818] = 5, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(1730), 1, + sym_parameter_type_list, + STATE(3454), 1, + sym_type_parameters, + [102781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_DOT, - ACTIONS(5727), 1, + ACTIONS(4455), 1, anon_sym_LPAREN, - STATE(1908), 1, - sym_arguments, - STATE(3508), 1, - sym__dot_identifier, - [102834] = 3, + ACTIONS(5614), 1, + anon_sym_SEMI, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2917), 1, + sym_formal_parameter_list, + [102797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 2, - anon_sym_RBRACE, + ACTIONS(5098), 1, + anon_sym_extends, + STATE(3494), 1, + sym_type_bound, + ACTIONS(5768), 2, anon_sym_COMMA, - ACTIONS(5731), 2, - anon_sym_COLON, - anon_sym_EQ, - [102846] = 5, + anon_sym_GT, + [102811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - anon_sym_EQ, - ACTIONS(5733), 1, - anon_sym_COMMA, - ACTIONS(5735), 1, - anon_sym_SEMI, - STATE(3113), 1, - aux_sym_initialized_identifier_list_repeat1, - [102862] = 5, + ACTIONS(5770), 1, + anon_sym_Function, + STATE(3047), 1, + sym__function_builtin_identifier, + STATE(753), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + [102825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, + ACTIONS(5772), 1, anon_sym_DQUOTE, - ACTIONS(5740), 1, + ACTIONS(5774), 1, anon_sym_SQUOTE, - ACTIONS(5742), 1, + ACTIONS(5776), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5744), 1, + ACTIONS(5778), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102878] = 5, + [102841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - ACTIONS(5746), 1, + ACTIONS(5780), 4, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(341), 1, - sym__semicolon, - STATE(3227), 1, - aux_sym__for_loop_parts_repeat1, - [102894] = 4, + anon_sym_RBRACK, + anon_sym_RPAREN, + [102851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(5784), 1, + anon_sym_BANG, + ACTIONS(5782), 3, + anon_sym_void, anon_sym_Function, - STATE(3002), 1, - sym__function_builtin_identifier, - STATE(1630), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [102908] = 5, + sym_identifier, + [102863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, - anon_sym_catch, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1094), 1, - sym_block, - STATE(3512), 1, - sym_catch_clause, - [102924] = 4, + ACTIONS(5786), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_else, + [102873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_extends, - STATE(3411), 1, - sym_type_bound, - ACTIONS(5748), 2, + ACTIONS(5788), 1, + sym_identifier, + ACTIONS(5790), 3, anon_sym_COMMA, - anon_sym_GT, - [102938] = 5, + anon_sym_RBRACK, + anon_sym_RPAREN, + [102885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5689), 1, + anon_sym_EQ, + ACTIONS(5792), 1, + anon_sym_COMMA, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(3145), 1, + aux_sym_initialized_identifier_list_repeat1, + [102901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, + ACTIONS(5744), 1, anon_sym_DOT, - ACTIONS(5752), 1, + ACTIONS(5797), 1, anon_sym_LPAREN, - STATE(1434), 1, + STATE(867), 1, sym_arguments, - STATE(3401), 1, + STATE(3541), 1, sym__dot_identifier, - [102954] = 5, + [102917] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, + ACTIONS(5799), 1, anon_sym_DQUOTE, - ACTIONS(5756), 1, + ACTIONS(5801), 1, anon_sym_SQUOTE, - ACTIONS(5758), 1, + ACTIONS(5803), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5760), 1, + ACTIONS(5805), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - [102970] = 4, + [102933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(5598), 1, + anon_sym_SEMI, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2889), 1, + sym_formal_parameter_list, + [102949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3929), 1, anon_sym_Function, - STATE(3044), 1, + STATE(3077), 1, sym__function_builtin_identifier, - STATE(1607), 2, + STATE(1671), 2, aux_sym__function_type_tails, sym__function_type_tail, - [102984] = 5, + [102963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(3834), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - STATE(1713), 1, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(2030), 1, sym_parameter_type_list, - STATE(3419), 1, + STATE(3491), 1, sym_type_parameters, - [103000] = 5, + [102979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2930), 1, + anon_sym_Function, + STATE(3035), 1, + sym__function_builtin_identifier, + STATE(1155), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + [102993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, + ACTIONS(5744), 1, anon_sym_DOT, - ACTIONS(5752), 1, + ACTIONS(5807), 1, anon_sym_LPAREN, - STATE(1443), 1, + STATE(288), 1, sym_arguments, - STATE(3400), 1, + STATE(3509), 1, sym__dot_identifier, - [103016] = 5, + [103009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - ACTIONS(5746), 1, - anon_sym_COMMA, - STATE(352), 1, - sym__semicolon, - STATE(3037), 1, - aux_sym__for_loop_parts_repeat1, - [103032] = 5, + ACTIONS(5744), 1, + anon_sym_DOT, + ACTIONS(5807), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym_arguments, + STATE(3511), 1, + sym__dot_identifier, + [103025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(3900), 1, + anon_sym_LPAREN, + ACTIONS(4427), 1, anon_sym_LT, - ACTIONS(3843), 1, + STATE(1715), 1, + sym_parameter_type_list, + STATE(3536), 1, + sym_type_parameters, + [103041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5687), 1, + anon_sym_COMMA, + ACTIONS(5689), 1, + anon_sym_EQ, + ACTIONS(5693), 1, + anon_sym_SEMI, + STATE(3145), 1, + aux_sym_initialized_identifier_list_repeat1, + [103057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5045), 1, + anon_sym_catch, + ACTIONS(5390), 1, + anon_sym_LBRACE, + STATE(1138), 1, + sym_block, + STATE(3404), 1, + sym_catch_clause, + [103073] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3992), 1, anon_sym_LPAREN, - STATE(1698), 1, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(1999), 1, sym_parameter_type_list, - STATE(3413), 1, + STATE(3485), 1, sym_type_parameters, - [103048] = 4, + [103089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(3890), 1, anon_sym_Function, - STATE(3072), 1, + STATE(3063), 1, sym__function_builtin_identifier, - STATE(2082), 2, + STATE(1643), 2, aux_sym__function_type_tails, sym__function_type_tail, - [103062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(5488), 1, - anon_sym_SEMI, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2886), 1, - sym_formal_parameter_list, - [103078] = 2, + [103103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 4, + ACTIONS(5809), 4, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_else, - [103088] = 4, + [103113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 1, - anon_sym_Function, - STATE(3047), 1, - sym__function_builtin_identifier, - STATE(1602), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [103102] = 5, + ACTIONS(5811), 1, + anon_sym_DQUOTE, + ACTIONS(5813), 1, + anon_sym_SQUOTE, + ACTIONS(5815), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5817), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + [103129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_DOT, - ACTIONS(5764), 1, + ACTIONS(5819), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_else, + [103139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2428), 1, anon_sym_LPAREN, - STATE(1748), 1, + ACTIONS(5744), 1, + anon_sym_DOT, + STATE(2142), 1, sym_arguments, - STATE(3408), 1, + STATE(3493), 1, sym__dot_identifier, - [103118] = 5, + [103155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_DOT, - ACTIONS(5764), 1, + ACTIONS(2428), 1, anon_sym_LPAREN, - STATE(1749), 1, + ACTIONS(5744), 1, + anon_sym_DOT, + STATE(2140), 1, sym_arguments, - STATE(3407), 1, + STATE(3496), 1, sym__dot_identifier, - [103134] = 5, + [103171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5766), 1, - anon_sym_DQUOTE, - ACTIONS(5768), 1, - anon_sym_SQUOTE, - ACTIONS(5770), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5772), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - [103150] = 4, + ACTIONS(5821), 1, + anon_sym_Function, + STATE(3095), 1, + sym__function_builtin_identifier, + STATE(951), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + [103185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, + ACTIONS(4654), 1, anon_sym_with, - STATE(3463), 1, + STATE(3561), 1, sym_mixins, - ACTIONS(5774), 2, + ACTIONS(5823), 2, anon_sym_LBRACE, anon_sym_implements, - [103164] = 2, + [103199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_else, - [103174] = 5, + ACTIONS(2209), 1, + anon_sym_LPAREN, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(944), 1, + sym_parameter_type_list, + STATE(3503), 1, + sym_type_parameters, + [103215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, - anon_sym_catch, - ACTIONS(5778), 1, + ACTIONS(5666), 4, anon_sym_LBRACE, - STATE(1094), 1, - sym_block, - STATE(3431), 1, - sym_catch_clause, - [103190] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5629), 1, anon_sym_COMMA, - ACTIONS(5631), 1, - anon_sym_EQ, - ACTIONS(5635), 1, - anon_sym_SEMI, - STATE(3113), 1, - aux_sym_initialized_identifier_list_repeat1, - [103206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4800), 1, + anon_sym_implements, anon_sym_SEMI, - ACTIONS(5780), 1, - anon_sym_COLON, - STATE(3615), 2, - sym_initializers, - sym_redirection, - [103220] = 4, + [103225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_extends, - STATE(3381), 1, - sym_type_bound, - ACTIONS(5782), 2, - anon_sym_COMMA, - anon_sym_GT, - [103234] = 5, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(983), 1, + sym_parameter_type_list, + STATE(3551), 1, + sym_type_parameters, + [103241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 1, + ACTIONS(5825), 1, anon_sym_COMMA, - ACTIONS(5787), 1, + ACTIONS(5828), 1, anon_sym_RPAREN, - STATE(3267), 1, + STATE(3112), 1, aux_sym__argument_list_repeat2, - STATE(3280), 1, + STATE(3156), 1, aux_sym__argument_list_repeat3, - [103250] = 5, + [103257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(5673), 1, + ACTIONS(5744), 1, anon_sym_DOT, - STATE(2092), 1, - sym_arguments, - STATE(3376), 1, - sym__dot_identifier, - [103266] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - ACTIONS(5673), 1, - anon_sym_DOT, - STATE(2093), 1, + STATE(1915), 1, sym_arguments, - STATE(3377), 1, + STATE(3462), 1, sym__dot_identifier, - [103282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5789), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - [103292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_Function, - STATE(3066), 1, - sym__function_builtin_identifier, - STATE(916), 2, - aux_sym__function_type_tails, - sym__function_type_tail, - [103306] = 5, + [103273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(2179), 1, + ACTIONS(3106), 1, anon_sym_LPAREN, - STATE(928), 1, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(1303), 1, sym_parameter_type_list, - STATE(3385), 1, + STATE(3512), 1, sym_type_parameters, - [103322] = 4, + [103289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5793), 1, + ACTIONS(3898), 1, anon_sym_Function, - STATE(2996), 1, + STATE(3081), 1, sym__function_builtin_identifier, - STATE(722), 2, + STATE(1647), 2, aux_sym__function_type_tails, sym__function_type_tail, - [103336] = 2, + [103303] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_else, - [103346] = 5, + ACTIONS(5744), 1, + anon_sym_DOT, + ACTIONS(5832), 1, + anon_sym_LPAREN, + STATE(1779), 1, + sym_arguments, + STATE(3576), 1, + sym__dot_identifier, + [103319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - ACTIONS(5673), 1, + ACTIONS(5744), 1, anon_sym_DOT, - STATE(2142), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + STATE(1780), 1, sym_arguments, - STATE(3497), 1, + STATE(3575), 1, sym__dot_identifier, - [103362] = 4, + [103335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(3953), 1, anon_sym_Function, - STATE(3076), 1, + STATE(3084), 1, sym__function_builtin_identifier, - STATE(2914), 2, + STATE(1670), 2, aux_sym__function_type_tails, sym__function_type_tail, - [103376] = 5, + [103349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(3024), 1, - anon_sym_LPAREN, - STATE(1254), 1, - sym_parameter_type_list, - STATE(3486), 1, - sym_type_parameters, - [103392] = 5, + ACTIONS(2905), 1, + anon_sym_Function, + STATE(3098), 1, + sym__function_builtin_identifier, + STATE(1146), 2, + aux_sym__function_type_tails, + sym__function_type_tail, + [103363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(4208), 1, - anon_sym_LPAREN, - STATE(1887), 1, - sym_parameter_type_list, - STATE(3374), 1, - sym_type_parameters, - [103408] = 5, + ACTIONS(5834), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(5836), 2, + anon_sym_COLON, + anon_sym_EQ, + [103375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_DOT, - ACTIONS(5797), 1, - anon_sym_LPAREN, - STATE(269), 1, - sym_arguments, - STATE(3472), 1, - sym__dot_identifier, - [103424] = 5, + ACTIONS(5098), 1, + anon_sym_extends, + STATE(3478), 1, + sym_type_bound, + ACTIONS(5838), 2, + anon_sym_COMMA, + anon_sym_GT, + [103389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - ACTIONS(5673), 1, + ACTIONS(5744), 1, anon_sym_DOT, - STATE(2140), 1, + ACTIONS(5797), 1, + anon_sym_LPAREN, + STATE(872), 1, sym_arguments, - STATE(3500), 1, + STATE(3542), 1, sym__dot_identifier, - [103440] = 4, + [103405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, - ACTIONS(5802), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - [103454] = 5, + ACTIONS(5840), 1, + anon_sym_DQUOTE, + ACTIONS(5842), 1, + anon_sym_SQUOTE, + ACTIONS(5844), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5846), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + [103421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LT, - ACTIONS(5271), 1, + ACTIONS(4425), 1, anon_sym_LPAREN, - STATE(3123), 1, + ACTIONS(4427), 1, + anon_sym_LT, + STATE(2504), 1, sym_parameter_type_list, - STATE(3325), 1, + STATE(3563), 1, sym_type_parameters, - [103470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_DOT, - ACTIONS(5797), 1, - anon_sym_LPAREN, - STATE(208), 1, - sym_arguments, - STATE(3475), 1, - sym__dot_identifier, - [103486] = 4, + [103437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(4715), 1, anon_sym_Function, - STATE(3071), 1, + STATE(3108), 1, sym__function_builtin_identifier, - STATE(1176), 2, + STATE(2967), 2, aux_sym__function_type_tails, sym__function_type_tail, - [103500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5804), 1, - anon_sym_COMMA, - ACTIONS(5806), 1, - anon_sym_GT, - STATE(3167), 1, - aux_sym__type_args_repeat1, - [103513] = 4, + [103451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 1, - anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_GT, - STATE(3080), 1, - aux_sym_type_parameters_repeat1, - [103526] = 2, + ACTIONS(5744), 1, + anon_sym_DOT, + ACTIONS(5830), 1, + anon_sym_LPAREN, + STATE(1914), 1, + sym_arguments, + STATE(3460), 1, + sym__dot_identifier, + [103467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [103535] = 2, + ACTIONS(5848), 1, + anon_sym_DQUOTE, + ACTIONS(5850), 1, + anon_sym_SQUOTE, + ACTIONS(5852), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5854), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + [103483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 3, + ACTIONS(5856), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [103544] = 4, + ACTIONS(5859), 1, + anon_sym_RPAREN, + STATE(3132), 1, + aux_sym__argument_list_repeat3, + STATE(3137), 1, + aux_sym__argument_list_repeat2, + [103499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, + ACTIONS(5863), 1, anon_sym_COMMA, - ACTIONS(5815), 1, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + ACTIONS(5861), 2, + anon_sym_RBRACE, anon_sym_RBRACK, - STATE(3098), 1, - aux_sym_parameter_type_list_repeat1, - [103557] = 4, + [103513] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, - anon_sym_DOT, - STATE(1848), 1, - sym_unconditional_assignable_selector, - [103570] = 2, + ACTIONS(4656), 1, + anon_sym_implements, + ACTIONS(5866), 1, + anon_sym_SEMI, + STATE(2577), 1, + sym__implements, + STATE(3676), 1, + sym_interfaces, + [103529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(532), 1, + anon_sym_SEMI, + ACTIONS(5709), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [103579] = 4, + STATE(359), 1, + sym__semicolon, + STATE(3355), 1, + aux_sym__for_loop_parts_repeat1, + [103545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, - anon_sym_COMMA, - ACTIONS(5817), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [103592] = 2, + ACTIONS(532), 1, + anon_sym_SEMI, + ACTIONS(5868), 1, + sym_identifier, + STATE(1246), 1, + sym__semicolon, + [103558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [103601] = 4, + ACTIONS(5870), 1, + sym_identifier, + STATE(3523), 1, + sym_dotted_identifier_list, + STATE(3614), 1, + sym_uri_test, + [103571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5819), 1, + ACTIONS(5872), 1, + anon_sym_RBRACE, + ACTIONS(5874), 1, anon_sym_COMMA, - ACTIONS(5821), 1, - anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, - [103614] = 4, + STATE(3118), 1, + aux_sym_enum_body_repeat1, + [103584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5877), 1, + sym_identifier, + ACTIONS(5879), 1, + anon_sym_LBRACK, + STATE(756), 1, + sym_cascade_selector, + [103597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5823), 1, + ACTIONS(5881), 1, anon_sym_RBRACE, - ACTIONS(5825), 1, + ACTIONS(5883), 1, anon_sym_COMMA, - STATE(3093), 1, - aux_sym_named_parameter_types_repeat1, - [103627] = 4, + STATE(3325), 1, + aux_sym_enum_body_repeat1, + [103610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_this, - ACTIONS(5827), 1, + ACTIONS(5885), 1, sym_identifier, - STATE(3724), 1, - sym_this, - [103640] = 4, + STATE(473), 1, + sym_label, + STATE(3139), 1, + sym_named_argument, + [103623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(953), 1, + anon_sym_RBRACK, + ACTIONS(5887), 1, anon_sym_COMMA, - ACTIONS(5829), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [103653] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [103636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(873), 1, - anon_sym_RBRACE, - ACTIONS(5831), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [103666] = 4, + ACTIONS(5891), 1, + anon_sym_GT, + STATE(3161), 1, + aux_sym__type_args_repeat1, + [103649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5825), 1, + ACTIONS(5117), 1, + anon_sym_SEMI, + ACTIONS(5893), 1, anon_sym_COMMA, - ACTIONS(5833), 1, - anon_sym_RBRACE, - STATE(3180), 1, - aux_sym_named_parameter_types_repeat1, - [103679] = 2, + STATE(3188), 1, + aux_sym_initializers_repeat1, + [103662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5835), 3, - anon_sym_show, - anon_sym_hide, + ACTIONS(5895), 3, + anon_sym_LBRACE, + anon_sym_implements, anon_sym_SEMI, - [103688] = 4, + [103671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5837), 1, - sym_identifier, - ACTIONS(5839), 1, + ACTIONS(3752), 1, anon_sym_LBRACK, - STATE(1724), 1, - sym_cascade_selector, - [103701] = 4, + ACTIONS(4682), 1, + anon_sym_DOT, + STATE(2177), 1, + sym_unconditional_assignable_selector, + [103684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(5841), 1, - anon_sym_SEMI, - STATE(3196), 1, - aux_sym_initialized_identifier_list_repeat1, - [103714] = 4, + ACTIONS(5897), 1, + anon_sym_GT, + STATE(3371), 1, + aux_sym__type_args_repeat1, + [103697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(951), 1, + anon_sym_RBRACE, + ACTIONS(5899), 1, anon_sym_COMMA, - ACTIONS(5843), 1, - anon_sym_SEMI, - STATE(3130), 1, - aux_sym_inferred_parameters_repeat1, - [103727] = 4, + STATE(3135), 1, + aux_sym_list_literal_repeat1, + [103710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, - anon_sym_COMMA, - ACTIONS(5845), 1, + ACTIONS(953), 1, anon_sym_RBRACK, - STATE(3075), 1, + ACTIONS(5887), 1, + anon_sym_COMMA, + STATE(3136), 1, + aux_sym_list_literal_repeat1, + [103723] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5901), 1, + anon_sym_COMMA, + ACTIONS(5903), 1, + anon_sym_RPAREN, + STATE(3138), 1, aux_sym_parameter_type_list_repeat1, - [103740] = 2, + [103736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 3, + ACTIONS(5889), 1, anon_sym_COMMA, + ACTIONS(5905), 1, anon_sym_GT, - anon_sym_Function, + STATE(3256), 1, + aux_sym__type_args_repeat1, [103749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(3726), 1, - sym_type_arguments, + ACTIONS(5907), 1, + anon_sym_COMMA, + ACTIONS(5910), 1, + anon_sym_RPAREN, + STATE(3201), 1, + aux_sym__argument_list_repeat3, [103762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 3, + ACTIONS(5861), 3, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [103771] = 4, + anon_sym_RBRACK, + [103771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5837), 1, + ACTIONS(5912), 3, + anon_sym_void, + anon_sym_Function, sym_identifier, - ACTIONS(5839), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_cascade_selector, - [103784] = 2, + [103780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 3, + ACTIONS(955), 1, + anon_sym_RBRACE, + ACTIONS(5914), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, + STATE(3113), 1, + aux_sym_list_literal_repeat1, [103793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - sym_identifier, - STATE(3474), 1, - sym_dotted_identifier_list, - STATE(3598), 1, - sym_uri_test, + ACTIONS(957), 1, + anon_sym_RBRACK, + ACTIONS(5916), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_list_literal_repeat1, [103806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, - anon_sym_LBRACE, - ACTIONS(5849), 1, - anon_sym_EQ_GT, - STATE(2138), 1, - sym_block, + ACTIONS(5918), 1, + anon_sym_COMMA, + ACTIONS(5921), 1, + anon_sym_RPAREN, + STATE(3137), 1, + aux_sym__argument_list_repeat2, [103819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - anon_sym_RBRACE, - ACTIONS(5853), 1, + ACTIONS(5923), 1, anon_sym_COMMA, - STATE(3147), 1, - aux_sym_list_literal_repeat1, + ACTIONS(5925), 1, + anon_sym_RPAREN, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, [103832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5855), 1, + ACTIONS(5927), 1, anon_sym_COMMA, - ACTIONS(5857), 1, + ACTIONS(5930), 1, anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, + STATE(3198), 1, + aux_sym__argument_list_repeat1, [103845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 1, - anon_sym_LBRACK, - ACTIONS(4180), 1, - anon_sym_DOT, - STATE(1374), 1, - sym_unconditional_assignable_selector, + ACTIONS(2810), 1, + anon_sym_SEMI, + ACTIONS(5932), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_static_final_declaration_list_repeat1, [103858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, - anon_sym_LBRACE, - ACTIONS(5859), 1, - anon_sym_EQ_GT, - STATE(2138), 1, - sym_block, + ACTIONS(532), 1, + anon_sym_SEMI, + ACTIONS(5935), 1, + sym_identifier, + STATE(1248), 1, + sym__semicolon, [103871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(887), 1, + anon_sym_RBRACK, + ACTIONS(5937), 1, anon_sym_COMMA, - ACTIONS(5863), 1, - anon_sym_RPAREN, - STATE(3296), 1, - aux_sym__for_loop_parts_repeat2, + STATE(3377), 1, + aux_sym_list_literal_repeat1, [103884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, - anon_sym_COMMA, - ACTIONS(5865), 1, - anon_sym_RPAREN, - STATE(3275), 1, - aux_sym__for_loop_parts_repeat2, - [103897] = 2, + ACTIONS(5939), 1, + sym_identifier, + ACTIONS(5941), 1, + anon_sym_LBRACK, + STATE(1058), 1, + sym_cascade_selector, + [103897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 3, + ACTIONS(883), 1, + anon_sym_RBRACE, + ACTIONS(5943), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - [103906] = 4, + STATE(3261), 1, + aux_sym_list_literal_repeat1, + [103910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, + ACTIONS(5687), 1, anon_sym_COMMA, - ACTIONS(5867), 1, + ACTIONS(5945), 1, anon_sym_SEMI, - STATE(3309), 1, + STATE(3253), 1, aux_sym_initialized_identifier_list_repeat1, - [103919] = 4, + [103923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5869), 1, - anon_sym_COMMA, - ACTIONS(5871), 1, - anon_sym_RBRACK, - STATE(3323), 1, - aux_sym_list_literal_repeat1, - [103932] = 4, + ACTIONS(4455), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(3513), 1, + sym_formal_parameter_list, + [103936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(5875), 1, - anon_sym_RBRACK, - STATE(3153), 1, - aux_sym_list_literal_repeat1, - [103945] = 4, + ACTIONS(5949), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym__for_loop_parts_repeat2, + [103949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, + ACTIONS(869), 1, + anon_sym_RBRACE, + ACTIONS(5951), 1, anon_sym_COMMA, - ACTIONS(5877), 1, - anon_sym_SEMI, - STATE(3309), 1, - aux_sym_initialized_identifier_list_repeat1, - [103958] = 4, + STATE(3304), 1, + aux_sym_list_literal_repeat1, + [103962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5879), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(5881), 1, + ACTIONS(5953), 1, anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, - [103971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4192), 1, - anon_sym_LBRACK, - ACTIONS(4198), 1, - anon_sym_DOT, - STATE(800), 1, - sym_unconditional_assignable_selector, - [103984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5804), 1, - anon_sym_COMMA, - ACTIONS(5883), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [103997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4192), 1, - anon_sym_LBRACK, - ACTIONS(4198), 1, - anon_sym_DOT, - STATE(757), 1, - sym_unconditional_assignable_selector, - [104010] = 4, + STATE(3300), 1, + aux_sym__for_loop_parts_repeat2, + [103975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(2776), 1, + anon_sym_SEMI, + ACTIONS(5955), 1, anon_sym_COMMA, - ACTIONS(5887), 1, - anon_sym_RPAREN, - STATE(3117), 1, - aux_sym_parameter_type_list_repeat1, - [104023] = 4, + STATE(3140), 1, + aux_sym_static_final_declaration_list_repeat1, + [103988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(1010), 1, - sym_cascade_selector, - [104036] = 2, + ACTIONS(4455), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2943), 1, + sym_formal_parameter_list, + [104001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 3, + ACTIONS(5687), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [104045] = 4, + ACTIONS(5957), 1, + anon_sym_SEMI, + STATE(3253), 1, + aux_sym_initialized_identifier_list_repeat1, + [104014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5959), 1, anon_sym_COMMA, - ACTIONS(5893), 1, + ACTIONS(5961), 1, anon_sym_RPAREN, - STATE(3152), 1, - aux_sym__for_loop_parts_repeat2, - [104058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5895), 1, - sym_identifier, - ACTIONS(5897), 1, - anon_sym_LBRACK, - STATE(1803), 1, - sym_cascade_selector, - [104071] = 4, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [104027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, - ACTIONS(5899), 1, + ACTIONS(5963), 1, anon_sym_EQ_GT, - STATE(999), 1, + STATE(1910), 1, sym_block, - [104084] = 4, + [104040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(924), 1, - anon_sym_RBRACE, - ACTIONS(5901), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [104097] = 4, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(5965), 1, + anon_sym_DOT, + STATE(3733), 1, + sym_arguments, + [104053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(5903), 1, - anon_sym_EQ_GT, - STATE(1455), 1, - sym_block, - [104110] = 4, + ACTIONS(5859), 1, + anon_sym_RPAREN, + ACTIONS(5967), 1, + anon_sym_COMMA, + STATE(3201), 1, + aux_sym__argument_list_repeat3, + [104066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 1, - anon_sym_LBRACK, - ACTIONS(4140), 1, - anon_sym_DOT, - STATE(1407), 1, - sym_unconditional_assignable_selector, - [104123] = 4, + ACTIONS(925), 1, + anon_sym_RBRACE, + ACTIONS(5970), 1, + anon_sym_COMMA, + STATE(3203), 1, + aux_sym_list_literal_repeat1, + [104079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(5687), 1, anon_sym_COMMA, - ACTIONS(5905), 1, + ACTIONS(5972), 1, anon_sym_SEMI, - STATE(2902), 1, - aux_sym_inferred_parameters_repeat1, - [104136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(5907), 1, - anon_sym_EQ_GT, - STATE(1455), 1, - sym_block, - [104149] = 4, + STATE(3253), 1, + aux_sym_initialized_identifier_list_repeat1, + [104092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - anon_sym_COMMA, - ACTIONS(5911), 1, + ACTIONS(837), 1, anon_sym_RBRACK, - STATE(3157), 1, + ACTIONS(5974), 1, + anon_sym_COMMA, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [104162] = 2, + [104105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 3, + ACTIONS(839), 1, + anon_sym_RBRACE, + ACTIONS(5976), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [104171] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [104118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5978), 1, anon_sym_COMMA, - ACTIONS(5913), 1, + ACTIONS(5981), 1, anon_sym_GT, - STATE(3119), 1, + STATE(3161), 1, aux_sym__type_args_repeat1, - [104184] = 2, + [104131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 3, + ACTIONS(4455), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2945), 1, + sym_formal_parameter_list, + [104144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(865), 1, + anon_sym_RBRACK, + ACTIONS(5983), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [104193] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [104157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5985), 1, anon_sym_COMMA, - ACTIONS(5915), 1, + ACTIONS(5988), 1, anon_sym_GT, - STATE(3091), 1, - aux_sym__type_args_repeat1, - [104206] = 4, + STATE(3164), 1, + aux_sym_type_parameters_repeat1, + [104170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5917), 1, - anon_sym_RBRACE, - ACTIONS(5919), 1, + ACTIONS(969), 1, + anon_sym_RBRACK, + ACTIONS(5990), 1, anon_sym_COMMA, - STATE(3276), 1, - aux_sym_enum_body_repeat1, - [104219] = 4, + STATE(3209), 1, + aux_sym_list_literal_repeat1, + [104183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5885), 1, + sym_identifier, + STATE(473), 1, + sym_label, + STATE(3571), 1, + sym_named_argument, + [104196] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2426), 1, + anon_sym_LBRACK, + ACTIONS(4229), 1, + anon_sym_DOT, + STATE(1389), 1, + sym_unconditional_assignable_selector, + [104209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(5921), 1, + ACTIONS(5992), 1, anon_sym_GT, - STATE(3264), 1, + STATE(3210), 1, aux_sym__type_args_repeat1, - [104232] = 4, + [104222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5923), 1, - anon_sym_COMMA, - ACTIONS(5925), 1, - anon_sym_RPAREN, - STATE(3088), 1, - aux_sym_parameter_type_list_repeat1, - [104245] = 4, + ACTIONS(4231), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_DOT, + STATE(848), 1, + sym_unconditional_assignable_selector, + [104235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 1, + ACTIONS(2426), 1, + anon_sym_LBRACK, + ACTIONS(4229), 1, + anon_sym_DOT, + STATE(1469), 1, + sym_unconditional_assignable_selector, + [104248] = 4, + ACTIONS(5549), 1, + sym_comment, + ACTIONS(5584), 1, + aux_sym__sub_string_test_token1, + ACTIONS(5994), 1, + sym_identifier, + ACTIONS(5996), 1, anon_sym_LBRACE, - ACTIONS(5927), 1, - anon_sym_EQ_GT, - STATE(812), 1, - sym_block, - [104258] = 4, + [104261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(4668), 1, + anon_sym_DOT, + STATE(2129), 1, + sym_unconditional_assignable_selector, + [104274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5687), 1, anon_sym_COMMA, - ACTIONS(5929), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [104271] = 2, + ACTIONS(5998), 1, + anon_sym_SEMI, + STATE(3158), 1, + aux_sym_initialized_identifier_list_repeat1, + [104287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5931), 3, - anon_sym_void, - anon_sym_Function, - sym_identifier, - [104280] = 4, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4195), 1, + anon_sym_DOT, + STATE(1866), 1, + sym_unconditional_assignable_selector, + [104300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5859), 1, + anon_sym_RPAREN, + ACTIONS(6000), 1, anon_sym_COMMA, - ACTIONS(5933), 1, - anon_sym_GT, - STATE(3086), 1, - aux_sym__type_args_repeat1, - [104293] = 2, + STATE(3245), 1, + aux_sym__argument_list_repeat1, + [104313] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3481), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + anon_sym_DOT, + STATE(1932), 1, + sym_unconditional_assignable_selector, + [104326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1138), 3, + ACTIONS(6003), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_Function, - [104302] = 4, + ACTIONS(6005), 1, + anon_sym_RPAREN, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [104339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5935), 1, + ACTIONS(6007), 1, anon_sym_COMMA, - ACTIONS(5937), 1, + ACTIONS(6009), 1, anon_sym_RPAREN, - STATE(3075), 1, + STATE(3046), 1, aux_sym_parameter_type_list_repeat1, - [104315] = 4, - ACTIONS(5460), 1, - aux_sym__sub_string_test_token1, - ACTIONS(5462), 1, + [104352] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5939), 1, + ACTIONS(6011), 1, sym_identifier, - ACTIONS(5941), 1, - anon_sym_LBRACE, - [104328] = 4, + STATE(3200), 1, + sym_static_final_declaration, + STATE(3738), 1, + sym_static_final_declaration_list, + [104365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, - anon_sym_RBRACE, - ACTIONS(5943), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [104341] = 4, - ACTIONS(5462), 1, - sym_comment, - ACTIONS(5559), 1, - aux_sym__sub_string_test_token1, - ACTIONS(5945), 1, + ACTIONS(6013), 1, sym_identifier, - ACTIONS(5947), 1, - anon_sym_LBRACE, - [104354] = 4, + ACTIONS(6015), 1, + anon_sym_LBRACK, + STATE(1911), 1, + sym_cascade_selector, + [104378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5949), 1, - anon_sym_RBRACE, - ACTIONS(5951), 1, + ACTIONS(6017), 1, anon_sym_COMMA, - STATE(3092), 1, - aux_sym_list_literal_repeat1, - [104367] = 4, + ACTIONS(6019), 1, + anon_sym_RPAREN, + STATE(3178), 1, + aux_sym_parameter_type_list_repeat1, + [104391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(926), 1, - anon_sym_RBRACK, - ACTIONS(5953), 1, + ACTIONS(879), 1, + anon_sym_RBRACE, + ACTIONS(6021), 1, anon_sym_COMMA, - STATE(3020), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [104380] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2931), 1, - sym_formal_parameter_list, - [104393] = 4, + [104404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(885), 1, + anon_sym_RBRACK, + ACTIONS(6023), 1, anon_sym_COMMA, - ACTIONS(5955), 1, - anon_sym_RPAREN, - STATE(3275), 1, - aux_sym__for_loop_parts_repeat2, - [104406] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [104417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(859), 1, anon_sym_RBRACK, - ACTIONS(5957), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(3020), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [104419] = 4, + [104430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5787), 1, - anon_sym_RPAREN, - ACTIONS(5959), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - STATE(3184), 1, - aux_sym__argument_list_repeat1, - [104432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5962), 1, - sym_identifier, - STATE(462), 1, - sym_label, - STATE(3469), 1, - sym_named_argument, - [104445] = 4, + ACTIONS(6027), 1, + anon_sym_GT, + STATE(3161), 1, + aux_sym__type_args_repeat1, + [104443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5787), 1, - anon_sym_RPAREN, - ACTIONS(5964), 1, + ACTIONS(857), 1, + anon_sym_RBRACE, + ACTIONS(6029), 1, anon_sym_COMMA, - STATE(3320), 1, - aux_sym__argument_list_repeat3, - [104458] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [104456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(912), 1, - anon_sym_RBRACK, - ACTIONS(5967), 1, + ACTIONS(951), 1, + anon_sym_RBRACE, + ACTIONS(5899), 1, anon_sym_COMMA, - STATE(3020), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [104471] = 4, + [104469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, - anon_sym_LBRACK, - ACTIONS(4618), 1, - anon_sym_DOT, - STATE(2034), 1, - sym_unconditional_assignable_selector, - [104484] = 4, + ACTIONS(5107), 1, + anon_sym_SEMI, + ACTIONS(5893), 1, + anon_sym_COMMA, + STATE(3190), 1, + aux_sym_initializers_repeat1, + [104482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(5971), 1, - anon_sym_RPAREN, - STATE(3169), 1, - aux_sym_parameter_type_list_repeat1, - [104497] = 4, + ACTIONS(6031), 1, + anon_sym_GT, + STATE(3257), 1, + aux_sym__type_args_repeat1, + [104495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, - anon_sym_RBRACK, - ACTIONS(5973), 1, + ACTIONS(5100), 1, + anon_sym_SEMI, + ACTIONS(6033), 1, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [104510] = 4, + STATE(3190), 1, + aux_sym_initializers_repeat1, + [104508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5975), 1, - sym_identifier, - ACTIONS(5977), 1, - anon_sym_LBRACK, - STATE(1006), 1, - sym_cascade_selector, - [104523] = 4, + ACTIONS(5195), 1, + anon_sym_LBRACE, + ACTIONS(6036), 1, + anon_sym_EQ_GT, + STATE(287), 1, + sym_block, + [104521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, - anon_sym_COMMA, - ACTIONS(5981), 1, + ACTIONS(5828), 1, anon_sym_RPAREN, - STATE(3195), 1, - aux_sym_parameter_type_list_repeat1, - [104536] = 4, + ACTIONS(6038), 1, + anon_sym_COMMA, + STATE(3175), 1, + aux_sym__argument_list_repeat1, + [104534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - ACTIONS(5983), 1, - anon_sym_DOT, - STATE(3518), 1, - sym_arguments, - [104549] = 4, + ACTIONS(6041), 1, + anon_sym_RBRACE, + ACTIONS(6043), 1, + anon_sym_COMMA, + STATE(3336), 1, + aux_sym__named_formal_parameters_repeat1, + [104547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 1, - anon_sym_LBRACK, - ACTIONS(4180), 1, - anon_sym_DOT, - STATE(1350), 1, - sym_unconditional_assignable_selector, - [104562] = 2, + ACTIONS(6047), 1, + anon_sym_EQ, + ACTIONS(6045), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [104558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5985), 3, + ACTIONS(4931), 1, anon_sym_LBRACE, - anon_sym_implements, - anon_sym_SEMI, - [104571] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5891), 1, - anon_sym_LBRACK, - STATE(996), 1, - sym_cascade_selector, + ACTIONS(6049), 1, + anon_sym_EQ_GT, + STATE(1032), 1, + sym_block, + [104571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5515), 1, + anon_sym_LBRACE, + ACTIONS(6051), 1, + anon_sym_EQ_GT, + STATE(866), 1, + sym_block, [104584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(6053), 1, anon_sym_COMMA, - ACTIONS(5987), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, + ACTIONS(6055), 1, + anon_sym_RBRACK, + STATE(3334), 1, + aux_sym_positional_parameters_repeat1, [104597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, - anon_sym_RBRACE, - ACTIONS(5991), 1, + ACTIONS(6057), 1, anon_sym_COMMA, - STATE(3259), 1, - aux_sym_list_literal_repeat1, + ACTIONS(6060), 1, + anon_sym_RPAREN, + STATE(3245), 1, + aux_sym__argument_list_repeat1, [104610] = 4, - ACTIONS(3), 1, + ACTIONS(5549), 1, sym_comment, - ACTIONS(5993), 1, - anon_sym_COMMA, - ACTIONS(5995), 1, - anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, + ACTIONS(5612), 1, + aux_sym__sub_string_test_token1, + ACTIONS(6062), 1, + sym_identifier, + ACTIONS(6064), 1, + anon_sym_LBRACE, [104623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 1, + ACTIONS(2806), 1, + anon_sym_SEMI, + ACTIONS(5955), 1, anon_sym_COMMA, - ACTIONS(5999), 1, - anon_sym_RPAREN, - STATE(3107), 1, - aux_sym_parameter_type_list_repeat1, + STATE(3150), 1, + aux_sym_static_final_declaration_list_repeat1, [104636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, - anon_sym_LBRACK, - ACTIONS(4586), 1, - anon_sym_DOT, - STATE(2046), 1, - sym_unconditional_assignable_selector, - [104649] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3658), 1, - anon_sym_LBRACK, - ACTIONS(4586), 1, - anon_sym_DOT, - STATE(2099), 1, - sym_unconditional_assignable_selector, - [104662] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5804), 1, + ACTIONS(5930), 1, + anon_sym_RPAREN, + ACTIONS(6066), 1, anon_sym_COMMA, - ACTIONS(6001), 1, - anon_sym_GT, - STATE(3138), 1, - aux_sym__type_args_repeat1, - [104675] = 4, + STATE(3201), 1, + aux_sym__argument_list_repeat3, + [104649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6003), 1, - anon_sym_GT, - STATE(3257), 1, - aux_sym__type_args_repeat1, - [104688] = 4, + ACTIONS(6069), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym__for_loop_parts_repeat2, + [104662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(910), 1, + ACTIONS(967), 1, anon_sym_RBRACE, - ACTIONS(6005), 1, + ACTIONS(6071), 1, anon_sym_COMMA, - STATE(3020), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [104701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6007), 1, - sym_identifier, - STATE(3096), 1, - sym_initialized_identifier, - STATE(3615), 1, - sym_initialized_identifier_list, - [104714] = 4, + [104675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 1, + ACTIONS(6073), 1, anon_sym_COMMA, - ACTIONS(6011), 1, + ACTIONS(6075), 1, anon_sym_RPAREN, - STATE(3261), 1, + STATE(3177), 1, aux_sym_parameter_type_list_repeat1, - [104727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3170), 1, - anon_sym_Function, - ACTIONS(1440), 2, - anon_sym_COMMA, - anon_sym_GT, - [104738] = 4, + [104688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(855), 1, + anon_sym_RBRACK, + ACTIONS(6077), 1, anon_sym_COMMA, - ACTIONS(6015), 1, - anon_sym_GT, - STATE(3316), 1, - aux_sym_type_parameters_repeat1, - [104751] = 4, + STATE(3184), 1, + aux_sym_list_literal_repeat1, + [104701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6017), 1, + ACTIONS(853), 1, anon_sym_RBRACE, - ACTIONS(6019), 1, + ACTIONS(6079), 1, anon_sym_COMMA, - STATE(3180), 1, - aux_sym_named_parameter_types_repeat1, - [104764] = 4, + STATE(3186), 1, + aux_sym_list_literal_repeat1, + [104714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 1, - anon_sym_SEMI, - ACTIONS(6022), 1, + ACTIONS(907), 1, + anon_sym_RBRACE, + ACTIONS(6081), 1, anon_sym_COMMA, - STATE(3237), 1, - aux_sym_static_final_declaration_list_repeat1, - [104777] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [104727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6024), 1, + ACTIONS(6083), 1, anon_sym_RPAREN, - STATE(3111), 1, + STATE(3318), 1, aux_sym__for_loop_parts_repeat2, - [104790] = 4, + [104740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(3483), 1, - sym_formal_parameter_list, - [104803] = 4, + ACTIONS(835), 1, + anon_sym_RBRACK, + ACTIONS(6085), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [104753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6026), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6029), 1, - anon_sym_RPAREN, - STATE(3184), 1, - aux_sym__argument_list_repeat1, - [104816] = 4, + ACTIONS(6087), 1, + anon_sym_GT, + STATE(3161), 1, + aux_sym__type_args_repeat1, + [104766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5448), 1, - anon_sym_LBRACE, - ACTIONS(6031), 1, - anon_sym_EQ_GT, - STATE(271), 1, - sym_block, - [104829] = 4, + ACTIONS(6089), 1, + sym_identifier, + STATE(3173), 1, + sym_initialized_identifier, + STATE(3658), 1, + sym_initialized_identifier_list, + [104779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6033), 1, + ACTIONS(6091), 1, anon_sym_COMMA, - ACTIONS(6035), 1, + ACTIONS(6093), 1, anon_sym_RPAREN, - STATE(3075), 1, + STATE(3153), 1, aux_sym_parameter_type_list_repeat1, - [104842] = 4, + [104792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, - anon_sym_COMMA, - ACTIONS(6037), 1, - anon_sym_RPAREN, - STATE(3221), 1, - aux_sym__for_loop_parts_repeat2, - [104855] = 4, + ACTIONS(4231), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_DOT, + STATE(846), 1, + sym_unconditional_assignable_selector, + [104805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6039), 1, + ACTIONS(6095), 1, anon_sym_GT, - STATE(3264), 1, + STATE(3185), 1, aux_sym__type_args_repeat1, - [104868] = 4, + [104818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6041), 1, + ACTIONS(967), 1, anon_sym_RBRACE, - ACTIONS(6043), 1, + ACTIONS(6071), 1, anon_sym_COMMA, - STATE(3235), 1, + STATE(3225), 1, aux_sym_list_literal_repeat1, - [104881] = 4, + [104831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(835), 1, + anon_sym_RBRACK, + ACTIONS(6085), 1, anon_sym_COMMA, - ACTIONS(6045), 1, - anon_sym_RPAREN, - STATE(3275), 1, - aux_sym__for_loop_parts_repeat2, - [104894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6047), 1, - sym_identifier, - STATE(1046), 1, - sym_static_final_declaration, - STATE(1169), 1, - sym_static_final_declaration_list, - [104907] = 4, + STATE(3226), 1, + aux_sym_list_literal_repeat1, + [104844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(6097), 1, anon_sym_COMMA, - ACTIONS(6050), 1, + ACTIONS(6099), 1, anon_sym_RPAREN, - STATE(3287), 1, - aux_sym__for_loop_parts_repeat2, - [104920] = 4, + STATE(3228), 1, + aux_sym_parameter_type_list_repeat1, + [104857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6054), 1, - anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, - [104933] = 4, + ACTIONS(6101), 1, + anon_sym_GT, + STATE(3161), 1, + aux_sym__type_args_repeat1, + [104870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(6103), 1, anon_sym_COMMA, - ACTIONS(6056), 1, + ACTIONS(6105), 1, anon_sym_RPAREN, - STATE(3275), 1, - aux_sym__for_loop_parts_repeat2, - [104946] = 4, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [104883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6058), 1, + ACTIONS(6107), 1, anon_sym_COMMA, - ACTIONS(6060), 1, + ACTIONS(6109), 1, anon_sym_RPAREN, - STATE(3075), 1, + STATE(3219), 1, aux_sym_parameter_type_list_repeat1, - [104959] = 4, + [104896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, + ACTIONS(5681), 1, anon_sym_COMMA, - ACTIONS(6062), 1, + ACTIONS(6111), 1, anon_sym_SEMI, - STATE(3309), 1, - aux_sym_initialized_identifier_list_repeat1, - [104972] = 4, + STATE(2947), 1, + aux_sym_inferred_parameters_repeat1, + [104909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6064), 1, + ACTIONS(6113), 1, anon_sym_GT, - STATE(3234), 1, + STATE(3161), 1, aux_sym__type_args_repeat1, - [104985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6066), 1, - anon_sym_RBRACE, - ACTIONS(6068), 1, - anon_sym_COMMA, - STATE(3198), 1, - aux_sym__named_formal_parameters_repeat1, - [104998] = 4, + [104922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6071), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6074), 1, - anon_sym_RBRACK, - STATE(3199), 1, - aux_sym_positional_parameters_repeat1, - [105011] = 4, + ACTIONS(6115), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym__for_loop_parts_repeat2, + [104935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(881), 1, + anon_sym_RBRACE, + ACTIONS(6117), 1, anon_sym_COMMA, - ACTIONS(6078), 1, - anon_sym_RBRACK, - STATE(3241), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [105024] = 4, + [104948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(893), 1, + anon_sym_RBRACE, + ACTIONS(6119), 1, anon_sym_COMMA, - ACTIONS(6080), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [105037] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [104961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(897), 1, + anon_sym_RBRACK, + ACTIONS(6121), 1, anon_sym_COMMA, - ACTIONS(6085), 1, - anon_sym_RPAREN, - STATE(3209), 1, - aux_sym__normal_formal_parameters_repeat1, - [105050] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [104974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 1, + ACTIONS(6123), 1, + sym_identifier, + ACTIONS(6125), 1, anon_sym_LBRACK, - ACTIONS(4198), 1, - anon_sym_DOT, - STATE(778), 1, - sym_unconditional_assignable_selector, - [105063] = 4, + STATE(1029), 1, + sym_cascade_selector, + [104987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6087), 1, + ACTIONS(6127), 1, anon_sym_COMMA, - ACTIONS(6089), 1, + ACTIONS(6129), 1, anon_sym_RPAREN, - STATE(3186), 1, + STATE(3046), 1, aux_sym_parameter_type_list_repeat1, - [105076] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3641), 1, - anon_sym_LBRACK, - ACTIONS(4618), 1, - anon_sym_DOT, - STATE(2029), 1, - sym_unconditional_assignable_selector, - [105089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5804), 1, - anon_sym_COMMA, - ACTIONS(6091), 1, - anon_sym_GT, - STATE(3188), 1, - aux_sym__type_args_repeat1, - [105102] = 4, + [105000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(855), 1, + anon_sym_RBRACK, + ACTIONS(6077), 1, anon_sym_COMMA, - ACTIONS(6096), 1, - anon_sym_RPAREN, - STATE(3207), 1, - aux_sym__normal_formal_parameters_repeat1, - [105115] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [105013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, - anon_sym_COMMA, - ACTIONS(6100), 1, - anon_sym_RPAREN, - STATE(3236), 1, - aux_sym_parameter_type_list_repeat1, - [105128] = 4, + ACTIONS(5390), 1, + anon_sym_LBRACE, + ACTIONS(6131), 1, + anon_sym_EQ_GT, + STATE(1446), 1, + sym_block, + [105026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 1, + ACTIONS(843), 1, + anon_sym_RBRACK, + ACTIONS(6133), 1, anon_sym_COMMA, - ACTIONS(6105), 1, - anon_sym_RPAREN, - STATE(3207), 1, - aux_sym__normal_formal_parameters_repeat1, - [105141] = 4, + STATE(3159), 1, + aux_sym_list_literal_repeat1, + [105039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6107), 1, + ACTIONS(853), 1, anon_sym_RBRACE, - ACTIONS(6109), 1, + ACTIONS(6079), 1, anon_sym_COMMA, - STATE(3210), 1, - aux_sym_enum_body_repeat1, - [105154] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [105052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_RBRACK, - ACTIONS(6112), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [105167] = 4, + ACTIONS(6135), 1, + anon_sym_RPAREN, + STATE(3278), 1, + aux_sym__for_loop_parts_repeat2, + [105065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 1, + ACTIONS(847), 1, anon_sym_RBRACE, - ACTIONS(6114), 1, + ACTIONS(6137), 1, anon_sym_COMMA, - STATE(3020), 1, + STATE(3160), 1, aux_sym_list_literal_repeat1, - [105180] = 4, + [105078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6116), 1, + ACTIONS(6139), 1, sym_identifier, - ACTIONS(6118), 1, + ACTIONS(6141), 1, anon_sym_LBRACK, - STATE(106), 1, + STATE(110), 1, sym_cascade_selector, - [105193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6120), 1, - anon_sym_COMMA, - ACTIONS(6122), 1, - anon_sym_RBRACK, - STATE(3199), 1, - aux_sym_positional_parameters_repeat1, - [105206] = 4, + [105091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(923), 1, anon_sym_RBRACE, - ACTIONS(6126), 1, + ACTIONS(6143), 1, anon_sym_COMMA, - STATE(3198), 1, - aux_sym__named_formal_parameters_repeat1, - [105219] = 4, + STATE(3224), 1, + aux_sym_list_literal_repeat1, + [105104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_RBRACK, - ACTIONS(6128), 1, + ACTIONS(6145), 1, + anon_sym_RBRACE, + ACTIONS(6147), 1, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [105232] = 4, + STATE(3237), 1, + aux_sym_named_parameter_types_repeat1, + [105117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, - anon_sym_COMMA, - ACTIONS(6132), 1, - anon_sym_RPAREN, - STATE(3193), 1, - aux_sym_parameter_type_list_repeat1, - [105245] = 4, + ACTIONS(5271), 1, + anon_sym_LBRACE, + ACTIONS(6150), 1, + anon_sym_EQ_GT, + STATE(2097), 1, + sym_block, + [105130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6116), 1, - sym_identifier, - ACTIONS(6118), 1, - anon_sym_LBRACK, - STATE(107), 1, - sym_cascade_selector, - [105258] = 4, + ACTIONS(5249), 1, + anon_sym_LBRACE, + ACTIONS(6152), 1, + anon_sym_EQ_GT, + STATE(1910), 1, + sym_block, + [105143] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(109), 1, anon_sym_this, - ACTIONS(6134), 1, + ACTIONS(6154), 1, sym_identifier, - STATE(3724), 1, + STATE(3712), 1, sym_this, - [105271] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2583), 1, - sym_formal_parameter_list, - [105284] = 4, + [105156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6136), 1, + ACTIONS(6156), 1, anon_sym_RPAREN, - STATE(3275), 1, + STATE(3149), 1, aux_sym__for_loop_parts_repeat2, - [105297] = 4, + [105169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 1, - anon_sym_LBRACE, - ACTIONS(5899), 1, - anon_sym_EQ_GT, - STATE(999), 1, - sym_block, - [105310] = 4, + ACTIONS(867), 1, + anon_sym_RBRACK, + ACTIONS(6158), 1, + anon_sym_COMMA, + STATE(3275), 1, + aux_sym_list_literal_repeat1, + [105182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6138), 1, + ACTIONS(6089), 1, sym_identifier, - ACTIONS(6140), 1, - anon_sym_LBRACK, - STATE(1022), 1, - sym_cascade_selector, - [105323] = 4, + STATE(3173), 1, + sym_initialized_identifier, + STATE(3693), 1, + sym_initialized_identifier_list, + [105195] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(815), 1, + anon_sym_RBRACK, + ACTIONS(6160), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [105208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, + ACTIONS(6162), 1, anon_sym_COMMA, - ACTIONS(6144), 1, + ACTIONS(6165), 1, anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, - [105336] = 4, + STATE(3245), 1, + aux_sym__argument_list_repeat1, + [105221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, - anon_sym_LBRACE, - ACTIONS(6146), 1, - anon_sym_EQ_GT, - STATE(1744), 1, - sym_block, - [105349] = 4, + ACTIONS(3475), 1, + anon_sym_LBRACK, + ACTIONS(4195), 1, + anon_sym_DOT, + STATE(1835), 1, + sym_unconditional_assignable_selector, + [105234] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2459), 1, + anon_sym_LBRACK, + ACTIONS(4211), 1, + anon_sym_DOT, + STATE(1404), 1, + sym_unconditional_assignable_selector, + [105247] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(6167), 1, + anon_sym_EQ, + STATE(3776), 1, + sym_arguments, + [105260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6148), 1, + ACTIONS(6169), 1, anon_sym_RPAREN, - STATE(3275), 1, + STATE(3250), 1, aux_sym__for_loop_parts_repeat2, - [105362] = 4, + [105273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6150), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6153), 1, - anon_sym_SEMI, - STATE(3227), 1, - aux_sym__for_loop_parts_repeat1, - [105375] = 4, + ACTIONS(6171), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym__for_loop_parts_repeat2, + [105286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, - anon_sym_LBRACE, - ACTIONS(6155), 1, - anon_sym_EQ_GT, - STATE(1746), 1, - sym_block, - [105388] = 4, + ACTIONS(947), 1, + anon_sym_RBRACE, + ACTIONS(6173), 1, + anon_sym_COMMA, + STATE(3299), 1, + aux_sym_list_literal_repeat1, + [105299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6175), 3, + anon_sym_void, + anon_sym_Function, + sym_identifier, + [105308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(6177), 1, anon_sym_COMMA, - ACTIONS(6157), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [105401] = 4, + ACTIONS(6180), 1, + anon_sym_SEMI, + STATE(3253), 1, + aux_sym_initialized_identifier_list_repeat1, + [105321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6159), 1, + ACTIONS(5687), 1, anon_sym_COMMA, - ACTIONS(6161), 1, - anon_sym_RPAREN, - STATE(3224), 1, - aux_sym_parameter_type_list_repeat1, - [105414] = 4, + ACTIONS(6182), 1, + anon_sym_SEMI, + STATE(3152), 1, + aux_sym_initialized_identifier_list_repeat1, + [105334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - ACTIONS(6163), 1, - anon_sym_EQ, - STATE(3557), 1, - sym_arguments, - [105427] = 4, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(3827), 1, + sym_type_arguments, + [105347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6165), 1, + ACTIONS(6184), 1, anon_sym_GT, - STATE(3244), 1, + STATE(3161), 1, aux_sym__type_args_repeat1, - [105440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6167), 3, - anon_sym_on, - anon_sym_catch, - anon_sym_finally, - [105449] = 4, + [105360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6169), 1, + ACTIONS(6186), 1, anon_sym_GT, - STATE(3264), 1, + STATE(3161), 1, aux_sym__type_args_repeat1, - [105462] = 4, + [105373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(885), 1, - anon_sym_RBRACE, - ACTIONS(6171), 1, + ACTIONS(4890), 1, + anon_sym_EQ, + ACTIONS(4888), 2, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [105475] = 4, + anon_sym_SEMI, + [105384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6173), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6175), 1, + ACTIONS(6188), 1, anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, - [105488] = 4, + STATE(3260), 1, + aux_sym__for_loop_parts_repeat2, + [105397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, - anon_sym_SEMI, - ACTIONS(6022), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - STATE(3252), 1, - aux_sym_static_final_declaration_list_repeat1, - [105501] = 4, + ACTIONS(6190), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym__for_loop_parts_repeat2, + [105410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6177), 1, + ACTIONS(889), 1, + anon_sym_RBRACE, + ACTIONS(6192), 1, anon_sym_COMMA, - ACTIONS(6179), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_parameter_type_list_repeat1, - [105514] = 4, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [105423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 1, - anon_sym_COMMA, - ACTIONS(6181), 1, + ACTIONS(945), 1, anon_sym_RBRACK, - STATE(3214), 1, - aux_sym_positional_parameters_repeat1, - [105527] = 4, + ACTIONS(6194), 1, + anon_sym_COMMA, + STATE(3305), 1, + aux_sym_list_literal_repeat1, + [105436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(6123), 1, + sym_identifier, + ACTIONS(6125), 1, anon_sym_LBRACK, - ACTIONS(4146), 1, + STATE(1053), 1, + sym_cascade_selector, + [105449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3481), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, anon_sym_DOT, - STATE(1836), 1, + STATE(1876), 1, sym_unconditional_assignable_selector, - [105540] = 4, + [105462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(930), 1, - anon_sym_RBRACK, - ACTIONS(6183), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [105553] = 4, + ACTIONS(6196), 1, + anon_sym_GT, + STATE(3306), 1, + aux_sym__type_args_repeat1, + [105475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_DOT, + STATE(794), 1, + sym_unconditional_assignable_selector, + [105488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6185), 1, + ACTIONS(6198), 1, anon_sym_GT, - STATE(3229), 1, + STATE(3222), 1, aux_sym__type_args_repeat1, - [105566] = 3, + [105501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4808), 1, - anon_sym_EQ, - ACTIONS(4806), 2, - anon_sym_COMMA, + ACTIONS(6200), 3, + anon_sym_show, + anon_sym_hide, anon_sym_SEMI, - [105577] = 4, + [105510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(6202), 1, anon_sym_COMMA, - ACTIONS(6187), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [105590] = 4, + ACTIONS(6205), 1, + anon_sym_RPAREN, + STATE(3269), 1, + aux_sym__normal_formal_parameters_repeat1, + [105523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(6207), 1, anon_sym_COMMA, - ACTIONS(6189), 1, + ACTIONS(6210), 1, anon_sym_RPAREN, - STATE(3190), 1, - aux_sym__for_loop_parts_repeat2, - [105603] = 4, + STATE(3269), 1, + aux_sym__normal_formal_parameters_repeat1, + [105536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(6212), 1, + anon_sym_RBRACE, + ACTIONS(6214), 1, anon_sym_COMMA, - ACTIONS(6191), 1, - anon_sym_GT, - STATE(3254), 1, - aux_sym__type_args_repeat1, - [105616] = 4, + STATE(3332), 1, + aux_sym_named_parameter_types_repeat1, + [105549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6193), 1, + ACTIONS(6216), 1, anon_sym_COMMA, - ACTIONS(6195), 1, - anon_sym_RPAREN, - STATE(3256), 1, + ACTIONS(6218), 1, + anon_sym_RBRACK, + STATE(3342), 1, aux_sym_parameter_type_list_repeat1, - [105629] = 4, + [105562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, - anon_sym_LBRACE, - ACTIONS(6197), 1, - anon_sym_EQ_GT, - STATE(1404), 1, - sym_block, - [105642] = 4, + ACTIONS(5889), 1, + anon_sym_COMMA, + ACTIONS(6220), 1, + anon_sym_GT, + STATE(3123), 1, + aux_sym__type_args_repeat1, + [105575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6199), 1, + ACTIONS(6222), 1, anon_sym_COMMA, - ACTIONS(6201), 1, + ACTIONS(6224), 1, + anon_sym_RPAREN, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [105588] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(843), 1, anon_sym_RBRACK, - STATE(3160), 1, + ACTIONS(6133), 1, + anon_sym_COMMA, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [105655] = 4, + [105601] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6139), 1, + sym_identifier, + ACTIONS(6141), 1, + anon_sym_LBRACK, + STATE(102), 1, + sym_cascade_selector, + [105614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2461), 1, + anon_sym_LPAREN, + ACTIONS(6226), 1, + anon_sym_DOT, + STATE(3733), 1, + sym_arguments, + [105627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6203), 1, + ACTIONS(6228), 1, anon_sym_RPAREN, - STATE(3194), 1, + STATE(3300), 1, aux_sym__for_loop_parts_repeat2, - [105668] = 2, + [105640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5706), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [105677] = 4, + ACTIONS(5877), 1, + sym_identifier, + ACTIONS(5879), 1, + anon_sym_LBRACK, + STATE(1880), 1, + sym_cascade_selector, + [105653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, - anon_sym_SEMI, - ACTIONS(6205), 1, + ACTIONS(6230), 1, anon_sym_COMMA, - STATE(3252), 1, - aux_sym_static_final_declaration_list_repeat1, - [105690] = 4, + ACTIONS(6232), 1, + anon_sym_RPAREN, + STATE(3274), 1, + aux_sym_parameter_type_list_repeat1, + [105666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 1, - anon_sym_SEMI, - ACTIONS(6208), 1, + ACTIONS(907), 1, + anon_sym_RBRACE, + ACTIONS(6081), 1, anon_sym_COMMA, - STATE(3311), 1, - aux_sym_initializers_repeat1, - [105703] = 4, + STATE(3372), 1, + aux_sym_list_literal_repeat1, + [105679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(815), 1, + anon_sym_RBRACK, + ACTIONS(6160), 1, anon_sym_COMMA, - ACTIONS(6210), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [105716] = 4, + STATE(3369), 1, + aux_sym_list_literal_repeat1, + [105692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(6234), 1, anon_sym_COMMA, - ACTIONS(6212), 1, - anon_sym_GT, - STATE(3201), 1, - aux_sym__type_args_repeat1, - [105729] = 4, + ACTIONS(6236), 1, + anon_sym_RPAREN, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [105705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6238), 1, anon_sym_COMMA, - ACTIONS(6216), 1, + ACTIONS(6240), 1, anon_sym_RPAREN, - STATE(3075), 1, + STATE(3283), 1, aux_sym_parameter_type_list_repeat1, - [105742] = 4, + [105718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6218), 1, + ACTIONS(6242), 1, anon_sym_GT, - STATE(3264), 1, + STATE(3161), 1, aux_sym__type_args_repeat1, - [105755] = 3, + [105731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - anon_sym_EQ, - ACTIONS(6220), 2, - anon_sym_COMMA, + ACTIONS(949), 1, anon_sym_RBRACK, - [105766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(904), 1, - anon_sym_RBRACE, - ACTIONS(6224), 1, + ACTIONS(6244), 1, anon_sym_COMMA, - STATE(3020), 1, + STATE(3122), 1, aux_sym_list_literal_repeat1, - [105779] = 4, + [105744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 1, + ACTIONS(831), 1, + anon_sym_RBRACK, + ACTIONS(6246), 1, anon_sym_COMMA, - ACTIONS(6229), 1, - anon_sym_RPAREN, - STATE(3268), 1, - aux_sym__argument_list_repeat1, - [105792] = 4, + STATE(3244), 1, + aux_sym_list_literal_repeat1, + [105757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6231), 1, + ACTIONS(5790), 3, anon_sym_COMMA, - ACTIONS(6233), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, - [105805] = 4, + [105766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6235), 1, - sym_identifier, - ACTIONS(6237), 1, - anon_sym_LBRACK, - STATE(1032), 1, - sym_cascade_selector, - [105818] = 2, + ACTIONS(4455), 1, + anon_sym_LPAREN, + STATE(2625), 1, + sym__strict_formal_parameter_list, + STATE(2671), 1, + sym_formal_parameter_list, + [105779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 3, - anon_sym_void, + ACTIONS(3245), 1, anon_sym_Function, - sym_identifier, - [105827] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6241), 1, + ACTIONS(1224), 2, anon_sym_COMMA, - ACTIONS(6244), 1, anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [105840] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(4190), 1, - anon_sym_DOT, - STATE(1909), 1, - sym_unconditional_assignable_selector, - [105853] = 4, + [105790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(916), 1, + ACTIONS(931), 1, anon_sym_RBRACE, - ACTIONS(6246), 1, + ACTIONS(6248), 1, anon_sym_COMMA, - STATE(3020), 1, + STATE(3187), 1, aux_sym_list_literal_repeat1, - [105866] = 4, + [105803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, - anon_sym_COMMA, - ACTIONS(6251), 1, - anon_sym_RPAREN, - STATE(3267), 1, - aux_sym__argument_list_repeat2, - [105879] = 4, + ACTIONS(5372), 1, + anon_sym_LBRACE, + ACTIONS(6250), 1, + anon_sym_EQ_GT, + STATE(1776), 1, + sym_block, + [105816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6253), 1, + ACTIONS(921), 1, + anon_sym_RBRACK, + ACTIONS(6252), 1, anon_sym_COMMA, - ACTIONS(6256), 1, - anon_sym_RPAREN, - STATE(3184), 1, - aux_sym__argument_list_repeat1, - [105892] = 4, + STATE(3163), 1, + aux_sym_list_literal_repeat1, + [105829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(4146), 1, + ACTIONS(4211), 1, anon_sym_DOT, - STATE(1877), 1, + STATE(1383), 1, sym_unconditional_assignable_selector, - [105905] = 4, + [105842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5678), 1, - anon_sym_RPAREN, + ACTIONS(6254), 1, + anon_sym_COMMA, + ACTIONS(6256), 1, + anon_sym_GT, + STATE(3164), 1, + aux_sym_type_parameters_repeat1, + [105855] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(825), 1, + anon_sym_RBRACE, ACTIONS(6258), 1, anon_sym_COMMA, - STATE(3154), 1, - aux_sym__argument_list_repeat1, - [105918] = 4, + STATE(3207), 1, + aux_sym_list_literal_repeat1, + [105868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_DOT, - STATE(292), 1, - sym_unconditional_assignable_selector, - [105931] = 4, + ACTIONS(6260), 1, + sym_identifier, + STATE(1100), 1, + sym_static_final_declaration, + STATE(1180), 1, + sym_static_final_declaration_list, + [105881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6261), 1, + ACTIONS(6263), 1, anon_sym_GT, - STATE(3141), 1, + STATE(3218), 1, aux_sym__type_args_repeat1, - [105944] = 4, + [105894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6263), 1, + ACTIONS(943), 1, anon_sym_RBRACE, ACTIONS(6265), 1, anon_sym_COMMA, - STATE(3175), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [105957] = 4, + [105907] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(6267), 1, anon_sym_COMMA, - ACTIONS(6269), 1, + ACTIONS(6270), 1, + anon_sym_RPAREN, + STATE(3300), 1, + aux_sym__for_loop_parts_repeat2, + [105920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 1, anon_sym_RBRACK, - STATE(3150), 1, + ACTIONS(6272), 1, + anon_sym_COMMA, + STATE(3229), 1, aux_sym_list_literal_repeat1, - [105970] = 4, + [105933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6271), 1, + ACTIONS(5947), 1, anon_sym_COMMA, ACTIONS(6274), 1, anon_sym_RPAREN, - STATE(3275), 1, + STATE(3147), 1, aux_sym__for_loop_parts_repeat2, - [105983] = 4, - ACTIONS(3), 1, + [105946] = 4, + ACTIONS(5547), 1, + aux_sym__sub_string_test_token1, + ACTIONS(5549), 1, sym_comment, - ACTIONS(5919), 1, - anon_sym_COMMA, ACTIONS(6276), 1, - anon_sym_RBRACE, - STATE(3210), 1, - aux_sym_enum_body_repeat1, - [105996] = 4, + sym_identifier, + ACTIONS(6278), 1, + anon_sym_LBRACE, + [105959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 1, - anon_sym_LBRACK, - ACTIONS(4140), 1, - anon_sym_DOT, - STATE(1383), 1, - sym_unconditional_assignable_selector, - [106009] = 4, + ACTIONS(847), 1, + anon_sym_RBRACE, + ACTIONS(6137), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [105972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(3769), 1, - sym_type_arguments, - [106022] = 2, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(6280), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [105985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 3, + ACTIONS(5889), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - [106031] = 4, + ACTIONS(6282), 1, + anon_sym_GT, + STATE(3161), 1, + aux_sym__type_args_repeat1, + [105998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 1, + ACTIONS(6284), 1, anon_sym_COMMA, - ACTIONS(6281), 1, + ACTIONS(6286), 1, anon_sym_RPAREN, - STATE(3320), 1, - aux_sym__argument_list_repeat3, - [106044] = 4, - ACTIONS(3), 1, + STATE(3368), 1, + aux_sym_parameter_type_list_repeat1, + [106011] = 4, + ACTIONS(5549), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - ACTIONS(6283), 1, - anon_sym_DOT, - STATE(3518), 1, - sym_arguments, - [106057] = 4, + ACTIONS(5638), 1, + aux_sym__sub_string_test_token1, + ACTIONS(6288), 1, + sym_identifier, + ACTIONS(6290), 1, + anon_sym_LBRACE, + [106024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5975), 1, + ACTIONS(6292), 1, sym_identifier, - ACTIONS(5977), 1, + ACTIONS(6294), 1, anon_sym_LBRACK, - STATE(1013), 1, + STATE(1045), 1, sym_cascade_selector, - [106070] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(3781), 1, - sym_type_arguments, - [106083] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(3784), 1, - sym_type_arguments, - [106096] = 4, + [106037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, + ACTIONS(4432), 1, anon_sym_LT, - STATE(1911), 1, + STATE(2492), 1, sym__type_args, - STATE(3786), 1, + STATE(3670), 1, sym_type_arguments, - [106109] = 4, + [106050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(3787), 1, - sym_type_arguments, - [106122] = 4, + ACTIONS(943), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_COMMA, + STATE(3320), 1, + aux_sym_list_literal_repeat1, + [106063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(6280), 1, anon_sym_COMMA, - ACTIONS(6285), 1, - anon_sym_RPAREN, - STATE(3275), 1, - aux_sym__for_loop_parts_repeat2, - [106135] = 4, + STATE(3321), 1, + aux_sym_list_literal_repeat1, + [106076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 1, + ACTIONS(6296), 1, anon_sym_COMMA, - ACTIONS(6289), 1, + ACTIONS(6298), 1, anon_sym_RPAREN, - STATE(3145), 1, + STATE(3323), 1, aux_sym_parameter_type_list_repeat1, - [106148] = 4, + [106089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(3788), 1, - sym_type_arguments, - [106161] = 4, - ACTIONS(5462), 1, - sym_comment, - ACTIONS(5506), 1, - aux_sym__sub_string_test_token1, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, + ACTIONS(5341), 1, anon_sym_LBRACE, - [106174] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(3789), 1, - sym_type_arguments, - [106187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - ACTIONS(6295), 1, - sym_identifier, - STATE(1200), 1, - sym__semicolon, - [106200] = 4, + ACTIONS(6049), 1, + anon_sym_EQ_GT, + STATE(1032), 1, + sym_block, + [106102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - ACTIONS(6297), 1, - sym_identifier, - STATE(1201), 1, - sym__semicolon, - [106213] = 4, + ACTIONS(849), 1, + anon_sym_RBRACE, + ACTIONS(6300), 1, + anon_sym_COMMA, + STATE(3232), 1, + aux_sym_list_literal_repeat1, + [106115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6126), 1, - anon_sym_COMMA, - ACTIONS(6299), 1, - anon_sym_RBRACE, - STATE(3215), 1, - aux_sym__named_formal_parameters_repeat1, - [106226] = 4, + ACTIONS(5390), 1, + anon_sym_LBRACE, + ACTIONS(6302), 1, + anon_sym_EQ_GT, + STATE(1446), 1, + sym_block, + [106128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6301), 1, - anon_sym_COMMA, - ACTIONS(6303), 1, - anon_sym_RBRACK, - STATE(3211), 1, - aux_sym_list_literal_repeat1, - [106239] = 4, + ACTIONS(3713), 1, + anon_sym_LBRACK, + ACTIONS(4668), 1, + anon_sym_DOT, + STATE(2073), 1, + sym_unconditional_assignable_selector, + [106141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6305), 1, + ACTIONS(6304), 1, anon_sym_RPAREN, - STATE(3275), 1, + STATE(3300), 1, aux_sym__for_loop_parts_repeat2, - [106252] = 4, + [106154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 1, - anon_sym_LBRACE, - ACTIONS(6307), 1, - anon_sym_EQ_GT, - STATE(2095), 1, - sym_block, - [106265] = 4, + ACTIONS(5889), 1, + anon_sym_COMMA, + ACTIONS(6306), 1, + anon_sym_GT, + STATE(3285), 1, + aux_sym__type_args_repeat1, + [106167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - ACTIONS(6309), 1, - anon_sym_EQ, - STATE(3557), 1, - sym_arguments, - [106278] = 4, + ACTIONS(939), 1, + anon_sym_RBRACE, + ACTIONS(6308), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [106180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6311), 1, - anon_sym_RBRACE, - ACTIONS(6313), 1, + ACTIONS(937), 1, + anon_sym_RBRACK, + ACTIONS(6310), 1, anon_sym_COMMA, - STATE(3127), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [106291] = 4, + [106193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6315), 1, + ACTIONS(6312), 1, anon_sym_GT, - STATE(3302), 1, + STATE(3161), 1, aux_sym__type_args_repeat1, - [106304] = 4, + [106206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 1, + ACTIONS(6314), 1, anon_sym_COMMA, - ACTIONS(6319), 1, + ACTIONS(6316), 1, anon_sym_RPAREN, - STATE(3303), 1, + STATE(3046), 1, aux_sym_parameter_type_list_repeat1, - [106317] = 4, + [106219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, + ACTIONS(6318), 1, anon_sym_COMMA, - ACTIONS(6321), 1, - anon_sym_GT, - STATE(3264), 1, - aux_sym__type_args_repeat1, - [106330] = 4, + ACTIONS(6320), 1, + anon_sym_RPAREN, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [106232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5883), 1, + anon_sym_COMMA, + ACTIONS(6322), 1, + anon_sym_RBRACE, + STATE(3118), 1, + aux_sym_enum_body_repeat1, + [106245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6323), 1, + ACTIONS(6324), 1, anon_sym_COMMA, - ACTIONS(6325), 1, + ACTIONS(6326), 1, anon_sym_RPAREN, - STATE(3075), 1, + STATE(3046), 1, aux_sym_parameter_type_list_repeat1, - [106343] = 4, + [106258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, - anon_sym_LT, - STATE(1911), 1, - sym__type_args, - STATE(3790), 1, - sym_type_arguments, - [106356] = 4, - ACTIONS(5462), 1, - sym_comment, - ACTIONS(5541), 1, - aux_sym__sub_string_test_token1, - ACTIONS(6327), 1, - sym_identifier, - ACTIONS(6329), 1, - anon_sym_LBRACE, - [106369] = 4, + ACTIONS(6328), 1, + anon_sym_COMMA, + ACTIONS(6330), 1, + anon_sym_RPAREN, + STATE(3326), 1, + aux_sym_parameter_type_list_repeat1, + [106271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6331), 1, - anon_sym_RBRACE, - ACTIONS(6333), 1, + ACTIONS(905), 1, + anon_sym_RBRACK, + ACTIONS(6332), 1, anon_sym_COMMA, - STATE(3266), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [106382] = 4, + [106284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, - anon_sym_LBRACE, - ACTIONS(6335), 1, - anon_sym_EQ_GT, - STATE(1744), 1, - sym_block, - [106395] = 4, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(3839), 1, + sym_type_arguments, + [106297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 1, + ACTIONS(895), 1, anon_sym_RBRACE, - ACTIONS(6339), 1, + ACTIONS(6334), 1, anon_sym_COMMA, - STATE(3212), 1, + STATE(3113), 1, aux_sym_list_literal_repeat1, - [106408] = 4, + [106310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 1, + ACTIONS(5889), 1, anon_sym_COMMA, - ACTIONS(6344), 1, - anon_sym_SEMI, - STATE(3309), 1, - aux_sym_initialized_identifier_list_repeat1, - [106421] = 4, + ACTIONS(6336), 1, + anon_sym_GT, + STATE(3161), 1, + aux_sym__type_args_repeat1, + [106323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, + ACTIONS(6214), 1, anon_sym_COMMA, - ACTIONS(6346), 1, - anon_sym_SEMI, - STATE(3116), 1, - aux_sym_initialized_identifier_list_repeat1, - [106434] = 4, + ACTIONS(6338), 1, + anon_sym_RBRACE, + STATE(3237), 1, + aux_sym_named_parameter_types_repeat1, + [106336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 1, - anon_sym_SEMI, - ACTIONS(6208), 1, - anon_sym_COMMA, - STATE(3313), 1, - aux_sym_initializers_repeat1, - [106447] = 4, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(3842), 1, + sym_type_arguments, + [106349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6348), 1, + ACTIONS(6053), 1, anon_sym_COMMA, - ACTIONS(6350), 1, + ACTIONS(6340), 1, anon_sym_RBRACK, - STATE(3216), 1, - aux_sym_list_literal_repeat1, - [106460] = 4, + STATE(3354), 1, + aux_sym_positional_parameters_repeat1, + [106362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_SEMI, - ACTIONS(6352), 1, - anon_sym_COMMA, - STATE(3313), 1, - aux_sym_initializers_repeat1, - [106473] = 4, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(3844), 1, + sym_type_arguments, + [106375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6355), 1, + ACTIONS(6043), 1, anon_sym_COMMA, - ACTIONS(6357), 1, - anon_sym_RPAREN, - STATE(3075), 1, - aux_sym_parameter_type_list_repeat1, - [106486] = 4, + ACTIONS(6342), 1, + anon_sym_RBRACE, + STATE(3338), 1, + aux_sym__named_formal_parameters_repeat1, + [106388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_DOT, - STATE(297), 1, - sym_unconditional_assignable_selector, - [106499] = 4, + ACTIONS(5173), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, + anon_sym_EQ_GT, + STATE(1399), 1, + sym_block, + [106401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(6346), 1, + anon_sym_RBRACE, + ACTIONS(6348), 1, anon_sym_COMMA, - ACTIONS(6359), 1, - anon_sym_GT, - STATE(3080), 1, - aux_sym_type_parameters_repeat1, - [106512] = 4, + STATE(3338), 1, + aux_sym__named_formal_parameters_repeat1, + [106414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 1, - sym_identifier, - STATE(3181), 1, - sym_static_final_declaration, - STATE(3566), 1, - sym_static_final_declaration_list, - [106525] = 4, + ACTIONS(6351), 3, + anon_sym_on, + anon_sym_catch, + anon_sym_finally, + [106423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6007), 1, - sym_identifier, - STATE(3096), 1, - sym_initialized_identifier, - STATE(3583), 1, - sym_initialized_identifier_list, - [106538] = 4, + ACTIONS(5889), 1, + anon_sym_COMMA, + ACTIONS(6353), 1, + anon_sym_GT, + STATE(3364), 1, + aux_sym__type_args_repeat1, + [106436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, - sym_identifier, - STATE(462), 1, - sym_label, - STATE(3260), 1, - sym_named_argument, - [106551] = 4, + ACTIONS(4197), 1, + anon_sym_LBRACK, + ACTIONS(4205), 1, + anon_sym_DOT, + STATE(260), 1, + sym_unconditional_assignable_selector, + [106449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6229), 1, - anon_sym_RPAREN, - ACTIONS(6363), 1, + ACTIONS(6216), 1, anon_sym_COMMA, - STATE(3320), 1, - aux_sym__argument_list_repeat3, - [106564] = 4, + ACTIONS(6355), 1, + anon_sym_RBRACK, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [106462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5861), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6366), 1, + ACTIONS(6357), 1, anon_sym_RPAREN, - STATE(3226), 1, + STATE(3202), 1, aux_sym__for_loop_parts_repeat2, - [106577] = 4, + [106475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym__strict_formal_parameter_list, - STATE(2937), 1, - sym_formal_parameter_list, - [106590] = 4, + ACTIONS(5271), 1, + anon_sym_LBRACE, + ACTIONS(6359), 1, + anon_sym_EQ_GT, + STATE(2097), 1, + sym_block, + [106488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(936), 1, + ACTIONS(5734), 3, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(6368), 1, + anon_sym_RPAREN, + [106497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6361), 1, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_list_literal_repeat1, - [106603] = 3, + ACTIONS(6363), 1, + anon_sym_RPAREN, + STATE(3324), 1, + aux_sym_parameter_type_list_repeat1, + [106510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5448), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym_block, - [106613] = 3, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(3845), 1, + sym_type_arguments, + [106523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5271), 1, - anon_sym_LPAREN, - STATE(3099), 1, - sym_parameter_type_list, - [106623] = 3, + ACTIONS(109), 1, + anon_sym_this, + ACTIONS(6365), 1, + sym_identifier, + STATE(3712), 1, + sym_this, + [106536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(3351), 1, - sym_parenthesized_expression, - [106633] = 3, + ACTIONS(6367), 1, + sym_identifier, + ACTIONS(6369), 1, + anon_sym_LBRACK, + STATE(1066), 1, + sym_cascade_selector, + [106549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(55), 1, - sym_parenthesized_expression, - [106643] = 3, + ACTIONS(6371), 1, + anon_sym_COMMA, + ACTIONS(6374), 1, + anon_sym_RPAREN, + STATE(3270), 1, + aux_sym__normal_formal_parameters_repeat1, + [106562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(1402), 1, + ACTIONS(6376), 1, + anon_sym_EQ, + STATE(3776), 1, sym_arguments, - [106653] = 3, + [106575] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6292), 1, + sym_identifier, + ACTIONS(6294), 1, + anon_sym_LBRACK, + STATE(1030), 1, + sym_cascade_selector, + [106588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6372), 1, + ACTIONS(5947), 1, anon_sym_COMMA, - ACTIONS(6374), 1, + ACTIONS(6378), 1, anon_sym_RPAREN, - [106663] = 3, + STATE(3223), 1, + aux_sym__for_loop_parts_repeat2, + [106601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(3233), 1, - sym_block, - [106673] = 3, + ACTIONS(6380), 1, + anon_sym_COMMA, + ACTIONS(6383), 1, + anon_sym_RBRACK, + STATE(3354), 1, + aux_sym_positional_parameters_repeat1, + [106614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(57), 1, - sym_parenthesized_expression, - [106683] = 3, + ACTIONS(6385), 1, + anon_sym_COMMA, + ACTIONS(6388), 1, + anon_sym_SEMI, + STATE(3355), 1, + aux_sym__for_loop_parts_repeat1, + [106627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6376), 1, - sym_identifier, - STATE(2404), 1, - sym_scoped_identifier, - [106693] = 3, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(3846), 1, + sym_type_arguments, + [106640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 1, - anon_sym_LPAREN, - STATE(263), 1, - sym_parameter_type_list, - [106703] = 3, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(3847), 1, + sym_type_arguments, + [106653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6378), 1, - sym_identifier, - STATE(1107), 1, - sym_mixin_application_class, - [106713] = 2, + ACTIONS(3752), 1, + anon_sym_LBRACK, + ACTIONS(4682), 1, + anon_sym_DOT, + STATE(2110), 1, + sym_unconditional_assignable_selector, + [106666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 2, - anon_sym_this, - sym_identifier, - [106721] = 3, + ACTIONS(4432), 1, + anon_sym_LT, + STATE(2492), 1, + sym__type_args, + STATE(3848), 1, + sym_type_arguments, + [106679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_LPAREN, - STATE(1979), 1, - sym_arguments, - [106731] = 3, + ACTIONS(891), 1, + anon_sym_RBRACK, + ACTIONS(6390), 1, + anon_sym_COMMA, + STATE(3328), 1, + aux_sym_list_literal_repeat1, + [106692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1203), 1, - sym__semicolon, - [106741] = 3, + ACTIONS(889), 1, + anon_sym_RBRACE, + ACTIONS(6192), 1, + anon_sym_COMMA, + STATE(3330), 1, + aux_sym_list_literal_repeat1, + [106705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1113), 1, - sym__semicolon, - [106751] = 3, + ACTIONS(5227), 1, + anon_sym_LBRACE, + ACTIONS(6392), 1, + anon_sym_EQ_GT, + STATE(2132), 1, + sym_block, + [106718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, + ACTIONS(5681), 1, + anon_sym_COMMA, + ACTIONS(6394), 1, anon_sym_SEMI, - STATE(1190), 1, - sym__semicolon, - [106761] = 3, + STATE(3221), 1, + aux_sym_inferred_parameters_repeat1, + [106731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 1, - sym_increment_operator, - STATE(1873), 1, - sym_postfix_operator, - [106771] = 3, + ACTIONS(5889), 1, + anon_sym_COMMA, + ACTIONS(6396), 1, + anon_sym_GT, + STATE(3161), 1, + aux_sym__type_args_repeat1, + [106744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(20), 1, - sym_parenthesized_expression, - [106781] = 3, + ACTIONS(881), 1, + anon_sym_RBRACE, + ACTIONS(6117), 1, + anon_sym_COMMA, + STATE(3182), 1, + aux_sym_list_literal_repeat1, + [106757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(181), 1, - sym_parenthesized_expression, - [106791] = 3, + ACTIONS(6398), 1, + anon_sym_COMMA, + ACTIONS(6400), 1, + anon_sym_RPAREN, + STATE(3367), 1, + aux_sym_parameter_type_list_repeat1, + [106770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, - anon_sym_this, - ACTIONS(6382), 1, - sym_identifier, - [106801] = 3, + ACTIONS(6402), 1, + anon_sym_COMMA, + ACTIONS(6404), 1, + anon_sym_RPAREN, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [106783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6385), 1, + ACTIONS(6406), 1, anon_sym_COMMA, - ACTIONS(6387), 1, + ACTIONS(6408), 1, anon_sym_RPAREN, - [106811] = 3, + STATE(3046), 1, + aux_sym_parameter_type_list_repeat1, + [106796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2373), 1, - sym_arguments, - [106821] = 3, + ACTIONS(819), 1, + anon_sym_RBRACK, + ACTIONS(6410), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [106809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 1, - anon_sym_LPAREN, - STATE(1906), 1, - sym_arguments, - [106831] = 3, + ACTIONS(865), 1, + anon_sym_RBRACK, + ACTIONS(5983), 1, + anon_sym_COMMA, + STATE(3183), 1, + aux_sym_list_literal_repeat1, + [106822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 1, - sym_increment_operator, - STATE(2251), 1, - sym_postfix_operator, - [106841] = 3, + ACTIONS(5889), 1, + anon_sym_COMMA, + ACTIONS(6412), 1, + anon_sym_GT, + STATE(3161), 1, + aux_sym__type_args_repeat1, + [106835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 1, - anon_sym_LPAREN, - STATE(1438), 1, - sym_arguments, - [106851] = 3, + ACTIONS(817), 1, + anon_sym_RBRACE, + ACTIONS(6414), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [106848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 1, - anon_sym_LPAREN, - STATE(1437), 1, - sym_arguments, - [106861] = 3, + ACTIONS(5889), 1, + anon_sym_COMMA, + ACTIONS(6416), 1, + anon_sym_GT, + STATE(3322), 1, + aux_sym__type_args_repeat1, + [106861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4043), 1, - anon_sym_LPAREN, - STATE(2214), 1, - sym_parameter_type_list, - [106871] = 3, + ACTIONS(6254), 1, + anon_sym_COMMA, + ACTIONS(6418), 1, + anon_sym_GT, + STATE(3295), 1, + aux_sym_type_parameters_repeat1, + [106874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6389), 1, - anon_sym_LBRACE, - STATE(1226), 1, - sym_switch_block, - [106881] = 3, + ACTIONS(5889), 1, + anon_sym_COMMA, + ACTIONS(6420), 1, + anon_sym_GT, + STATE(3331), 1, + aux_sym__type_args_repeat1, + [106887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1229), 1, - sym__semicolon, - [106891] = 3, + ACTIONS(4197), 1, + anon_sym_LBRACK, + ACTIONS(4205), 1, + anon_sym_DOT, + STATE(266), 1, + sym_unconditional_assignable_selector, + [106900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6391), 1, + ACTIONS(891), 1, + anon_sym_RBRACK, + ACTIONS(6390), 1, anon_sym_COMMA, - ACTIONS(6393), 1, - anon_sym_RPAREN, - [106901] = 3, + STATE(3113), 1, + aux_sym_list_literal_repeat1, + [106913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1231), 1, - sym__semicolon, - [106911] = 3, + ACTIONS(2428), 1, + anon_sym_LPAREN, + STATE(1966), 1, + sym_arguments, + [106923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6395), 1, + ACTIONS(6422), 1, anon_sym_COMMA, - ACTIONS(6397), 1, + ACTIONS(6424), 1, anon_sym_RPAREN, - [106921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1192), 1, - sym__semicolon, - [106931] = 3, + [106933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6399), 1, - sym_identifier, - STATE(2916), 1, - sym_scoped_identifier, - [106941] = 3, + ACTIONS(6426), 1, + anon_sym_COMMA, + ACTIONS(6428), 1, + anon_sym_RPAREN, + [106943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, + ACTIONS(6430), 2, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1224), 1, - sym__semicolon, [106951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6401), 1, - anon_sym_LBRACE, - STATE(1120), 1, - sym_enum_body, + ACTIONS(6432), 1, + anon_sym_COMMA, + ACTIONS(6434), 1, + anon_sym_RPAREN, [106961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, + ACTIONS(2428), 1, anon_sym_LPAREN, - STATE(873), 1, - sym_parameter_type_list, + STATE(1990), 1, + sym_arguments, [106971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, - anon_sym_LBRACE, - STATE(1404), 1, - sym_block, + ACTIONS(3754), 1, + anon_sym_LPAREN, + STATE(3024), 1, + sym_arguments, [106981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 1, - sym_identifier, - STATE(1121), 1, - sym_mixin_application_class, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(1148), 1, + sym_enum_body, [106991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - STATE(1981), 1, - sym_arguments, + ACTIONS(6438), 1, + sym_identifier, + STATE(1147), 1, + sym_mixin_application_class, [107001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - anon_sym_LPAREN, - STATE(233), 1, - sym_arguments, - [107011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, + ACTIONS(5390), 1, anon_sym_LBRACE, - STATE(1216), 1, + STATE(1124), 1, sym_block, - [107021] = 3, + [107011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 1, + ACTIONS(5271), 1, anon_sym_LBRACE, - STATE(1092), 1, + STATE(2097), 1, sym_block, - [107031] = 3, + [107021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4469), 1, - sym_increment_operator, - STATE(843), 1, - sym_postfix_operator, - [107041] = 3, + ACTIONS(4124), 1, + anon_sym_LPAREN, + STATE(2241), 1, + sym_parameter_type_list, + [107031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - sym_identifier, - STATE(1062), 1, - sym_dotted_identifier_list, - [107051] = 3, + ACTIONS(6180), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [107039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6405), 1, - sym_identifier, - STATE(3395), 1, - sym_initialized_identifier, - [107061] = 3, + ACTIONS(6440), 1, + anon_sym_COMMA, + ACTIONS(6442), 1, + anon_sym_RPAREN, + [107049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 1, + ACTIONS(4539), 1, sym_increment_operator, - STATE(1415), 1, + STATE(1460), 1, sym_postfix_operator, - [107071] = 3, + [107059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(999), 1, - sym_block, - [107081] = 3, + ACTIONS(6444), 1, + anon_sym_COMMA, + ACTIONS(6446), 1, + anon_sym_RPAREN, + [107069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1455), 1, - sym_block, - [107091] = 3, + ACTIONS(4499), 1, + sym_increment_operator, + STATE(2135), 1, + sym_postfix_operator, + [107079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(5762), 1, anon_sym_LPAREN, - STATE(1945), 1, + STATE(1371), 1, sym_arguments, - [107101] = 3, + [107089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4114), 1, anon_sym_LPAREN, - STATE(1878), 1, + STATE(2229), 1, sym_parameter_type_list, - [107111] = 3, + [107099] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1169), 1, + STATE(379), 1, sym__semicolon, - [107121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_LPAREN, - STATE(2081), 1, - sym_arguments, - [107131] = 3, + [107109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(2083), 1, + STATE(2136), 1, sym_arguments, - [107141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6007), 1, - sym_identifier, - STATE(3395), 1, - sym_initialized_identifier, - [107151] = 3, + [107119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 1, - anon_sym_COMMA, - ACTIONS(6409), 1, - anon_sym_RPAREN, - [107161] = 2, + ACTIONS(4461), 1, + sym_increment_operator, + STATE(2295), 1, + sym_postfix_operator, + [107129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6411), 2, - anon_sym_this, - sym_identifier, - [107169] = 2, + ACTIONS(6448), 1, + anon_sym_LBRACE, + STATE(1234), 1, + sym_switch_block, + [107139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5748), 2, - anon_sym_COMMA, - anon_sym_GT, - [107177] = 3, + ACTIONS(2461), 1, + anon_sym_LPAREN, + STATE(2171), 1, + sym_arguments, + [107149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 1, + ACTIONS(6450), 1, anon_sym_COMMA, - ACTIONS(6415), 1, + ACTIONS(6452), 1, anon_sym_RPAREN, - [107187] = 3, + [107159] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1205), 1, + STATE(1236), 1, sym__semicolon, - [107197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5764), 1, - anon_sym_LPAREN, - STATE(1734), 1, - sym_arguments, - [107207] = 3, + [107169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 1, - anon_sym_LPAREN, - STATE(944), 1, - sym_parameter_type_list, - [107217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5434), 1, + ACTIONS(5390), 1, anon_sym_LBRACE, - STATE(2095), 1, + STATE(1126), 1, sym_block, - [107227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2099), 1, - anon_sym_LPAREN, - STATE(797), 1, - sym_parameter_type_list, - [107237] = 3, + [107179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 1, - anon_sym_LPAREN, - STATE(1488), 1, - sym_arguments, - [107247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6419), 2, - anon_sym_LBRACE, - anon_sym_implements, - [107255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - STATE(1115), 1, - sym_class_body, - [107265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6421), 1, + ACTIONS(6454), 1, anon_sym_COMMA, - ACTIONS(6423), 1, + ACTIONS(6456), 1, anon_sym_RPAREN, - [107275] = 3, + [107189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 1, - anon_sym_COMMA, - ACTIONS(6427), 1, - anon_sym_RPAREN, - [107285] = 3, + ACTIONS(4596), 1, + anon_sym_this, + ACTIONS(6458), 1, + sym_identifier, + [107199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6401), 1, - anon_sym_LBRACE, - STATE(1156), 1, - sym_enum_body, - [107295] = 3, + ACTIONS(3754), 1, + anon_sym_LPAREN, + STATE(2998), 1, + sym_arguments, + [107209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6429), 1, - sym_identifier, - STATE(1130), 1, - sym_mixin_application_class, - [107305] = 2, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1227), 1, + sym__semicolon, + [107219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 2, + ACTIONS(6383), 2, anon_sym_COMMA, - anon_sym_SEMI, - [107313] = 3, + anon_sym_RBRACK, + [107227] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(1244), 1, sym__semicolon, - [107323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4399), 1, - sym_increment_operator, - STATE(210), 1, - sym_postfix_operator, - [107333] = 3, + [107237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6431), 1, + ACTIONS(6011), 1, sym_identifier, - STATE(3094), 1, - sym__identifier_list, - [107343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(3415), 1, - sym_parenthesized_expression, - [107353] = 3, + STATE(1105), 1, + sym_static_final_declaration, + [107247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 1, - anon_sym_LPAREN, - STATE(1380), 1, - sym_arguments, - [107363] = 3, + ACTIONS(6461), 1, + anon_sym_COMMA, + ACTIONS(6463), 1, + anon_sym_RPAREN, + [107257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 1, + ACTIONS(4024), 1, anon_sym_LPAREN, - STATE(1377), 1, + STATE(2419), 1, sym_arguments, - [107373] = 3, + [107267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6433), 1, - anon_sym_COMMA, - ACTIONS(6435), 1, + ACTIONS(532), 1, anon_sym_SEMI, - [107383] = 3, + STATE(1245), 1, + sym__semicolon, + [107277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, - anon_sym_as, - STATE(3639), 1, - sym__as, - [107393] = 3, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1039), 1, + sym__semicolon, + [107287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - anon_sym_LPAREN, - STATE(221), 1, - sym_arguments, - [107403] = 3, + ACTIONS(6465), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 1, + ACTIONS(4477), 1, sym_increment_operator, - STATE(2272), 1, + STATE(1790), 1, sym_postfix_operator, - [107413] = 2, + [107305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6096), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [107421] = 3, + ACTIONS(2179), 1, + anon_sym_LPAREN, + STATE(836), 1, + sym_parameter_type_list, + [107315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 1, + ACTIONS(6467), 1, anon_sym_LPAREN, - STATE(1766), 1, - sym_arguments, - [107431] = 3, + STATE(3400), 1, + sym_parenthesized_expression, + [107325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 1, - anon_sym_LPAREN, - STATE(1765), 1, - sym_arguments, - [107441] = 2, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(1171), 1, + sym_enum_body, + [107335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6439), 2, - anon_sym_COMMA, - anon_sym_GT, - [107449] = 3, + ACTIONS(6469), 1, + sym_identifier, + STATE(2985), 1, + sym_scoped_identifier, + [107345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 1, - anon_sym_COMMA, - ACTIONS(6443), 1, - anon_sym_RPAREN, - [107459] = 2, + ACTIONS(6471), 1, + sym_identifier, + STATE(1170), 1, + sym_mixin_application_class, + [107355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_parenthesized_expression, + [107365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6445), 2, + ACTIONS(6473), 1, anon_sym_COMMA, - anon_sym_GT, - [107467] = 2, + ACTIONS(6475), 1, + anon_sym_RPAREN, + [107375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5811), 2, + ACTIONS(6477), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [107475] = 3, + [107383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(1706), 1, - sym_parameter_type_list, - [107485] = 3, + STATE(2838), 1, + sym_arguments, + [107393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, + ACTIONS(5390), 1, anon_sym_LBRACE, - STATE(1746), 1, + STATE(3339), 1, sym_block, - [107495] = 3, + [107403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1208), 1, - sym__semicolon, - [107505] = 3, + ACTIONS(6467), 1, + anon_sym_LPAREN, + STATE(60), 1, + sym_parenthesized_expression, + [107413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(364), 1, - sym__semicolon, - [107515] = 3, + ACTIONS(6479), 1, + sym_identifier, + STATE(2436), 1, + sym_scoped_identifier, + [107423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 1, - anon_sym_LPAREN, - STATE(1332), 1, - sym_arguments, - [107525] = 3, + ACTIONS(6481), 1, + sym_identifier, + STATE(3268), 1, + sym__identifier_list, + [107433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 1, - anon_sym_LPAREN, - STATE(782), 1, - sym_arguments, - [107535] = 3, + ACTIONS(6483), 1, + anon_sym_as, + STATE(3732), 1, + sym__as, + [107443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 1, - anon_sym_LPAREN, - STATE(1701), 1, - sym_parameter_type_list, - [107545] = 3, + ACTIONS(6485), 1, + sym_identifier, + STATE(1150), 1, + sym_mixin_application_class, + [107453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__semicolon, - [107555] = 2, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(1407), 1, + sym_arguments, + [107463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6447), 2, + ACTIONS(6487), 2, anon_sym_RBRACE, anon_sym_COMMA, - [107563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6449), 1, - anon_sym_COMMA, - ACTIONS(6451), 1, - anon_sym_RPAREN, - [107573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - STATE(1162), 1, - sym_class_body, - [107583] = 3, + [107471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(2520), 1, - sym__semicolon, - [107593] = 3, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(1364), 1, + sym_arguments, + [107481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6453), 1, - sym_identifier, - STATE(3183), 1, - sym_qualified, - [107603] = 3, + ACTIONS(5832), 1, + anon_sym_LPAREN, + STATE(1832), 1, + sym_arguments, + [107491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(1140), 1, - sym__semicolon, - [107613] = 3, + ACTIONS(4513), 1, + sym_increment_operator, + STATE(2093), 1, + sym_postfix_operator, + [107501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, - anon_sym_with, - STATE(2997), 1, - sym_mixins, - [107623] = 3, + ACTIONS(4483), 1, + sym_increment_operator, + STATE(1421), 1, + sym_postfix_operator, + [107511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4648), 1, anon_sym_LBRACE, - STATE(1103), 1, + STATE(1141), 1, sym_class_body, - [107633] = 2, + [107521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 2, - anon_sym_LBRACE, + ACTIONS(6489), 1, + anon_sym_COMMA, + ACTIONS(6491), 1, anon_sym_SEMI, - [107641] = 2, + [107531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [107649] = 3, + ACTIONS(5762), 1, + anon_sym_LPAREN, + STATE(1425), 1, + sym_arguments, + [107541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_block, - [107659] = 3, + ACTIONS(5762), 1, + anon_sym_LPAREN, + STATE(1419), 1, + sym_arguments, + [107551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3226), 1, - anon_sym_while, - ACTIONS(6459), 1, - anon_sym_else, - [107669] = 3, + ACTIONS(6493), 2, + anon_sym_this, + sym_identifier, + [107559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6495), 1, anon_sym_COMMA, - ACTIONS(6463), 1, + ACTIONS(6497), 1, anon_sym_RPAREN, - [107679] = 3, + [107569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 1, - anon_sym_LPAREN, - STATE(784), 1, - sym_arguments, - [107689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - STATE(1999), 1, - sym_arguments, - [107699] = 3, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1162), 1, + sym_class_body, + [107579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(994), 1, - sym__semicolon, - [107709] = 3, + ACTIONS(6499), 2, + anon_sym_LBRACE, + anon_sym_implements, + [107587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 1, + ACTIONS(4039), 1, anon_sym_LPAREN, - STATE(794), 1, + STATE(923), 1, sym_arguments, - [107719] = 3, + [107597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 1, + ACTIONS(1066), 1, anon_sym_LPAREN, - STATE(795), 1, - sym_arguments, - [107729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6465), 1, - sym_identifier, - STATE(1072), 1, - sym_static_final_declaration, - [107739] = 3, + STATE(328), 1, + sym_parameter_type_list, + [107607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 1, - anon_sym_COMMA, - ACTIONS(6469), 1, - anon_sym_RPAREN, - [107749] = 3, + ACTIONS(6501), 1, + anon_sym_LBRACE, + ACTIONS(6503), 1, + anon_sym_LBRACK, + [107617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(54), 1, - sym_parenthesized_expression, - [107759] = 3, + ACTIONS(5249), 1, + anon_sym_LBRACE, + STATE(1910), 1, + sym_block, + [107627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - STATE(53), 1, - sym_parenthesized_expression, - [107769] = 2, + STATE(1817), 1, + sym_arguments, + [107637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [107777] = 2, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1208), 1, + sym_class_body, + [107647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [107785] = 3, + ACTIONS(5173), 1, + anon_sym_LBRACE, + STATE(1399), 1, + sym_block, + [107657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6473), 1, + ACTIONS(3904), 1, anon_sym_LPAREN, - STATE(1509), 1, - sym_arguments, - [107795] = 3, + STATE(1725), 1, + sym_parameter_type_list, + [107667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, + ACTIONS(3095), 1, anon_sym_LPAREN, - STATE(1953), 1, + STATE(1301), 1, sym_parameter_type_list, - [107805] = 3, + [107677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 1, + ACTIONS(5807), 1, anon_sym_LPAREN, - STATE(2001), 1, - sym_parameter_type_list, - [107815] = 3, + STATE(343), 1, + sym_arguments, + [107687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_block, - [107825] = 2, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1229), 1, + sym__semicolon, + [107697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6475), 2, + ACTIONS(6505), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [107833] = 3, + ACTIONS(6507), 1, + anon_sym_RPAREN, + [107707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6477), 1, + ACTIONS(6509), 1, anon_sym_COMMA, - ACTIONS(6479), 1, + ACTIONS(6511), 1, anon_sym_RPAREN, - [107843] = 3, + [107717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - STATE(1733), 1, + STATE(1955), 1, sym_arguments, - [107853] = 2, + [107727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6074), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107861] = 3, + ACTIONS(6513), 1, + anon_sym_LBRACE, + ACTIONS(6515), 1, + anon_sym_LBRACK, + [107737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(6483), 1, - anon_sym_RPAREN, - [107871] = 2, + ACTIONS(5830), 1, + anon_sym_LPAREN, + STATE(1954), 1, + sym_arguments, + [107747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6485), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [107879] = 3, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(1351), 1, + sym_arguments, + [107757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(361), 1, - sym__semicolon, - [107889] = 3, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1199), 1, + sym_class_body, + [107767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, - sym_increment_operator, - STATE(872), 1, - sym_postfix_operator, - [107899] = 2, + ACTIONS(6517), 1, + anon_sym_LBRACE, + ACTIONS(6519), 1, + anon_sym_LBRACK, + [107777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 2, - anon_sym_RBRACE, + ACTIONS(6521), 1, + sym_identifier, + STATE(1105), 1, + sym_static_final_declaration, + [107787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6205), 2, anon_sym_COMMA, - [107907] = 3, + anon_sym_RPAREN, + [107795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(6523), 1, anon_sym_LBRACE, - STATE(1147), 1, - sym_class_body, - [107917] = 3, + ACTIONS(6525), 1, + anon_sym_LBRACK, + [107805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - STATE(1148), 1, - sym_class_body, - [107927] = 3, + ACTIONS(6467), 1, + anon_sym_LPAREN, + STATE(3519), 1, + sym_parenthesized_expression, + [107815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - STATE(1132), 1, - sym_class_body, - [107937] = 3, + ACTIONS(6529), 1, + anon_sym_LBRACK, + [107825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_operator, - STATE(2369), 1, - sym__operator, - [107947] = 3, + ACTIONS(6531), 1, + anon_sym_COMMA, + ACTIONS(6533), 1, + anon_sym_RPAREN, + [107835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(4471), 1, + sym_increment_operator, + STATE(851), 1, + sym_postfix_operator, + [107845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6467), 1, anon_sym_LPAREN, - ACTIONS(6493), 1, - anon_sym_DOT, - [107957] = 2, + STATE(208), 1, + sym_parenthesized_expression, + [107855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 2, - anon_sym_LBRACE, - anon_sym_implements, - [107965] = 3, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1249), 1, + sym__semicolon, + [107865] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(1174), 1, + STATE(1034), 1, sym__semicolon, - [107975] = 3, + [107875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_LPAREN, - STATE(1276), 1, - sym_parameter_type_list, - [107985] = 3, + ACTIONS(4505), 1, + sym_increment_operator, + STATE(1928), 1, + sym_postfix_operator, + [107885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(1856), 1, + STATE(1982), 1, sym_arguments, - [107995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_class_body, - [108005] = 2, + [107895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6251), 2, + ACTIONS(5768), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [108013] = 2, + anon_sym_GT, + [107903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6029), 2, + ACTIONS(6535), 2, anon_sym_COMMA, anon_sym_RPAREN, - [108021] = 2, + [107911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 2, + ACTIONS(6346), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [108029] = 3, + [107919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(6537), 1, anon_sym_LBRACE, - STATE(1159), 1, - sym_class_body, - [108039] = 3, + ACTIONS(6539), 1, + anon_sym_LBRACK, + [107929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1161), 1, + sym__semicolon, + [107939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5762), 1, anon_sym_LPAREN, - STATE(249), 1, + STATE(1473), 1, sym_arguments, - [108049] = 2, + [107949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 2, - anon_sym_COMMA, + ACTIONS(532), 1, anon_sym_SEMI, - [108057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6499), 1, - anon_sym_RPAREN, - ACTIONS(6501), 1, - anon_sym_EQ_EQ, - [108067] = 3, + STATE(384), 1, + sym__semicolon, + [107959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, + ACTIONS(3992), 1, anon_sym_LPAREN, - STATE(250), 1, - sym_arguments, - [108077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6503), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [108085] = 3, + STATE(2010), 1, + sym_parameter_type_list, + [107969] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(532), 1, anon_sym_SEMI, - STATE(360), 1, + STATE(1218), 1, sym__semicolon, - [108095] = 2, + [107979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6107), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [108103] = 3, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(1456), 1, + sym_arguments, + [107989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - STATE(1116), 1, - sym_class_body, - [108113] = 3, + ACTIONS(3283), 1, + anon_sym_while, + ACTIONS(6541), 1, + anon_sym_else, + [107999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6505), 1, + ACTIONS(6543), 1, anon_sym_COMMA, - ACTIONS(6507), 1, + ACTIONS(6545), 1, anon_sym_RPAREN, - [108123] = 3, + [108009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(5195), 1, + anon_sym_LBRACE, + STATE(287), 1, + sym_block, + [108019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3968), 1, anon_sym_LPAREN, - STATE(2841), 1, - sym_arguments, - [108133] = 3, + STATE(2011), 1, + sym_parameter_type_list, + [108029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - anon_sym_SEMI, - STATE(2510), 1, - sym__semicolon, - [108143] = 2, + ACTIONS(6547), 2, + anon_sym_COMMA, + anon_sym_GT, + [108037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6509), 2, - anon_sym_COLON, - anon_sym_SEMI, - [108151] = 3, + ACTIONS(2428), 1, + anon_sym_LPAREN, + STATE(2182), 1, + sym_arguments, + [108047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - STATE(1153), 1, - sym_class_body, - [108161] = 3, + ACTIONS(6549), 2, + anon_sym_COMMA, + anon_sym_GT, + [108055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, - anon_sym_LBRACE, - STATE(1163), 1, - sym_class_body, - [108171] = 3, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_GT, + [108063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 1, + ACTIONS(2428), 1, anon_sym_LPAREN, - STATE(1283), 1, - sym_parameter_type_list, - [108181] = 2, + STATE(2187), 1, + sym_arguments, + [108073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6017), 2, + ACTIONS(6145), 2, anon_sym_RBRACE, anon_sym_COMMA, - [108189] = 2, + [108081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6551), 1, + anon_sym_LBRACE, + ACTIONS(6553), 1, + anon_sym_LBRACK, + [108091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6511), 2, + ACTIONS(6555), 1, anon_sym_COMMA, + ACTIONS(6557), 1, anon_sym_RPAREN, - [108197] = 3, + [108101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 1, - sym_increment_operator, - STATE(2103), 1, - sym_postfix_operator, - [108207] = 3, + ACTIONS(6467), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym_parenthesized_expression, + [108111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 1, + ACTIONS(6467), 1, anon_sym_LPAREN, - STATE(1433), 1, - sym_arguments, - [108217] = 3, + STATE(54), 1, + sym_parenthesized_expression, + [108121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4648), 1, anon_sym_LBRACE, - STATE(1177), 1, + STATE(1203), 1, sym_class_body, - [108227] = 3, + [108131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 1, - anon_sym_LBRACE, - STATE(999), 1, - sym_block, - [108237] = 3, + ACTIONS(2209), 1, + anon_sym_LPAREN, + STATE(913), 1, + sym_parameter_type_list, + [108141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 1, + ACTIONS(5227), 1, anon_sym_LBRACE, - STATE(1216), 1, + STATE(2132), 1, sym_block, - [108247] = 3, + [108151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(59), 1, - sym_parenthesized_expression, - [108257] = 3, + ACTIONS(6559), 1, + anon_sym_COMMA, + ACTIONS(6561), 1, + anon_sym_RPAREN, + [108161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6370), 1, + ACTIONS(2461), 1, anon_sym_LPAREN, - STATE(61), 1, - sym_parenthesized_expression, - [108267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 1, - sym_increment_operator, - STATE(2069), 1, - sym_postfix_operator, - [108277] = 3, + STATE(1967), 1, + sym_arguments, + [108171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(6563), 1, anon_sym_LPAREN, - STATE(2158), 1, + STATE(1536), 1, sym_arguments, - [108287] = 3, + [108181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, + ACTIONS(4648), 1, anon_sym_LBRACE, - STATE(2138), 1, - sym_block, - [108297] = 3, + STATE(1139), 1, + sym_class_body, + [108191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - sym_increment_operator, - STATE(1917), 1, - sym_postfix_operator, - [108307] = 3, + ACTIONS(5807), 1, + anon_sym_LPAREN, + STATE(299), 1, + sym_arguments, + [108201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(6565), 1, anon_sym_LPAREN, - STATE(2160), 1, + STATE(1540), 1, sym_arguments, - [108317] = 3, + [108211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_block, - [108327] = 3, + ACTIONS(5807), 1, + anon_sym_LPAREN, + STATE(307), 1, + sym_arguments, + [108221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(3106), 1, anon_sym_LPAREN, - STATE(2841), 1, - sym_arguments, - [108337] = 3, + STATE(1322), 1, + sym_parameter_type_list, + [108231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, + ACTIONS(6567), 2, + anon_sym_COLON, + anon_sym_SEMI, + [108239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6569), 1, anon_sym_COMMA, - ACTIONS(6515), 1, + ACTIONS(6571), 1, anon_sym_RPAREN, - [108347] = 3, + [108249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 1, + ACTIONS(5830), 1, anon_sym_LPAREN, - STATE(1321), 1, + STATE(1877), 1, sym_arguments, - [108357] = 3, + [108259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, - anon_sym_LPAREN, - STATE(2963), 1, - sym_arguments, - [108367] = 3, + ACTIONS(6573), 1, + anon_sym_COMMA, + ACTIONS(6575), 1, + anon_sym_RPAREN, + [108269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6517), 1, + ACTIONS(5713), 1, + anon_sym_LBRACE, + STATE(1126), 1, + sym_block, + [108279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5981), 2, anon_sym_COMMA, - ACTIONS(6519), 1, - anon_sym_RPAREN, - [108377] = 3, + anon_sym_GT, + [108287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 1, - sym_identifier, - STATE(1072), 1, - sym_static_final_declaration, - [108387] = 3, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1251), 1, + sym__semicolon, + [108297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 1, - anon_sym_LPAREN, - STATE(1807), 1, - sym_arguments, - [108397] = 3, + ACTIONS(6577), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [108305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 1, - anon_sym_LPAREN, - STATE(1797), 1, - sym_arguments, - [108407] = 3, + ACTIONS(6579), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [108313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, + ACTIONS(2428), 1, anon_sym_LPAREN, - STATE(2972), 1, + STATE(2838), 1, sym_arguments, - [108417] = 3, + [108323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6521), 1, - anon_sym_COMMA, - ACTIONS(6523), 1, + ACTIONS(6581), 1, anon_sym_RPAREN, - [108427] = 3, + ACTIONS(6583), 1, + anon_sym_EQ_EQ, + [108333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(4931), 1, anon_sym_LBRACE, - STATE(1078), 1, + STATE(1233), 1, sym_block, - [108437] = 3, + [108343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(4465), 1, sym_increment_operator, - STATE(1308), 1, + STATE(928), 1, sym_postfix_operator, - [108447] = 3, + [108353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4057), 1, - anon_sym_LPAREN, - STATE(2193), 1, - sym_parameter_type_list, - [108457] = 3, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(382), 1, + sym__semicolon, + [108363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, + ACTIONS(5713), 1, anon_sym_LBRACE, - STATE(1744), 1, + STATE(1124), 1, sym_block, - [108467] = 3, + [108373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - STATE(895), 1, - sym_arguments, - [108477] = 3, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1209), 1, + sym_class_body, + [108383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6525), 1, - anon_sym_COMMA, - ACTIONS(6527), 1, - anon_sym_RPAREN, - [108487] = 2, + ACTIONS(6089), 1, + sym_identifier, + STATE(3390), 1, + sym_initialized_identifier, + [108393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, - anon_sym_SEMI, - [108494] = 2, + ACTIONS(5872), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [108401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6531), 1, - sym_identifier, - [108501] = 2, + ACTIONS(5830), 1, + anon_sym_LPAREN, + STATE(1778), 1, + sym_arguments, + [108411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6533), 1, - sym_identifier, - [108508] = 2, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1178), 1, + sym_class_body, + [108421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6535), 1, - sym_identifier, - [108515] = 2, + ACTIONS(5515), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_block, + [108431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6537), 1, - anon_sym_RBRACK, - [108522] = 2, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(378), 1, + sym__semicolon, + [108441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6539), 1, + ACTIONS(5870), 1, sym_identifier, - [108529] = 2, + STATE(1103), 1, + sym_dotted_identifier_list, + [108451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6541), 1, - sym_identifier, - [108536] = 2, + ACTIONS(3900), 1, + anon_sym_LPAREN, + STATE(1752), 1, + sym_parameter_type_list, + [108461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6543), 1, - sym_identifier, - [108543] = 2, + ACTIONS(6585), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [108469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6545), 1, + ACTIONS(6587), 1, + anon_sym_COMMA, + ACTIONS(6589), 1, anon_sym_RPAREN, - [108550] = 2, + [108479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 1, - anon_sym_RPAREN, - [108557] = 2, + ACTIONS(6591), 1, + anon_sym_operator, + STATE(2396), 1, + sym__operator, + [108489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 1, - anon_sym_RPAREN, - [108564] = 2, + ACTIONS(4493), 1, + sym_increment_operator, + STATE(264), 1, + sym_postfix_operator, + [108499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, - anon_sym_RBRACK, - [108571] = 2, + ACTIONS(5797), 1, + anon_sym_LPAREN, + STATE(887), 1, + sym_arguments, + [108509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6553), 1, - anon_sym_RBRACE, - [108578] = 2, + ACTIONS(5797), 1, + anon_sym_LPAREN, + STATE(888), 1, + sym_arguments, + [108519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6089), 1, - anon_sym_RPAREN, - [108585] = 2, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(2548), 1, + sym__semicolon, + [108529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6555), 1, - anon_sym_RBRACK, - [108592] = 2, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(2549), 1, + sym__semicolon, + [108539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_COLON, - [108599] = 2, + ACTIONS(5797), 1, + anon_sym_LPAREN, + STATE(885), 1, + sym_arguments, + [108549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6559), 1, + ACTIONS(6593), 2, + anon_sym_this, sym_identifier, - [108606] = 2, + [108557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 1, - sym_identifier, - [108613] = 2, + ACTIONS(5341), 1, + anon_sym_LBRACE, + STATE(1032), 1, + sym_block, + [108567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_RPAREN, - [108620] = 2, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1159), 1, + sym_class_body, + [108577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6565), 1, - sym_identifier, - [108627] = 2, + ACTIONS(4489), 1, + sym_increment_operator, + STATE(2289), 1, + sym_postfix_operator, + [108587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6309), 1, - anon_sym_EQ, - [108634] = 2, + ACTIONS(6467), 1, + anon_sym_LPAREN, + STATE(19), 1, + sym_parenthesized_expression, + [108597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6567), 1, - anon_sym_RPAREN, - [108641] = 2, + ACTIONS(2251), 1, + anon_sym_LPAREN, + STATE(979), 1, + sym_parameter_type_list, + [108607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6569), 1, - anon_sym_RPAREN, - [108648] = 2, + ACTIONS(5372), 1, + anon_sym_LBRACE, + STATE(1776), 1, + sym_block, + [108617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6571), 1, - anon_sym_RPAREN, - [108655] = 2, + ACTIONS(4931), 1, + anon_sym_LBRACE, + STATE(1032), 1, + sym_block, + [108627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6573), 1, - anon_sym_RPAREN, - [108662] = 2, + ACTIONS(5797), 1, + anon_sym_LPAREN, + STATE(799), 1, + sym_arguments, + [108637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6575), 1, - anon_sym_RBRACK, - [108669] = 2, + ACTIONS(6595), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [108645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 1, - anon_sym_RBRACE, - [108676] = 2, + ACTIONS(6597), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [108653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6579), 1, - anon_sym_EQ, - [108683] = 2, + ACTIONS(6599), 1, + anon_sym_LPAREN, + ACTIONS(6601), 1, + anon_sym_DOT, + [108663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6100), 1, - anon_sym_RPAREN, - [108690] = 2, + ACTIONS(5341), 1, + anon_sym_LBRACE, + STATE(1233), 1, + sym_block, + [108673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6581), 1, - anon_sym_RBRACK, - [108697] = 2, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1197), 1, + sym_class_body, + [108683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6583), 1, - anon_sym_COLON, - [108704] = 2, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1196), 1, + sym_class_body, + [108693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - sym_identifier, - [108711] = 2, + ACTIONS(6603), 2, + anon_sym_LBRACE, + anon_sym_implements, + [108701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6587), 1, + ACTIONS(6605), 1, sym_identifier, - [108718] = 2, + STATE(3390), 1, + sym_initialized_identifier, + [108711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6589), 1, - sym_identifier, - [108725] = 2, + ACTIONS(4425), 1, + anon_sym_LPAREN, + STATE(2503), 1, + sym_parameter_type_list, + [108721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6591), 1, - anon_sym_RPAREN, - [108732] = 2, + ACTIONS(532), 1, + anon_sym_SEMI, + STATE(1182), 1, + sym__semicolon, + [108731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 1, + anon_sym_LBRACE, + STATE(1213), 1, + sym_class_body, + [108741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4654), 1, + anon_sym_with, + STATE(3114), 1, + sym_mixins, + [108751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, + ACTIONS(5921), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [108739] = 2, + [108759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5411), 1, + ACTIONS(532), 1, anon_sym_SEMI, - [108746] = 2, + STATE(1180), 1, + sym__semicolon, + [108769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5390), 1, + anon_sym_LBRACE, + STATE(1446), 1, + sym_block, + [108779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6595), 1, - anon_sym_RBRACK, - [108753] = 2, + ACTIONS(5807), 1, + anon_sym_LPAREN, + STATE(342), 1, + sym_arguments, + [108789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6163), 1, - anon_sym_EQ, - [108760] = 2, + ACTIONS(6165), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [108797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6597), 1, + ACTIONS(532), 1, anon_sym_SEMI, - [108767] = 2, + STATE(1193), 1, + sym__semicolon, + [108807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - sym_identifier, - [108774] = 2, + ACTIONS(6467), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, + [108817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, - anon_sym_DOT, - [108781] = 2, + ACTIONS(6467), 1, + anon_sym_LPAREN, + STATE(58), 1, + sym_parenthesized_expression, + [108827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6603), 1, - anon_sym_RPAREN, - [108788] = 2, + ACTIONS(5832), 1, + anon_sym_LPAREN, + STATE(1798), 1, + sym_arguments, + [108837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_RPAREN, - [108795] = 2, + ACTIONS(5832), 1, + anon_sym_LPAREN, + STATE(1797), 1, + sym_arguments, + [108847] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6607), 1, - sym_identifier, - [108802] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LBRACE, ACTIONS(6609), 1, - anon_sym_COLON, - [108809] = 2, + anon_sym_LBRACK, + [108857] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6611), 1, - anon_sym_LBRACE, - [108816] = 2, + sym_identifier, + STATE(3146), 1, + sym_qualified, + [108867] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6613), 1, - anon_sym_LPAREN, - [108823] = 2, + anon_sym_RBRACK, + [108874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6615), 1, - anon_sym_SEMI, - [108830] = 2, + sym_identifier, + [108881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6617), 1, sym_identifier, - [108837] = 2, + [108888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6619), 1, sym_identifier, - [108844] = 2, + [108895] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6621), 1, anon_sym_RBRACK, - [108851] = 2, + [108902] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6623), 1, - anon_sym_RPAREN, - [108858] = 2, + anon_sym_LPAREN, + [108909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6625), 1, - anon_sym_RPAREN, - [108865] = 2, + sym_identifier, + [108916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6627), 1, - anon_sym_RPAREN, - [108872] = 2, + anon_sym_LPAREN, + [108923] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6629), 1, sym_identifier, - [108879] = 2, + [108930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6631), 1, sym_identifier, - [108886] = 2, + [108937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6633), 1, - anon_sym_COLON, - [108893] = 2, + anon_sym_RPAREN, + [108944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6635), 1, anon_sym_RPAREN, - [108900] = 2, + [108951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6637), 1, - anon_sym_SEMI, - [108907] = 2, + sym_identifier, + [108958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6639), 1, - anon_sym_RBRACK, - [108914] = 2, + sym_identifier, + [108965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6641), 1, - sym_identifier, - [108921] = 2, + anon_sym_RPAREN, + [108972] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6643), 1, - sym_identifier, - [108928] = 2, + anon_sym_RBRACK, + [108979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5903), 1, + anon_sym_RPAREN, + [108986] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6645), 1, - anon_sym_EQ, - [108935] = 2, + anon_sym_RBRACK, + [108993] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6647), 1, - sym_identifier, - [108942] = 2, + anon_sym_COLON, + [109000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6649), 1, - anon_sym_SEMI, - [108949] = 2, + anon_sym_RPAREN, + [109007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6651), 1, - anon_sym_RBRACK, - [108956] = 2, + sym_identifier, + [109014] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6653), 1, - anon_sym_RBRACK, - [108963] = 2, + sym_identifier, + [109021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 1, + anon_sym_COLON, + [109028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6655), 1, sym_identifier, - [108970] = 2, + [109035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6657), 1, + ACTIONS(6658), 1, sym_identifier, - [108977] = 2, + [109042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 1, - anon_sym_RPAREN, - [108984] = 2, + ACTIONS(6660), 1, + anon_sym_LPAREN, + [109049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6661), 1, - anon_sym_RPAREN, - [108991] = 2, + ACTIONS(6662), 1, + sym_identifier, + [109056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 1, - anon_sym_RPAREN, - [108998] = 2, + ACTIONS(6664), 1, + anon_sym_LBRACE, + [109063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6665), 1, + ACTIONS(6666), 1, sym_identifier, - [109005] = 2, + [109070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 1, + ACTIONS(6668), 1, anon_sym_RPAREN, - [109012] = 2, + [109077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6669), 1, - anon_sym_RPAREN, - [109019] = 2, + ACTIONS(6670), 1, + sym_identifier, + [109084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, - anon_sym_RPAREN, - [109026] = 2, + ACTIONS(6672), 1, + sym_identifier, + [109091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6673), 1, + ACTIONS(6674), 1, anon_sym_RPAREN, - [109033] = 2, + [109098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6011), 1, + ACTIONS(6676), 1, anon_sym_RPAREN, - [109040] = 2, + [109105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6675), 1, - anon_sym_EQ, - [109047] = 2, + ACTIONS(6678), 1, + anon_sym_RBRACK, + [109112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 1, + ACTIONS(6680), 1, anon_sym_RPAREN, - [109054] = 2, + [109119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, + ACTIONS(6682), 1, anon_sym_RPAREN, - [109061] = 2, + [109126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6684), 1, sym_identifier, - [109068] = 2, + [109133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6683), 1, + ACTIONS(6686), 1, anon_sym_RPAREN, - [109075] = 2, + [109140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACE, - [109082] = 2, + ACTIONS(6688), 1, + anon_sym_COLON, + [109147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 1, + ACTIONS(6690), 1, sym_identifier, - [109089] = 2, + [109154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6689), 1, - anon_sym_RBRACE, - [109096] = 2, + ACTIONS(6692), 1, + sym_identifier, + [109161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 1, + ACTIONS(6694), 1, anon_sym_RPAREN, - [109103] = 2, + [109168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, - anon_sym_COLON, - [109110] = 2, + ACTIONS(6696), 1, + anon_sym_RPAREN, + [109175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 1, - anon_sym_RBRACK, - [109117] = 2, + ACTIONS(6698), 1, + sym_identifier, + [109182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, + anon_sym_RPAREN, + [109189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 1, + ACTIONS(6702), 1, anon_sym_RPAREN, - [109124] = 2, + [109196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 1, + ACTIONS(6704), 1, anon_sym_RBRACK, - [109131] = 2, + [109203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6706), 1, + sym_identifier, + [109210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 1, + ACTIONS(6363), 1, anon_sym_RPAREN, - [109138] = 2, + [109217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6699), 1, + ACTIONS(6708), 1, sym_identifier, - [109145] = 2, + [109224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6710), 1, + anon_sym_RBRACK, + [109231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6712), 1, + anon_sym_COLON, + [109238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 1, + ACTIONS(6714), 1, + anon_sym_RBRACK, + [109245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6716), 1, anon_sym_LPAREN, - [109152] = 2, + [109252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6703), 1, + ACTIONS(6718), 1, anon_sym_LPAREN, - [109159] = 2, + [109259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 1, + ACTIONS(6720), 1, sym_identifier, - [109166] = 2, + [109266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 1, - anon_sym_SEMI, - [109173] = 2, + ACTIONS(6722), 1, + sym_identifier, + [109273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6707), 1, - anon_sym_RPAREN, - [109180] = 2, + ACTIONS(6724), 1, + sym_identifier, + [109280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6726), 1, + anon_sym_RBRACK, + [109287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 1, + ACTIONS(6728), 1, sym_identifier, - [109187] = 2, + [109294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6711), 1, + ACTIONS(6730), 1, sym_identifier, - [109194] = 2, + [109301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 1, - anon_sym_RPAREN, - [109201] = 2, + ACTIONS(6732), 1, + sym_identifier, + [109308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6715), 1, - anon_sym_RPAREN, - [109208] = 2, + ACTIONS(6734), 1, + sym_identifier, + [109315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6717), 1, + ACTIONS(6736), 1, anon_sym_RPAREN, - [109215] = 2, + [109322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6719), 1, + ACTIONS(6738), 1, anon_sym_RPAREN, - [109222] = 2, + [109329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6721), 1, - anon_sym_RPAREN, - [109229] = 2, + ACTIONS(6740), 1, + sym_identifier, + [109336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_COLON, - [109236] = 2, + ACTIONS(6742), 1, + sym_identifier, + [109343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, - anon_sym_RBRACK, - [109243] = 2, + ACTIONS(6744), 1, + sym_identifier, + [109350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6727), 1, + ACTIONS(6746), 1, + anon_sym_class, + [109357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6748), 1, anon_sym_RPAREN, - [109250] = 2, + [109364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5981), 1, + ACTIONS(6750), 1, anon_sym_RPAREN, - [109257] = 2, + [109371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6729), 1, + ACTIONS(6752), 1, sym_identifier, - [109264] = 2, + [109378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, - anon_sym_RPAREN, - [109271] = 2, + ACTIONS(6754), 1, + anon_sym_EQ, + [109385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6733), 1, + ACTIONS(6756), 1, anon_sym_RBRACK, - [109278] = 2, + [109392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6735), 1, + ACTIONS(6758), 1, sym_identifier, - [109285] = 2, + [109399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6737), 1, + ACTIONS(6760), 1, sym_identifier, - [109292] = 2, + [109406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6739), 1, - anon_sym_COLON, - [109299] = 2, + ACTIONS(6762), 1, + sym_identifier, + [109413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6764), 1, + anon_sym_RPAREN, + [109420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6766), 1, + anon_sym_SEMI, + [109427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6768), 1, + anon_sym_LPAREN, + [109434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6770), 1, + anon_sym_EQ, + [109441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, + ACTIONS(6772), 1, anon_sym_RPAREN, - [109306] = 2, + [109448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6743), 1, + ACTIONS(6774), 1, anon_sym_RPAREN, - [109313] = 2, + [109455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6745), 1, + ACTIONS(6776), 1, + anon_sym_COLON, + [109462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6778), 1, sym_identifier, - [109320] = 2, + [109469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, - anon_sym_RBRACK, - [109327] = 2, + ACTIONS(6780), 1, + anon_sym_RPAREN, + [109476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym_SEMI, + [109483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6749), 1, + ACTIONS(6782), 1, + anon_sym_RPAREN, + [109490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6784), 1, anon_sym_LPAREN, - [109334] = 2, + [109497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - sym_identifier, - [109341] = 2, + ACTIONS(6786), 1, + anon_sym_RPAREN, + [109504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, - sym_identifier, - [109348] = 2, + ACTIONS(5620), 1, + anon_sym_DOT, + [109511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(6788), 1, anon_sym_RPAREN, - [109355] = 2, + [109518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6753), 1, - anon_sym_RBRACK, - [109362] = 2, + ACTIONS(6790), 1, + anon_sym_RPAREN, + [109525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6755), 1, - sym_identifier, - [109369] = 2, + ACTIONS(6019), 1, + anon_sym_RPAREN, + [109532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(6792), 1, sym_identifier, - [109376] = 2, + [109539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6759), 1, - anon_sym_RPAREN, - [109383] = 2, + ACTIONS(6794), 1, + anon_sym_RBRACK, + [109546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_RPAREN, - [109390] = 2, + ACTIONS(6796), 1, + anon_sym_SEMI, + [109553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6763), 1, + ACTIONS(6798), 1, anon_sym_RPAREN, - [109397] = 2, + [109560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6765), 1, - anon_sym_COLON, - [109404] = 2, + ACTIONS(6800), 1, + anon_sym_RBRACK, + [109567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + anon_sym_RBRACE, + [109574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6767), 1, + ACTIONS(6804), 1, anon_sym_RPAREN, - [109411] = 2, + [109581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 1, + anon_sym_LPAREN, + [109588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6769), 1, + ACTIONS(6808), 1, sym_identifier, - [109418] = 2, + [109595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6771), 1, + ACTIONS(6810), 1, sym_identifier, - [109425] = 2, + [109602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6773), 1, + ACTIONS(6075), 1, anon_sym_RPAREN, - [109432] = 2, + [109609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6775), 1, - anon_sym_RPAREN, - [109439] = 2, + ACTIONS(6812), 1, + sym_identifier, + [109616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6814), 1, + sym_identifier, + [109623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6816), 1, + anon_sym_COLON, + [109630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6818), 1, + sym_identifier, + [109637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 1, + ACTIONS(6820), 1, anon_sym_RBRACK, - [109446] = 2, + [109644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6779), 1, + ACTIONS(6822), 1, + anon_sym_RBRACK, + [109651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6824), 1, + anon_sym_COLON, + [109658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6099), 1, anon_sym_RPAREN, - [109453] = 2, + [109665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5568), 1, + anon_sym_SEMI, + [109672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6781), 1, + ACTIONS(6826), 1, anon_sym_RPAREN, - [109460] = 2, + [109679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, + ACTIONS(6828), 1, anon_sym_RPAREN, - [109467] = 2, + [109686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6785), 1, + ACTIONS(6830), 1, anon_sym_RPAREN, - [109474] = 2, + [109693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6787), 1, - sym_identifier, - [109481] = 2, + ACTIONS(6832), 1, + anon_sym_RPAREN, + [109700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 1, + ACTIONS(6834), 1, anon_sym_RPAREN, - [109488] = 2, + [109707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(6836), 1, sym_identifier, - [109495] = 2, + [109714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6179), 1, + ACTIONS(6838), 1, anon_sym_RPAREN, - [109502] = 2, + [109721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6793), 1, - sym_identifier, - [109509] = 2, + ACTIONS(6109), 1, + anon_sym_RPAREN, + [109728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(6840), 1, sym_identifier, - [109516] = 2, + [109735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6797), 1, - anon_sym_RBRACK, - [109523] = 2, + ACTIONS(6842), 1, + anon_sym_RPAREN, + [109742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6799), 1, + ACTIONS(6844), 1, anon_sym_COLON, - [109530] = 2, + [109749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6846), 1, + anon_sym_RBRACK, + [109756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6848), 1, + anon_sym_RBRACK, + [109763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6850), 1, sym_identifier, - [109537] = 2, + [109770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6852), 1, + anon_sym_RPAREN, + [109777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6803), 1, + ACTIONS(6854), 1, sym_identifier, - [109544] = 2, + [109784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, + ACTIONS(6856), 1, sym_identifier, - [109551] = 2, + [109791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_COLON, - [109558] = 2, + ACTIONS(6858), 1, + anon_sym_DOT, + [109798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6860), 1, + anon_sym_DOT, + [109805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6809), 1, + ACTIONS(6862), 1, anon_sym_RPAREN, - [109565] = 2, + [109812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6864), 1, + anon_sym_RBRACK, + [109819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6811), 1, + ACTIONS(6866), 1, sym_identifier, - [109572] = 2, + [109826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_COLON, - [109579] = 2, + ACTIONS(6868), 1, + sym_identifier, + [109833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6815), 1, - anon_sym_RBRACK, - [109586] = 2, + ACTIONS(6871), 1, + sym_identifier, + [109840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 1, - anon_sym_RPAREN, - [109593] = 2, + ACTIONS(6873), 1, + sym_identifier, + [109847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6875), 1, + anon_sym_LPAREN, + [109854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6817), 1, + ACTIONS(6877), 1, anon_sym_RPAREN, - [109600] = 2, + [109861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 1, + ACTIONS(6879), 1, sym_identifier, - [109607] = 2, + [109868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 1, - sym_identifier, - [109614] = 2, + ACTIONS(6881), 1, + anon_sym_RPAREN, + [109875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(6883), 1, anon_sym_COLON, - [109621] = 2, + [109882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, + ACTIONS(6885), 1, anon_sym_RPAREN, - [109628] = 2, + [109889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6827), 1, + ACTIONS(6887), 1, sym_identifier, - [109635] = 2, + [109896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, - anon_sym_RPAREN, - [109642] = 2, + ACTIONS(6889), 1, + sym_identifier, + [109903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6891), 1, + sym_identifier, + [109910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(6893), 1, anon_sym_RPAREN, - [109649] = 2, + [109917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6833), 1, - anon_sym_RBRACE, - [109656] = 2, + ACTIONS(6895), 1, + sym_identifier, + [109924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6835), 1, - anon_sym_RPAREN, - [109663] = 2, + ACTIONS(5788), 1, + sym_identifier, + [109931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6837), 1, + ACTIONS(6897), 1, anon_sym_RPAREN, - [109670] = 2, + [109938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6839), 1, + ACTIONS(6899), 1, sym_identifier, - [109677] = 2, + [109945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6901), 1, + anon_sym_SEMI, + [109952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6841), 1, + ACTIONS(6903), 1, sym_identifier, - [109684] = 2, + [109959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6843), 1, + ACTIONS(6905), 1, anon_sym_RPAREN, - [109691] = 2, + [109966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6845), 1, - anon_sym_EQ, - [109698] = 2, + ACTIONS(6907), 1, + anon_sym_LPAREN, + [109973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6847), 1, - sym_identifier, - [109705] = 2, + ACTIONS(6909), 1, + anon_sym_COLON, + [109980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6911), 1, + anon_sym_SEMI, + [109987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6849), 1, + ACTIONS(6913), 1, sym_identifier, - [109712] = 2, + [109994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6851), 1, + ACTIONS(6915), 1, sym_identifier, - [109719] = 2, + [110001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6917), 1, + anon_sym_LBRACE, + [110008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6919), 1, + anon_sym_RPAREN, + [110015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6853), 1, + ACTIONS(6921), 1, sym_identifier, - [109726] = 2, + [110022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6855), 1, + ACTIONS(6923), 1, anon_sym_RPAREN, - [109733] = 2, + [110029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6857), 1, + ACTIONS(6925), 1, anon_sym_RPAREN, - [109740] = 2, + [110036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6289), 1, + ACTIONS(6927), 1, + anon_sym_EQ, + [110043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6929), 1, anon_sym_RPAREN, - [109747] = 2, + [110050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, + ACTIONS(6931), 1, anon_sym_RPAREN, - [109754] = 2, + [110057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - anon_sym_LPAREN, - [109761] = 2, + ACTIONS(6933), 1, + anon_sym_RPAREN, + [110064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6935), 1, + anon_sym_RBRACK, + [110071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, + ACTIONS(6937), 1, anon_sym_RPAREN, - [109768] = 2, + [110078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6865), 1, + ACTIONS(6939), 1, sym_identifier, - [109775] = 2, + [110085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6867), 1, - sym_identifier, - [109782] = 2, + ACTIONS(6941), 1, + anon_sym_RPAREN, + [110092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6869), 1, + ACTIONS(6943), 1, sym_identifier, - [109789] = 2, + [110099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, - anon_sym_RPAREN, - [109796] = 2, + ACTIONS(6945), 1, + anon_sym_RBRACE, + [110106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6873), 1, + ACTIONS(6947), 1, sym_identifier, - [109803] = 2, + [110113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5887), 1, + ACTIONS(6949), 1, anon_sym_RPAREN, - [109810] = 2, + [110120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - sym_identifier, - [109817] = 2, + ACTIONS(6240), 1, + anon_sym_RPAREN, + [110127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6877), 1, + ACTIONS(6286), 1, + anon_sym_RPAREN, + [110134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6951), 1, sym_identifier, - [109824] = 2, + [110141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, + ACTIONS(6953), 1, anon_sym_RBRACK, - [109831] = 2, + [110148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COLON, - [109838] = 2, + ACTIONS(6955), 1, + anon_sym_RBRACE, + [110155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 1, - sym_identifier, - [109845] = 2, + ACTIONS(6957), 1, + anon_sym_DOT, + [110162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 1, + ACTIONS(6959), 1, anon_sym_RBRACK, - [109852] = 2, + [110169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6887), 1, + ACTIONS(6961), 1, sym_identifier, - [109859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6889), 1, - anon_sym_RPAREN, - [109866] = 2, + [110176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6891), 1, + ACTIONS(6963), 1, anon_sym_COLON, - [109873] = 2, + [110183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 1, - sym_identifier, - [109880] = 2, + ACTIONS(6965), 1, + anon_sym_COLON, + [110190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6895), 1, + ACTIONS(6967), 1, sym_identifier, - [109887] = 2, + [110197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(6969), 1, anon_sym_RPAREN, - [109894] = 2, + [110204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6971), 1, sym_identifier, - [109901] = 2, + [110211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(6973), 1, sym_identifier, - [109908] = 2, + [110218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6903), 1, + ACTIONS(6975), 1, sym_identifier, - [109915] = 2, + [110225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6905), 1, + ACTIONS(6977), 1, sym_identifier, - [109922] = 2, + [110232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6979), 1, + ts_builtin_sym_end, + [110239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(6981), 1, sym_identifier, - [109929] = 2, + [110246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6910), 1, - anon_sym_DOT, - [109936] = 2, + ACTIONS(6983), 1, + anon_sym_SEMI, + [110253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 1, - anon_sym_DOT, - [109943] = 2, + ACTIONS(6985), 1, + sym_identifier, + [110260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym_DOT, - [109950] = 2, + ACTIONS(6376), 1, + anon_sym_EQ, + [110267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6914), 1, - anon_sym_LPAREN, - [109957] = 2, + ACTIONS(6987), 1, + anon_sym_RPAREN, + [110274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6916), 1, + ACTIONS(6989), 1, anon_sym_COLON, - [109964] = 2, - ACTIONS(3), 1, + [110281] = 2, + ACTIONS(5549), 1, sym_comment, - ACTIONS(6918), 1, - anon_sym_RBRACK, - [109971] = 2, + ACTIONS(6991), 1, + anon_sym_LF, + [110288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 1, - anon_sym_LPAREN, - [109978] = 2, + ACTIONS(6993), 1, + anon_sym_RBRACK, + [110295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6922), 1, - sym_identifier, - [109985] = 2, + ACTIONS(6995), 1, + anon_sym_RPAREN, + [110302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6924), 1, + ACTIONS(6997), 1, sym_identifier, - [109992] = 2, + [110309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5971), 1, + ACTIONS(6298), 1, anon_sym_RPAREN, - [109999] = 2, + [110316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_RBRACK, - [110006] = 2, + ACTIONS(6999), 1, + anon_sym_COLON, + [110323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6928), 1, - anon_sym_RPAREN, - [110013] = 2, + ACTIONS(7001), 1, + sym_identifier, + [110330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, - anon_sym_RPAREN, - [110020] = 2, + ACTIONS(7003), 1, + sym_identifier, + [110337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, + ACTIONS(7005), 1, sym_identifier, - [110027] = 2, + [110344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6934), 1, + ACTIONS(7007), 1, anon_sym_RPAREN, - [110034] = 2, + [110351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6936), 1, + ACTIONS(7009), 1, anon_sym_RPAREN, - [110041] = 2, + [110358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6938), 1, - sym_identifier, - [110048] = 2, + ACTIONS(7011), 1, + anon_sym_RPAREN, + [110365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(7013), 1, sym_identifier, - [110055] = 2, + [110372] = 2, + ACTIONS(5549), 1, + sym_comment, + ACTIONS(7015), 1, + anon_sym_LF, + [110379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6942), 1, + ACTIONS(7017), 1, anon_sym_class, - [110062] = 2, + [110386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7019), 1, + sym_identifier, + [110393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6944), 1, + ACTIONS(7021), 1, sym_identifier, - [110069] = 2, + [110400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 1, + ACTIONS(7023), 1, anon_sym_RPAREN, - [110076] = 2, + [110407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6948), 1, + ACTIONS(7025), 1, sym_identifier, - [110083] = 2, + [110414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6950), 1, - anon_sym_LPAREN, - [110090] = 2, + ACTIONS(7027), 1, + anon_sym_RPAREN, + [110421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6952), 1, - sym_identifier, - [110097] = 2, + ACTIONS(6232), 1, + anon_sym_RPAREN, + [110428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6954), 1, - sym_identifier, - [110104] = 2, + ACTIONS(7029), 1, + anon_sym_RPAREN, + [110435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6956), 1, - sym_identifier, - [110111] = 2, + ACTIONS(7031), 1, + anon_sym_RPAREN, + [110442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6958), 1, + ACTIONS(7033), 1, sym_identifier, - [110118] = 2, - ACTIONS(5462), 1, + [110449] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6960), 1, - anon_sym_LF, - [110125] = 2, + ACTIONS(6167), 1, + anon_sym_EQ, + [110456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6962), 1, + ACTIONS(7035), 1, anon_sym_RPAREN, - [110132] = 2, + [110463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7037), 1, + anon_sym_LPAREN, + [110470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6964), 1, + ACTIONS(7039), 1, anon_sym_RPAREN, - [110139] = 2, + [110477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6966), 1, + ACTIONS(7041), 1, anon_sym_RPAREN, - [110146] = 2, + [110484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6968), 1, - anon_sym_LPAREN, - [110153] = 2, + ACTIONS(7043), 1, + anon_sym_RPAREN, + [110491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6161), 1, + ACTIONS(7045), 1, anon_sym_RPAREN, - [110160] = 2, + [110498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_COLON, - [110167] = 2, + ACTIONS(6330), 1, + anon_sym_RPAREN, + [110505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6972), 1, - anon_sym_RBRACK, - [110174] = 2, + ACTIONS(7047), 1, + anon_sym_LPAREN, + [110512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(7049), 1, anon_sym_RBRACK, - [110181] = 2, + [110519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6976), 1, - anon_sym_while, - [110188] = 2, + ACTIONS(7051), 1, + anon_sym_RPAREN, + [110526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6978), 1, - anon_sym_COLON, - [110195] = 2, + ACTIONS(7053), 1, + anon_sym_LPAREN, + [110533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, - anon_sym_RPAREN, - [110202] = 2, + ACTIONS(7055), 1, + anon_sym_COLON, + [110540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7057), 1, anon_sym_LPAREN, - [110209] = 2, + [110547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, + ACTIONS(7059), 1, anon_sym_RPAREN, - [110216] = 2, + [110554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 1, - anon_sym_RPAREN, - [110223] = 2, + ACTIONS(7061), 1, + sym_identifier, + [110561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6984), 1, - anon_sym_RPAREN, - [110230] = 2, + ACTIONS(7063), 1, + sym_identifier, + [110568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6986), 1, + ACTIONS(7065), 1, sym_identifier, - [110237] = 2, + [110575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6988), 1, + ACTIONS(7067), 1, sym_identifier, - [110244] = 2, + [110582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7069), 1, + anon_sym_RPAREN, + [110589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym_RPAREN, + [110596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7073), 1, + anon_sym_RBRACK, + [110603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6990), 1, + ACTIONS(7075), 1, anon_sym_DOT, - [110251] = 2, + [110610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6992), 1, - anon_sym_LPAREN, - [110258] = 2, + ACTIONS(7077), 1, + anon_sym_RBRACK, + [110617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6994), 1, + ACTIONS(7079), 1, anon_sym_COLON, - [110265] = 2, + [110624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6996), 1, - sym_identifier, - [110272] = 2, + ACTIONS(6456), 1, + anon_sym_RPAREN, + [110631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6998), 1, - sym_identifier, - [110279] = 2, + ACTIONS(7081), 1, + anon_sym_RBRACE, + [110638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7001), 1, + ACTIONS(7083), 1, sym_identifier, - [110286] = 2, + [110645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7003), 1, + ACTIONS(7085), 1, anon_sym_DOT, - [110293] = 2, + [110652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7005), 1, - anon_sym_LPAREN, - [110300] = 2, + ACTIONS(7087), 1, + anon_sym_RPAREN, + [110659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7007), 1, - anon_sym_RPAREN, - [110307] = 2, + ACTIONS(7089), 1, + anon_sym_EQ, + [110666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 1, - sym_identifier, - [110314] = 2, + ACTIONS(7091), 1, + anon_sym_while, + [110673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, - sym_identifier, - [110321] = 2, + ACTIONS(6093), 1, + anon_sym_RPAREN, + [110680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7013), 1, - sym_identifier, - [110328] = 2, + ACTIONS(7093), 1, + anon_sym_RPAREN, + [110687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(7095), 1, anon_sym_DOT, - [110335] = 2, + [110694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7017), 1, - anon_sym_RPAREN, - [110342] = 2, + ACTIONS(7097), 1, + anon_sym_RBRACK, + [110701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - sym_identifier, - [110349] = 2, + ACTIONS(7099), 1, + anon_sym_RPAREN, + [110708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, + ACTIONS(7101), 1, anon_sym_DOT, - [110356] = 2, + [110715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - sym_identifier, - [110363] = 2, + ACTIONS(7103), 1, + anon_sym_RPAREN, + [110722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7025), 1, + ACTIONS(7105), 1, anon_sym_DOT, - [110370] = 2, + [110729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 1, + ACTIONS(7107), 1, anon_sym_DOT, - [110377] = 2, + [110736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7029), 1, + ACTIONS(7109), 1, anon_sym_DOT, - [110384] = 2, + [110743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7031), 1, + ACTIONS(7111), 1, anon_sym_DOT, - [110391] = 2, + [110750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7033), 1, + ACTIONS(7113), 1, anon_sym_DOT, - [110398] = 2, + [110757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7035), 1, + ACTIONS(7115), 1, anon_sym_LPAREN, - [110405] = 2, + [110764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 1, + ACTIONS(7117), 1, anon_sym_LPAREN, - [110412] = 2, + [110771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7039), 1, - ts_builtin_sym_end, - [110419] = 2, + ACTIONS(7119), 1, + anon_sym_COLON, + [110778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(7121), 1, anon_sym_LPAREN, - [110426] = 2, - ACTIONS(5462), 1, + [110785] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7043), 1, - anon_sym_LF, - [110433] = 2, + ACTIONS(7123), 1, + sym_identifier, + [110792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7045), 1, + ACTIONS(7125), 1, anon_sym_LPAREN, - [110440] = 2, + [110799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7047), 1, - sym_identifier, - [110447] = 2, + ACTIONS(6400), 1, + anon_sym_RPAREN, + [110806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7049), 1, + ACTIONS(7127), 1, anon_sym_LPAREN, - [110454] = 2, + [110813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - anon_sym_RPAREN, - [110461] = 2, + ACTIONS(7129), 1, + anon_sym_RBRACK, + [110820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, + ACTIONS(7131), 1, anon_sym_LPAREN, - [110468] = 2, + [110827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7055), 1, - anon_sym_class, - [110475] = 2, + ACTIONS(7133), 1, + sym_identifier, + [110834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7057), 1, + ACTIONS(7135), 1, sym_identifier, - [110482] = 2, + [110841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6319), 1, + ACTIONS(7137), 1, anon_sym_RPAREN, - [110489] = 2, + [110848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_LPAREN, - [110496] = 2, + ACTIONS(7139), 1, + anon_sym_COLON, + [110855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 1, + ACTIONS(7141), 1, anon_sym_COLON, - [110503] = 2, + [110862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 1, - anon_sym_RPAREN, - [110510] = 2, + ACTIONS(7143), 1, + sym_identifier, + [110869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7145), 1, anon_sym_RPAREN, - [110517] = 2, + [110876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 1, - anon_sym_RBRACK, - [110524] = 2, + ACTIONS(7147), 1, + sym_identifier, + [110883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7069), 1, - anon_sym_LPAREN, + ACTIONS(7149), 1, + sym_identifier, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(970)] = 0, - [SMALL_STATE(971)] = 110, - [SMALL_STATE(972)] = 228, - [SMALL_STATE(973)] = 346, - [SMALL_STATE(974)] = 464, - [SMALL_STATE(975)] = 582, - [SMALL_STATE(976)] = 700, - [SMALL_STATE(977)] = 818, - [SMALL_STATE(978)] = 936, - [SMALL_STATE(979)] = 1054, - [SMALL_STATE(980)] = 1164, - [SMALL_STATE(981)] = 1282, - [SMALL_STATE(982)] = 1400, - [SMALL_STATE(983)] = 1518, - [SMALL_STATE(984)] = 1636, - [SMALL_STATE(985)] = 1754, - [SMALL_STATE(986)] = 1872, - [SMALL_STATE(987)] = 1990, - [SMALL_STATE(988)] = 2108, - [SMALL_STATE(989)] = 2226, - [SMALL_STATE(990)] = 2344, - [SMALL_STATE(991)] = 2462, - [SMALL_STATE(992)] = 2580, - [SMALL_STATE(993)] = 2681, - [SMALL_STATE(994)] = 2750, - [SMALL_STATE(995)] = 2819, - [SMALL_STATE(996)] = 2888, - [SMALL_STATE(997)] = 2975, - [SMALL_STATE(998)] = 3062, - [SMALL_STATE(999)] = 3165, - [SMALL_STATE(1000)] = 3234, - [SMALL_STATE(1001)] = 3303, - [SMALL_STATE(1002)] = 3394, - [SMALL_STATE(1003)] = 3495, - [SMALL_STATE(1004)] = 3598, - [SMALL_STATE(1005)] = 3701, - [SMALL_STATE(1006)] = 3804, - [SMALL_STATE(1007)] = 3891, - [SMALL_STATE(1008)] = 3990, - [SMALL_STATE(1009)] = 4059, - [SMALL_STATE(1010)] = 4162, - [SMALL_STATE(1011)] = 4253, - [SMALL_STATE(1012)] = 4358, - [SMALL_STATE(1013)] = 4463, - [SMALL_STATE(1014)] = 4554, - [SMALL_STATE(1015)] = 4641, - [SMALL_STATE(1016)] = 4744, - [SMALL_STATE(1017)] = 4843, - [SMALL_STATE(1018)] = 4934, - [SMALL_STATE(1019)] = 5006, - [SMALL_STATE(1020)] = 5078, - [SMALL_STATE(1021)] = 5150, - [SMALL_STATE(1022)] = 5217, - [SMALL_STATE(1023)] = 5306, - [SMALL_STATE(1024)] = 5395, - [SMALL_STATE(1025)] = 5486, - [SMALL_STATE(1026)] = 5577, - [SMALL_STATE(1027)] = 5668, - [SMALL_STATE(1028)] = 5757, - [SMALL_STATE(1029)] = 5848, - [SMALL_STATE(1030)] = 5927, - [SMALL_STATE(1031)] = 6018, - [SMALL_STATE(1032)] = 6109, - [SMALL_STATE(1033)] = 6198, - [SMALL_STATE(1034)] = 6268, - [SMALL_STATE(1035)] = 6358, - [SMALL_STATE(1036)] = 6428, - [SMALL_STATE(1037)] = 6502, - [SMALL_STATE(1038)] = 6620, - [SMALL_STATE(1039)] = 6710, - [SMALL_STATE(1040)] = 6800, - [SMALL_STATE(1041)] = 6890, - [SMALL_STATE(1042)] = 6980, - [SMALL_STATE(1043)] = 7070, - [SMALL_STATE(1044)] = 7151, - [SMALL_STATE(1045)] = 7225, - [SMALL_STATE(1046)] = 7289, - [SMALL_STATE(1047)] = 7357, - [SMALL_STATE(1048)] = 7421, - [SMALL_STATE(1049)] = 7485, - [SMALL_STATE(1050)] = 7549, - [SMALL_STATE(1051)] = 7627, - [SMALL_STATE(1052)] = 7701, - [SMALL_STATE(1053)] = 7765, - [SMALL_STATE(1054)] = 7829, - [SMALL_STATE(1055)] = 7903, - [SMALL_STATE(1056)] = 7967, - [SMALL_STATE(1057)] = 8031, - [SMALL_STATE(1058)] = 8105, - [SMALL_STATE(1059)] = 8183, - [SMALL_STATE(1060)] = 8247, - [SMALL_STATE(1061)] = 8311, - [SMALL_STATE(1062)] = 8389, - [SMALL_STATE(1063)] = 8453, - [SMALL_STATE(1064)] = 8517, - [SMALL_STATE(1065)] = 8581, - [SMALL_STATE(1066)] = 8645, - [SMALL_STATE(1067)] = 8723, - [SMALL_STATE(1068)] = 8787, - [SMALL_STATE(1069)] = 8851, - [SMALL_STATE(1070)] = 8915, - [SMALL_STATE(1071)] = 8979, - [SMALL_STATE(1072)] = 9047, - [SMALL_STATE(1073)] = 9111, - [SMALL_STATE(1074)] = 9175, - [SMALL_STATE(1075)] = 9239, - [SMALL_STATE(1076)] = 9307, - [SMALL_STATE(1077)] = 9428, - [SMALL_STATE(1078)] = 9491, - [SMALL_STATE(1079)] = 9554, - [SMALL_STATE(1080)] = 9629, - [SMALL_STATE(1081)] = 9708, - [SMALL_STATE(1082)] = 9829, - [SMALL_STATE(1083)] = 9950, - [SMALL_STATE(1084)] = 10029, - [SMALL_STATE(1085)] = 10092, - [SMALL_STATE(1086)] = 10167, - [SMALL_STATE(1087)] = 10230, - [SMALL_STATE(1088)] = 10351, - [SMALL_STATE(1089)] = 10426, - [SMALL_STATE(1090)] = 10547, - [SMALL_STATE(1091)] = 10622, - [SMALL_STATE(1092)] = 10697, - [SMALL_STATE(1093)] = 10760, - [SMALL_STATE(1094)] = 10881, - [SMALL_STATE(1095)] = 10944, - [SMALL_STATE(1096)] = 11007, - [SMALL_STATE(1097)] = 11128, - [SMALL_STATE(1098)] = 11249, - [SMALL_STATE(1099)] = 11324, - [SMALL_STATE(1100)] = 11445, - [SMALL_STATE(1101)] = 11566, - [SMALL_STATE(1102)] = 11687, - [SMALL_STATE(1103)] = 11808, - [SMALL_STATE(1104)] = 11870, - [SMALL_STATE(1105)] = 11938, - [SMALL_STATE(1106)] = 12000, - [SMALL_STATE(1107)] = 12068, - [SMALL_STATE(1108)] = 12130, - [SMALL_STATE(1109)] = 12192, - [SMALL_STATE(1110)] = 12254, - [SMALL_STATE(1111)] = 12318, - [SMALL_STATE(1112)] = 12394, - [SMALL_STATE(1113)] = 12456, - [SMALL_STATE(1114)] = 12518, - [SMALL_STATE(1115)] = 12580, - [SMALL_STATE(1116)] = 12642, - [SMALL_STATE(1117)] = 12704, - [SMALL_STATE(1118)] = 12766, - [SMALL_STATE(1119)] = 12834, - [SMALL_STATE(1120)] = 12896, - [SMALL_STATE(1121)] = 12958, - [SMALL_STATE(1122)] = 13020, - [SMALL_STATE(1123)] = 13088, - [SMALL_STATE(1124)] = 13156, - [SMALL_STATE(1125)] = 13218, - [SMALL_STATE(1126)] = 13294, - [SMALL_STATE(1127)] = 13356, - [SMALL_STATE(1128)] = 13418, - [SMALL_STATE(1129)] = 13480, - [SMALL_STATE(1130)] = 13542, - [SMALL_STATE(1131)] = 13604, - [SMALL_STATE(1132)] = 13686, - [SMALL_STATE(1133)] = 13748, - [SMALL_STATE(1134)] = 13810, - [SMALL_STATE(1135)] = 13872, - [SMALL_STATE(1136)] = 13934, - [SMALL_STATE(1137)] = 13996, - [SMALL_STATE(1138)] = 14058, - [SMALL_STATE(1139)] = 14134, - [SMALL_STATE(1140)] = 14196, - [SMALL_STATE(1141)] = 14258, - [SMALL_STATE(1142)] = 14320, - [SMALL_STATE(1143)] = 14382, - [SMALL_STATE(1144)] = 14444, - [SMALL_STATE(1145)] = 14506, - [SMALL_STATE(1146)] = 14568, - [SMALL_STATE(1147)] = 14650, - [SMALL_STATE(1148)] = 14712, - [SMALL_STATE(1149)] = 14774, - [SMALL_STATE(1150)] = 14836, - [SMALL_STATE(1151)] = 14898, - [SMALL_STATE(1152)] = 14960, - [SMALL_STATE(1153)] = 15022, - [SMALL_STATE(1154)] = 15084, - [SMALL_STATE(1155)] = 15146, - [SMALL_STATE(1156)] = 15208, - [SMALL_STATE(1157)] = 15270, - [SMALL_STATE(1158)] = 15332, - [SMALL_STATE(1159)] = 15406, - [SMALL_STATE(1160)] = 15468, - [SMALL_STATE(1161)] = 15530, - [SMALL_STATE(1162)] = 15592, - [SMALL_STATE(1163)] = 15654, - [SMALL_STATE(1164)] = 15716, - [SMALL_STATE(1165)] = 15778, - [SMALL_STATE(1166)] = 15840, - [SMALL_STATE(1167)] = 15902, - [SMALL_STATE(1168)] = 15976, - [SMALL_STATE(1169)] = 16038, - [SMALL_STATE(1170)] = 16100, - [SMALL_STATE(1171)] = 16162, - [SMALL_STATE(1172)] = 16224, - [SMALL_STATE(1173)] = 16286, - [SMALL_STATE(1174)] = 16348, - [SMALL_STATE(1175)] = 16410, - [SMALL_STATE(1176)] = 16472, - [SMALL_STATE(1177)] = 16540, - [SMALL_STATE(1178)] = 16602, - [SMALL_STATE(1179)] = 16678, - [SMALL_STATE(1180)] = 16751, - [SMALL_STATE(1181)] = 16820, - [SMALL_STATE(1182)] = 16889, - [SMALL_STATE(1183)] = 16962, - [SMALL_STATE(1184)] = 17035, - [SMALL_STATE(1185)] = 17102, - [SMALL_STATE(1186)] = 17169, - [SMALL_STATE(1187)] = 17242, - [SMALL_STATE(1188)] = 17315, - [SMALL_STATE(1189)] = 17388, - [SMALL_STATE(1190)] = 17469, - [SMALL_STATE(1191)] = 17530, - [SMALL_STATE(1192)] = 17594, - [SMALL_STATE(1193)] = 17654, - [SMALL_STATE(1194)] = 17714, - [SMALL_STATE(1195)] = 17778, - [SMALL_STATE(1196)] = 17842, - [SMALL_STATE(1197)] = 17906, - [SMALL_STATE(1198)] = 17978, - [SMALL_STATE(1199)] = 18038, - [SMALL_STATE(1200)] = 18102, - [SMALL_STATE(1201)] = 18162, - [SMALL_STATE(1202)] = 18222, - [SMALL_STATE(1203)] = 18286, - [SMALL_STATE(1204)] = 18346, - [SMALL_STATE(1205)] = 18406, - [SMALL_STATE(1206)] = 18466, - [SMALL_STATE(1207)] = 18526, - [SMALL_STATE(1208)] = 18586, - [SMALL_STATE(1209)] = 18646, - [SMALL_STATE(1210)] = 18714, - [SMALL_STATE(1211)] = 18780, - [SMALL_STATE(1212)] = 18846, - [SMALL_STATE(1213)] = 18910, - [SMALL_STATE(1214)] = 18970, - [SMALL_STATE(1215)] = 19030, - [SMALL_STATE(1216)] = 19102, - [SMALL_STATE(1217)] = 19162, - [SMALL_STATE(1218)] = 19224, - [SMALL_STATE(1219)] = 19284, - [SMALL_STATE(1220)] = 19346, - [SMALL_STATE(1221)] = 19410, - [SMALL_STATE(1222)] = 19474, - [SMALL_STATE(1223)] = 19538, - [SMALL_STATE(1224)] = 19598, - [SMALL_STATE(1225)] = 19658, - [SMALL_STATE(1226)] = 19726, - [SMALL_STATE(1227)] = 19786, - [SMALL_STATE(1228)] = 19846, - [SMALL_STATE(1229)] = 19906, - [SMALL_STATE(1230)] = 19966, - [SMALL_STATE(1231)] = 20032, - [SMALL_STATE(1232)] = 20092, - [SMALL_STATE(1233)] = 20158, - [SMALL_STATE(1234)] = 20221, - [SMALL_STATE(1235)] = 20280, - [SMALL_STATE(1236)] = 20339, - [SMALL_STATE(1237)] = 20398, - [SMALL_STATE(1238)] = 20459, - [SMALL_STATE(1239)] = 20522, - [SMALL_STATE(1240)] = 20585, - [SMALL_STATE(1241)] = 20648, - [SMALL_STATE(1242)] = 20707, - [SMALL_STATE(1243)] = 20770, - [SMALL_STATE(1244)] = 20833, - [SMALL_STATE(1245)] = 20896, - [SMALL_STATE(1246)] = 20955, - [SMALL_STATE(1247)] = 21014, - [SMALL_STATE(1248)] = 21077, - [SMALL_STATE(1249)] = 21140, - [SMALL_STATE(1250)] = 21203, - [SMALL_STATE(1251)] = 21262, - [SMALL_STATE(1252)] = 21323, - [SMALL_STATE(1253)] = 21388, - [SMALL_STATE(1254)] = 21451, - [SMALL_STATE(1255)] = 21510, - [SMALL_STATE(1256)] = 21571, - [SMALL_STATE(1257)] = 21634, - [SMALL_STATE(1258)] = 21693, - [SMALL_STATE(1259)] = 21758, - [SMALL_STATE(1260)] = 21823, - [SMALL_STATE(1261)] = 21882, - [SMALL_STATE(1262)] = 21941, - [SMALL_STATE(1263)] = 22000, - [SMALL_STATE(1264)] = 22113, - [SMALL_STATE(1265)] = 22172, - [SMALL_STATE(1266)] = 22233, - [SMALL_STATE(1267)] = 22292, - [SMALL_STATE(1268)] = 22353, - [SMALL_STATE(1269)] = 22414, - [SMALL_STATE(1270)] = 22475, - [SMALL_STATE(1271)] = 22534, - [SMALL_STATE(1272)] = 22593, - [SMALL_STATE(1273)] = 22654, - [SMALL_STATE(1274)] = 22715, - [SMALL_STATE(1275)] = 22774, - [SMALL_STATE(1276)] = 22833, - [SMALL_STATE(1277)] = 22892, - [SMALL_STATE(1278)] = 22951, - [SMALL_STATE(1279)] = 23064, - [SMALL_STATE(1280)] = 23123, - [SMALL_STATE(1281)] = 23182, - [SMALL_STATE(1282)] = 23243, - [SMALL_STATE(1283)] = 23302, - [SMALL_STATE(1284)] = 23361, - [SMALL_STATE(1285)] = 23420, - [SMALL_STATE(1286)] = 23479, - [SMALL_STATE(1287)] = 23538, - [SMALL_STATE(1288)] = 23597, - [SMALL_STATE(1289)] = 23656, - [SMALL_STATE(1290)] = 23717, - [SMALL_STATE(1291)] = 23776, - [SMALL_STATE(1292)] = 23837, - [SMALL_STATE(1293)] = 23896, - [SMALL_STATE(1294)] = 23955, - [SMALL_STATE(1295)] = 24014, - [SMALL_STATE(1296)] = 24079, - [SMALL_STATE(1297)] = 24140, - [SMALL_STATE(1298)] = 24201, - [SMALL_STATE(1299)] = 24262, - [SMALL_STATE(1300)] = 24321, - [SMALL_STATE(1301)] = 24379, - [SMALL_STATE(1302)] = 24437, - [SMALL_STATE(1303)] = 24495, - [SMALL_STATE(1304)] = 24553, - [SMALL_STATE(1305)] = 24611, - [SMALL_STATE(1306)] = 24669, - [SMALL_STATE(1307)] = 24727, - [SMALL_STATE(1308)] = 24785, - [SMALL_STATE(1309)] = 24843, - [SMALL_STATE(1310)] = 24901, - [SMALL_STATE(1311)] = 24959, - [SMALL_STATE(1312)] = 25017, - [SMALL_STATE(1313)] = 25079, - [SMALL_STATE(1314)] = 25137, - [SMALL_STATE(1315)] = 25199, - [SMALL_STATE(1316)] = 25257, - [SMALL_STATE(1317)] = 25315, - [SMALL_STATE(1318)] = 25373, - [SMALL_STATE(1319)] = 25431, - [SMALL_STATE(1320)] = 25489, - [SMALL_STATE(1321)] = 25547, - [SMALL_STATE(1322)] = 25605, - [SMALL_STATE(1323)] = 25663, - [SMALL_STATE(1324)] = 25721, - [SMALL_STATE(1325)] = 25779, - [SMALL_STATE(1326)] = 25837, - [SMALL_STATE(1327)] = 25895, - [SMALL_STATE(1328)] = 25957, - [SMALL_STATE(1329)] = 26023, - [SMALL_STATE(1330)] = 26081, - [SMALL_STATE(1331)] = 26143, - [SMALL_STATE(1332)] = 26201, - [SMALL_STATE(1333)] = 26259, - [SMALL_STATE(1334)] = 26321, - [SMALL_STATE(1335)] = 26379, - [SMALL_STATE(1336)] = 26437, - [SMALL_STATE(1337)] = 26495, - [SMALL_STATE(1338)] = 26553, - [SMALL_STATE(1339)] = 26611, - [SMALL_STATE(1340)] = 26677, - [SMALL_STATE(1341)] = 26735, - [SMALL_STATE(1342)] = 26793, - [SMALL_STATE(1343)] = 26851, - [SMALL_STATE(1344)] = 26909, - [SMALL_STATE(1345)] = 26967, - [SMALL_STATE(1346)] = 27025, - [SMALL_STATE(1347)] = 27083, - [SMALL_STATE(1348)] = 27141, - [SMALL_STATE(1349)] = 27199, - [SMALL_STATE(1350)] = 27257, - [SMALL_STATE(1351)] = 27315, - [SMALL_STATE(1352)] = 27373, - [SMALL_STATE(1353)] = 27431, - [SMALL_STATE(1354)] = 27489, - [SMALL_STATE(1355)] = 27547, - [SMALL_STATE(1356)] = 27605, - [SMALL_STATE(1357)] = 27737, - [SMALL_STATE(1358)] = 27795, - [SMALL_STATE(1359)] = 27853, - [SMALL_STATE(1360)] = 27911, - [SMALL_STATE(1361)] = 27969, - [SMALL_STATE(1362)] = 28027, - [SMALL_STATE(1363)] = 28093, - [SMALL_STATE(1364)] = 28151, - [SMALL_STATE(1365)] = 28209, - [SMALL_STATE(1366)] = 28267, - [SMALL_STATE(1367)] = 28325, - [SMALL_STATE(1368)] = 28383, - [SMALL_STATE(1369)] = 28441, - [SMALL_STATE(1370)] = 28499, - [SMALL_STATE(1371)] = 28561, - [SMALL_STATE(1372)] = 28619, - [SMALL_STATE(1373)] = 28677, - [SMALL_STATE(1374)] = 28735, - [SMALL_STATE(1375)] = 28795, - [SMALL_STATE(1376)] = 28853, - [SMALL_STATE(1377)] = 28911, - [SMALL_STATE(1378)] = 28969, - [SMALL_STATE(1379)] = 29031, - [SMALL_STATE(1380)] = 29089, - [SMALL_STATE(1381)] = 29147, - [SMALL_STATE(1382)] = 29209, - [SMALL_STATE(1383)] = 29271, - [SMALL_STATE(1384)] = 29329, - [SMALL_STATE(1385)] = 29387, - [SMALL_STATE(1386)] = 29453, - [SMALL_STATE(1387)] = 29515, - [SMALL_STATE(1388)] = 29573, - [SMALL_STATE(1389)] = 29631, - [SMALL_STATE(1390)] = 29763, - [SMALL_STATE(1391)] = 29821, - [SMALL_STATE(1392)] = 29879, - [SMALL_STATE(1393)] = 29937, - [SMALL_STATE(1394)] = 29995, - [SMALL_STATE(1395)] = 30053, - [SMALL_STATE(1396)] = 30111, - [SMALL_STATE(1397)] = 30169, - [SMALL_STATE(1398)] = 30227, - [SMALL_STATE(1399)] = 30285, - [SMALL_STATE(1400)] = 30343, - [SMALL_STATE(1401)] = 30401, - [SMALL_STATE(1402)] = 30459, - [SMALL_STATE(1403)] = 30517, - [SMALL_STATE(1404)] = 30575, - [SMALL_STATE(1405)] = 30633, - [SMALL_STATE(1406)] = 30691, - [SMALL_STATE(1407)] = 30749, - [SMALL_STATE(1408)] = 30809, - [SMALL_STATE(1409)] = 30867, - [SMALL_STATE(1410)] = 30925, - [SMALL_STATE(1411)] = 30983, - [SMALL_STATE(1412)] = 31041, - [SMALL_STATE(1413)] = 31099, - [SMALL_STATE(1414)] = 31157, - [SMALL_STATE(1415)] = 31219, - [SMALL_STATE(1416)] = 31277, - [SMALL_STATE(1417)] = 31335, - [SMALL_STATE(1418)] = 31393, - [SMALL_STATE(1419)] = 31451, - [SMALL_STATE(1420)] = 31509, - [SMALL_STATE(1421)] = 31567, - [SMALL_STATE(1422)] = 31625, - [SMALL_STATE(1423)] = 31683, - [SMALL_STATE(1424)] = 31741, - [SMALL_STATE(1425)] = 31799, - [SMALL_STATE(1426)] = 31857, - [SMALL_STATE(1427)] = 31915, - [SMALL_STATE(1428)] = 32047, - [SMALL_STATE(1429)] = 32105, - [SMALL_STATE(1430)] = 32163, - [SMALL_STATE(1431)] = 32221, - [SMALL_STATE(1432)] = 32279, - [SMALL_STATE(1433)] = 32337, - [SMALL_STATE(1434)] = 32395, - [SMALL_STATE(1435)] = 32453, - [SMALL_STATE(1436)] = 32511, - [SMALL_STATE(1437)] = 32569, - [SMALL_STATE(1438)] = 32627, - [SMALL_STATE(1439)] = 32685, - [SMALL_STATE(1440)] = 32743, - [SMALL_STATE(1441)] = 32801, - [SMALL_STATE(1442)] = 32863, - [SMALL_STATE(1443)] = 32921, - [SMALL_STATE(1444)] = 32979, - [SMALL_STATE(1445)] = 33037, - [SMALL_STATE(1446)] = 33095, - [SMALL_STATE(1447)] = 33153, - [SMALL_STATE(1448)] = 33211, - [SMALL_STATE(1449)] = 33269, - [SMALL_STATE(1450)] = 33327, - [SMALL_STATE(1451)] = 33385, - [SMALL_STATE(1452)] = 33443, - [SMALL_STATE(1453)] = 33501, - [SMALL_STATE(1454)] = 33559, - [SMALL_STATE(1455)] = 33617, - [SMALL_STATE(1456)] = 33675, - [SMALL_STATE(1457)] = 33742, - [SMALL_STATE(1458)] = 33841, - [SMALL_STATE(1459)] = 33948, - [SMALL_STATE(1460)] = 34007, - [SMALL_STATE(1461)] = 34114, - [SMALL_STATE(1462)] = 34221, - [SMALL_STATE(1463)] = 34328, - [SMALL_STATE(1464)] = 34435, - [SMALL_STATE(1465)] = 34542, - [SMALL_STATE(1466)] = 34653, - [SMALL_STATE(1467)] = 34710, - [SMALL_STATE(1468)] = 34817, - [SMALL_STATE(1469)] = 34916, - [SMALL_STATE(1470)] = 35023, - [SMALL_STATE(1471)] = 35130, - [SMALL_STATE(1472)] = 35237, - [SMALL_STATE(1473)] = 35344, - [SMALL_STATE(1474)] = 35451, - [SMALL_STATE(1475)] = 35558, - [SMALL_STATE(1476)] = 35665, - [SMALL_STATE(1477)] = 35772, - [SMALL_STATE(1478)] = 35879, - [SMALL_STATE(1479)] = 35986, - [SMALL_STATE(1480)] = 36093, - [SMALL_STATE(1481)] = 36200, - [SMALL_STATE(1482)] = 36307, - [SMALL_STATE(1483)] = 36418, - [SMALL_STATE(1484)] = 36474, - [SMALL_STATE(1485)] = 36530, - [SMALL_STATE(1486)] = 36586, - [SMALL_STATE(1487)] = 36642, - [SMALL_STATE(1488)] = 36698, - [SMALL_STATE(1489)] = 36754, - [SMALL_STATE(1490)] = 36810, - [SMALL_STATE(1491)] = 36866, - [SMALL_STATE(1492)] = 36952, - [SMALL_STATE(1493)] = 37040, - [SMALL_STATE(1494)] = 37096, - [SMALL_STATE(1495)] = 37152, - [SMALL_STATE(1496)] = 37208, - [SMALL_STATE(1497)] = 37296, - [SMALL_STATE(1498)] = 37382, - [SMALL_STATE(1499)] = 37470, - [SMALL_STATE(1500)] = 37526, - [SMALL_STATE(1501)] = 37614, - [SMALL_STATE(1502)] = 37740, - [SMALL_STATE(1503)] = 37796, - [SMALL_STATE(1504)] = 37852, - [SMALL_STATE(1505)] = 37908, - [SMALL_STATE(1506)] = 37964, - [SMALL_STATE(1507)] = 38020, - [SMALL_STATE(1508)] = 38076, - [SMALL_STATE(1509)] = 38164, - [SMALL_STATE(1510)] = 38220, - [SMALL_STATE(1511)] = 38276, - [SMALL_STATE(1512)] = 38334, - [SMALL_STATE(1513)] = 38422, - [SMALL_STATE(1514)] = 38478, - [SMALL_STATE(1515)] = 38534, - [SMALL_STATE(1516)] = 38639, - [SMALL_STATE(1517)] = 38744, - [SMALL_STATE(1518)] = 38849, - [SMALL_STATE(1519)] = 38954, - [SMALL_STATE(1520)] = 39059, - [SMALL_STATE(1521)] = 39144, - [SMALL_STATE(1522)] = 39249, - [SMALL_STATE(1523)] = 39354, - [SMALL_STATE(1524)] = 39459, - [SMALL_STATE(1525)] = 39564, - [SMALL_STATE(1526)] = 39669, - [SMALL_STATE(1527)] = 39774, - [SMALL_STATE(1528)] = 39871, - [SMALL_STATE(1529)] = 39976, - [SMALL_STATE(1530)] = 40081, - [SMALL_STATE(1531)] = 40186, - [SMALL_STATE(1532)] = 40271, - [SMALL_STATE(1533)] = 40356, - [SMALL_STATE(1534)] = 40461, - [SMALL_STATE(1535)] = 40566, - [SMALL_STATE(1536)] = 40663, - [SMALL_STATE(1537)] = 40768, - [SMALL_STATE(1538)] = 40873, - [SMALL_STATE(1539)] = 40978, - [SMALL_STATE(1540)] = 41083, - [SMALL_STATE(1541)] = 41168, - [SMALL_STATE(1542)] = 41231, - [SMALL_STATE(1543)] = 41309, - [SMALL_STATE(1544)] = 41387, - [SMALL_STATE(1545)] = 41465, - [SMALL_STATE(1546)] = 41543, - [SMALL_STATE(1547)] = 41621, - [SMALL_STATE(1548)] = 41677, - [SMALL_STATE(1549)] = 41755, - [SMALL_STATE(1550)] = 41813, - [SMALL_STATE(1551)] = 41890, - [SMALL_STATE(1552)] = 41997, - [SMALL_STATE(1553)] = 42074, - [SMALL_STATE(1554)] = 42151, - [SMALL_STATE(1555)] = 42228, - [SMALL_STATE(1556)] = 42305, - [SMALL_STATE(1557)] = 42382, - [SMALL_STATE(1558)] = 42458, - [SMALL_STATE(1559)] = 42534, - [SMALL_STATE(1560)] = 42610, - [SMALL_STATE(1561)] = 42686, - [SMALL_STATE(1562)] = 42762, - [SMALL_STATE(1563)] = 42838, - [SMALL_STATE(1564)] = 42914, - [SMALL_STATE(1565)] = 42990, - [SMALL_STATE(1566)] = 43066, - [SMALL_STATE(1567)] = 43142, - [SMALL_STATE(1568)] = 43218, - [SMALL_STATE(1569)] = 43294, - [SMALL_STATE(1570)] = 43370, - [SMALL_STATE(1571)] = 43446, - [SMALL_STATE(1572)] = 43522, - [SMALL_STATE(1573)] = 43598, - [SMALL_STATE(1574)] = 43674, - [SMALL_STATE(1575)] = 43750, - [SMALL_STATE(1576)] = 43826, - [SMALL_STATE(1577)] = 43902, - [SMALL_STATE(1578)] = 44003, - [SMALL_STATE(1579)] = 44104, - [SMALL_STATE(1580)] = 44205, - [SMALL_STATE(1581)] = 44306, - [SMALL_STATE(1582)] = 44407, - [SMALL_STATE(1583)] = 44508, - [SMALL_STATE(1584)] = 44609, - [SMALL_STATE(1585)] = 44710, - [SMALL_STATE(1586)] = 44811, - [SMALL_STATE(1587)] = 44912, - [SMALL_STATE(1588)] = 45013, - [SMALL_STATE(1589)] = 45114, - [SMALL_STATE(1590)] = 45207, - [SMALL_STATE(1591)] = 45300, - [SMALL_STATE(1592)] = 45401, - [SMALL_STATE(1593)] = 45502, - [SMALL_STATE(1594)] = 45603, - [SMALL_STATE(1595)] = 45704, - [SMALL_STATE(1596)] = 45805, - [SMALL_STATE(1597)] = 45906, - [SMALL_STATE(1598)] = 46011, - [SMALL_STATE(1599)] = 46112, - [SMALL_STATE(1600)] = 46213, - [SMALL_STATE(1601)] = 46279, - [SMALL_STATE(1602)] = 46345, - [SMALL_STATE(1603)] = 46400, - [SMALL_STATE(1604)] = 46455, - [SMALL_STATE(1605)] = 46510, - [SMALL_STATE(1606)] = 46565, - [SMALL_STATE(1607)] = 46620, - [SMALL_STATE(1608)] = 46675, - [SMALL_STATE(1609)] = 46739, - [SMALL_STATE(1610)] = 46837, - [SMALL_STATE(1611)] = 46893, - [SMALL_STATE(1612)] = 46947, - [SMALL_STATE(1613)] = 47011, - [SMALL_STATE(1614)] = 47065, - [SMALL_STATE(1615)] = 47119, - [SMALL_STATE(1616)] = 47175, - [SMALL_STATE(1617)] = 47226, - [SMALL_STATE(1618)] = 47325, - [SMALL_STATE(1619)] = 47372, - [SMALL_STATE(1620)] = 47423, - [SMALL_STATE(1621)] = 47476, - [SMALL_STATE(1622)] = 47527, - [SMALL_STATE(1623)] = 47580, - [SMALL_STATE(1624)] = 47631, - [SMALL_STATE(1625)] = 47684, - [SMALL_STATE(1626)] = 47733, - [SMALL_STATE(1627)] = 47782, - [SMALL_STATE(1628)] = 47835, - [SMALL_STATE(1629)] = 47890, - [SMALL_STATE(1630)] = 47943, - [SMALL_STATE(1631)] = 47996, - [SMALL_STATE(1632)] = 48047, - [SMALL_STATE(1633)] = 48102, - [SMALL_STATE(1634)] = 48155, - [SMALL_STATE(1635)] = 48210, - [SMALL_STATE(1636)] = 48261, - [SMALL_STATE(1637)] = 48308, - [SMALL_STATE(1638)] = 48363, - [SMALL_STATE(1639)] = 48464, - [SMALL_STATE(1640)] = 48565, - [SMALL_STATE(1641)] = 48616, - [SMALL_STATE(1642)] = 48669, - [SMALL_STATE(1643)] = 48716, - [SMALL_STATE(1644)] = 48767, - [SMALL_STATE(1645)] = 48818, - [SMALL_STATE(1646)] = 48869, - [SMALL_STATE(1647)] = 48921, - [SMALL_STATE(1648)] = 48967, - [SMALL_STATE(1649)] = 49013, - [SMALL_STATE(1650)] = 49059, - [SMALL_STATE(1651)] = 49105, - [SMALL_STATE(1652)] = 49159, - [SMALL_STATE(1653)] = 49205, - [SMALL_STATE(1654)] = 49253, - [SMALL_STATE(1655)] = 49301, - [SMALL_STATE(1656)] = 49349, - [SMALL_STATE(1657)] = 49397, - [SMALL_STATE(1658)] = 49445, - [SMALL_STATE(1659)] = 49493, - [SMALL_STATE(1660)] = 49545, - [SMALL_STATE(1661)] = 49595, - [SMALL_STATE(1662)] = 49645, - [SMALL_STATE(1663)] = 49695, - [SMALL_STATE(1664)] = 49745, - [SMALL_STATE(1665)] = 49795, - [SMALL_STATE(1666)] = 49843, - [SMALL_STATE(1667)] = 49889, - [SMALL_STATE(1668)] = 49935, - [SMALL_STATE(1669)] = 49981, - [SMALL_STATE(1670)] = 50029, - [SMALL_STATE(1671)] = 50077, - [SMALL_STATE(1672)] = 50125, - [SMALL_STATE(1673)] = 50175, - [SMALL_STATE(1674)] = 50223, - [SMALL_STATE(1675)] = 50271, - [SMALL_STATE(1676)] = 50317, - [SMALL_STATE(1677)] = 50365, - [SMALL_STATE(1678)] = 50411, - [SMALL_STATE(1679)] = 50457, - [SMALL_STATE(1680)] = 50503, - [SMALL_STATE(1681)] = 50551, - [SMALL_STATE(1682)] = 50603, - [SMALL_STATE(1683)] = 50655, - [SMALL_STATE(1684)] = 50709, - [SMALL_STATE(1685)] = 50755, - [SMALL_STATE(1686)] = 50801, - [SMALL_STATE(1687)] = 50847, - [SMALL_STATE(1688)] = 50897, - [SMALL_STATE(1689)] = 50947, - [SMALL_STATE(1690)] = 50993, - [SMALL_STATE(1691)] = 51045, - [SMALL_STATE(1692)] = 51095, - [SMALL_STATE(1693)] = 51145, - [SMALL_STATE(1694)] = 51195, - [SMALL_STATE(1695)] = 51245, - [SMALL_STATE(1696)] = 51291, - [SMALL_STATE(1697)] = 51337, - [SMALL_STATE(1698)] = 51383, - [SMALL_STATE(1699)] = 51429, - [SMALL_STATE(1700)] = 51475, - [SMALL_STATE(1701)] = 51527, - [SMALL_STATE(1702)] = 51573, - [SMALL_STATE(1703)] = 51619, - [SMALL_STATE(1704)] = 51665, - [SMALL_STATE(1705)] = 51711, - [SMALL_STATE(1706)] = 51757, - [SMALL_STATE(1707)] = 51803, - [SMALL_STATE(1708)] = 51849, - [SMALL_STATE(1709)] = 51895, - [SMALL_STATE(1710)] = 51941, - [SMALL_STATE(1711)] = 51987, - [SMALL_STATE(1712)] = 52033, - [SMALL_STATE(1713)] = 52079, - [SMALL_STATE(1714)] = 52125, - [SMALL_STATE(1715)] = 52170, - [SMALL_STATE(1716)] = 52219, - [SMALL_STATE(1717)] = 52264, - [SMALL_STATE(1718)] = 52357, - [SMALL_STATE(1719)] = 52408, - [SMALL_STATE(1720)] = 52453, - [SMALL_STATE(1721)] = 52546, - [SMALL_STATE(1722)] = 52633, - [SMALL_STATE(1723)] = 52678, - [SMALL_STATE(1724)] = 52723, - [SMALL_STATE(1725)] = 52796, - [SMALL_STATE(1726)] = 52845, - [SMALL_STATE(1727)] = 52890, - [SMALL_STATE(1728)] = 52935, - [SMALL_STATE(1729)] = 52988, - [SMALL_STATE(1730)] = 53033, - [SMALL_STATE(1731)] = 53082, - [SMALL_STATE(1732)] = 53131, - [SMALL_STATE(1733)] = 53176, - [SMALL_STATE(1734)] = 53221, - [SMALL_STATE(1735)] = 53266, - [SMALL_STATE(1736)] = 53319, - [SMALL_STATE(1737)] = 53364, - [SMALL_STATE(1738)] = 53409, - [SMALL_STATE(1739)] = 53462, - [SMALL_STATE(1740)] = 53507, - [SMALL_STATE(1741)] = 53558, - [SMALL_STATE(1742)] = 53611, - [SMALL_STATE(1743)] = 53656, - [SMALL_STATE(1744)] = 53701, - [SMALL_STATE(1745)] = 53746, - [SMALL_STATE(1746)] = 53791, - [SMALL_STATE(1747)] = 53836, - [SMALL_STATE(1748)] = 53881, - [SMALL_STATE(1749)] = 53926, - [SMALL_STATE(1750)] = 53971, - [SMALL_STATE(1751)] = 54016, - [SMALL_STATE(1752)] = 54061, - [SMALL_STATE(1753)] = 54106, - [SMALL_STATE(1754)] = 54151, - [SMALL_STATE(1755)] = 54196, - [SMALL_STATE(1756)] = 54241, - [SMALL_STATE(1757)] = 54286, - [SMALL_STATE(1758)] = 54331, - [SMALL_STATE(1759)] = 54376, - [SMALL_STATE(1760)] = 54421, - [SMALL_STATE(1761)] = 54466, - [SMALL_STATE(1762)] = 54511, - [SMALL_STATE(1763)] = 54556, - [SMALL_STATE(1764)] = 54601, - [SMALL_STATE(1765)] = 54646, - [SMALL_STATE(1766)] = 54691, - [SMALL_STATE(1767)] = 54736, - [SMALL_STATE(1768)] = 54781, - [SMALL_STATE(1769)] = 54826, - [SMALL_STATE(1770)] = 54871, - [SMALL_STATE(1771)] = 54916, - [SMALL_STATE(1772)] = 54961, - [SMALL_STATE(1773)] = 55010, - [SMALL_STATE(1774)] = 55055, - [SMALL_STATE(1775)] = 55100, - [SMALL_STATE(1776)] = 55145, - [SMALL_STATE(1777)] = 55190, - [SMALL_STATE(1778)] = 55235, - [SMALL_STATE(1779)] = 55280, - [SMALL_STATE(1780)] = 55325, - [SMALL_STATE(1781)] = 55370, - [SMALL_STATE(1782)] = 55415, - [SMALL_STATE(1783)] = 55460, - [SMALL_STATE(1784)] = 55505, - [SMALL_STATE(1785)] = 55554, - [SMALL_STATE(1786)] = 55599, - [SMALL_STATE(1787)] = 55648, - [SMALL_STATE(1788)] = 55697, - [SMALL_STATE(1789)] = 55744, - [SMALL_STATE(1790)] = 55789, - [SMALL_STATE(1791)] = 55834, - [SMALL_STATE(1792)] = 55879, - [SMALL_STATE(1793)] = 55924, - [SMALL_STATE(1794)] = 55969, - [SMALL_STATE(1795)] = 56014, - [SMALL_STATE(1796)] = 56059, - [SMALL_STATE(1797)] = 56104, - [SMALL_STATE(1798)] = 56149, - [SMALL_STATE(1799)] = 56194, - [SMALL_STATE(1800)] = 56243, - [SMALL_STATE(1801)] = 56288, - [SMALL_STATE(1802)] = 56333, - [SMALL_STATE(1803)] = 56378, - [SMALL_STATE(1804)] = 56455, - [SMALL_STATE(1805)] = 56500, - [SMALL_STATE(1806)] = 56545, - [SMALL_STATE(1807)] = 56590, - [SMALL_STATE(1808)] = 56635, - [SMALL_STATE(1809)] = 56680, - [SMALL_STATE(1810)] = 56725, - [SMALL_STATE(1811)] = 56770, - [SMALL_STATE(1812)] = 56815, - [SMALL_STATE(1813)] = 56860, - [SMALL_STATE(1814)] = 56905, - [SMALL_STATE(1815)] = 56950, - [SMALL_STATE(1816)] = 56995, - [SMALL_STATE(1817)] = 57040, - [SMALL_STATE(1818)] = 57085, - [SMALL_STATE(1819)] = 57130, - [SMALL_STATE(1820)] = 57175, - [SMALL_STATE(1821)] = 57220, - [SMALL_STATE(1822)] = 57265, - [SMALL_STATE(1823)] = 57310, - [SMALL_STATE(1824)] = 57355, - [SMALL_STATE(1825)] = 57400, - [SMALL_STATE(1826)] = 57445, - [SMALL_STATE(1827)] = 57522, - [SMALL_STATE(1828)] = 57567, - [SMALL_STATE(1829)] = 57612, - [SMALL_STATE(1830)] = 57657, - [SMALL_STATE(1831)] = 57708, - [SMALL_STATE(1832)] = 57753, - [SMALL_STATE(1833)] = 57798, - [SMALL_STATE(1834)] = 57843, - [SMALL_STATE(1835)] = 57888, - [SMALL_STATE(1836)] = 57933, - [SMALL_STATE(1837)] = 57978, - [SMALL_STATE(1838)] = 58023, - [SMALL_STATE(1839)] = 58068, - [SMALL_STATE(1840)] = 58113, - [SMALL_STATE(1841)] = 58158, - [SMALL_STATE(1842)] = 58203, - [SMALL_STATE(1843)] = 58248, - [SMALL_STATE(1844)] = 58293, - [SMALL_STATE(1845)] = 58338, - [SMALL_STATE(1846)] = 58383, - [SMALL_STATE(1847)] = 58432, - [SMALL_STATE(1848)] = 58477, - [SMALL_STATE(1849)] = 58524, - [SMALL_STATE(1850)] = 58569, - [SMALL_STATE(1851)] = 58614, - [SMALL_STATE(1852)] = 58659, - [SMALL_STATE(1853)] = 58704, - [SMALL_STATE(1854)] = 58777, - [SMALL_STATE(1855)] = 58826, - [SMALL_STATE(1856)] = 58871, - [SMALL_STATE(1857)] = 58916, - [SMALL_STATE(1858)] = 58961, - [SMALL_STATE(1859)] = 59006, - [SMALL_STATE(1860)] = 59051, - [SMALL_STATE(1861)] = 59096, - [SMALL_STATE(1862)] = 59141, - [SMALL_STATE(1863)] = 59186, - [SMALL_STATE(1864)] = 59231, - [SMALL_STATE(1865)] = 59276, - [SMALL_STATE(1866)] = 59321, - [SMALL_STATE(1867)] = 59366, - [SMALL_STATE(1868)] = 59411, - [SMALL_STATE(1869)] = 59456, - [SMALL_STATE(1870)] = 59501, - [SMALL_STATE(1871)] = 59550, - [SMALL_STATE(1872)] = 59599, - [SMALL_STATE(1873)] = 59644, - [SMALL_STATE(1874)] = 59689, - [SMALL_STATE(1875)] = 59734, - [SMALL_STATE(1876)] = 59779, - [SMALL_STATE(1877)] = 59824, - [SMALL_STATE(1878)] = 59871, - [SMALL_STATE(1879)] = 59916, - [SMALL_STATE(1880)] = 59961, - [SMALL_STATE(1881)] = 60006, - [SMALL_STATE(1882)] = 60051, - [SMALL_STATE(1883)] = 60096, - [SMALL_STATE(1884)] = 60141, - [SMALL_STATE(1885)] = 60186, - [SMALL_STATE(1886)] = 60235, - [SMALL_STATE(1887)] = 60328, - [SMALL_STATE(1888)] = 60373, - [SMALL_STATE(1889)] = 60418, - [SMALL_STATE(1890)] = 60463, - [SMALL_STATE(1891)] = 60508, - [SMALL_STATE(1892)] = 60553, - [SMALL_STATE(1893)] = 60598, - [SMALL_STATE(1894)] = 60649, - [SMALL_STATE(1895)] = 60694, - [SMALL_STATE(1896)] = 60743, - [SMALL_STATE(1897)] = 60788, - [SMALL_STATE(1898)] = 60875, - [SMALL_STATE(1899)] = 60970, - [SMALL_STATE(1900)] = 61065, - [SMALL_STATE(1901)] = 61160, - [SMALL_STATE(1902)] = 61255, - [SMALL_STATE(1903)] = 61304, - [SMALL_STATE(1904)] = 61397, - [SMALL_STATE(1905)] = 61446, - [SMALL_STATE(1906)] = 61491, - [SMALL_STATE(1907)] = 61536, - [SMALL_STATE(1908)] = 61581, - [SMALL_STATE(1909)] = 61626, - [SMALL_STATE(1910)] = 61671, - [SMALL_STATE(1911)] = 61716, - [SMALL_STATE(1912)] = 61761, - [SMALL_STATE(1913)] = 61808, - [SMALL_STATE(1914)] = 61857, - [SMALL_STATE(1915)] = 61902, - [SMALL_STATE(1916)] = 61953, - [SMALL_STATE(1917)] = 61998, - [SMALL_STATE(1918)] = 62043, - [SMALL_STATE(1919)] = 62088, - [SMALL_STATE(1920)] = 62133, - [SMALL_STATE(1921)] = 62178, - [SMALL_STATE(1922)] = 62223, - [SMALL_STATE(1923)] = 62268, - [SMALL_STATE(1924)] = 62313, - [SMALL_STATE(1925)] = 62358, - [SMALL_STATE(1926)] = 62403, - [SMALL_STATE(1927)] = 62454, - [SMALL_STATE(1928)] = 62500, - [SMALL_STATE(1929)] = 62544, - [SMALL_STATE(1930)] = 62588, - [SMALL_STATE(1931)] = 62634, - [SMALL_STATE(1932)] = 62728, - [SMALL_STATE(1933)] = 62772, - [SMALL_STATE(1934)] = 62816, - [SMALL_STATE(1935)] = 62860, - [SMALL_STATE(1936)] = 62906, - [SMALL_STATE(1937)] = 62966, - [SMALL_STATE(1938)] = 63010, - [SMALL_STATE(1939)] = 63056, - [SMALL_STATE(1940)] = 63150, - [SMALL_STATE(1941)] = 63244, - [SMALL_STATE(1942)] = 63288, - [SMALL_STATE(1943)] = 63336, - [SMALL_STATE(1944)] = 63384, - [SMALL_STATE(1945)] = 63478, - [SMALL_STATE(1946)] = 63522, - [SMALL_STATE(1947)] = 63566, - [SMALL_STATE(1948)] = 63610, - [SMALL_STATE(1949)] = 63654, - [SMALL_STATE(1950)] = 63698, - [SMALL_STATE(1951)] = 63744, - [SMALL_STATE(1952)] = 63838, - [SMALL_STATE(1953)] = 63882, - [SMALL_STATE(1954)] = 63926, - [SMALL_STATE(1955)] = 64020, - [SMALL_STATE(1956)] = 64066, - [SMALL_STATE(1957)] = 64110, - [SMALL_STATE(1958)] = 64154, - [SMALL_STATE(1959)] = 64248, - [SMALL_STATE(1960)] = 64342, - [SMALL_STATE(1961)] = 64386, - [SMALL_STATE(1962)] = 64430, - [SMALL_STATE(1963)] = 64524, - [SMALL_STATE(1964)] = 64568, - [SMALL_STATE(1965)] = 64612, - [SMALL_STATE(1966)] = 64656, - [SMALL_STATE(1967)] = 64700, - [SMALL_STATE(1968)] = 64746, - [SMALL_STATE(1969)] = 64790, - [SMALL_STATE(1970)] = 64834, - [SMALL_STATE(1971)] = 64878, - [SMALL_STATE(1972)] = 64922, - [SMALL_STATE(1973)] = 65016, - [SMALL_STATE(1974)] = 65062, - [SMALL_STATE(1975)] = 65106, - [SMALL_STATE(1976)] = 65150, - [SMALL_STATE(1977)] = 65194, - [SMALL_STATE(1978)] = 65254, - [SMALL_STATE(1979)] = 65298, - [SMALL_STATE(1980)] = 65342, - [SMALL_STATE(1981)] = 65386, - [SMALL_STATE(1982)] = 65430, - [SMALL_STATE(1983)] = 65474, - [SMALL_STATE(1984)] = 65520, - [SMALL_STATE(1985)] = 65564, - [SMALL_STATE(1986)] = 65614, - [SMALL_STATE(1987)] = 65660, - [SMALL_STATE(1988)] = 65706, - [SMALL_STATE(1989)] = 65750, - [SMALL_STATE(1990)] = 65796, - [SMALL_STATE(1991)] = 65842, - [SMALL_STATE(1992)] = 65888, - [SMALL_STATE(1993)] = 65974, - [SMALL_STATE(1994)] = 66034, - [SMALL_STATE(1995)] = 66084, - [SMALL_STATE(1996)] = 66132, - [SMALL_STATE(1997)] = 66180, - [SMALL_STATE(1998)] = 66228, - [SMALL_STATE(1999)] = 66276, - [SMALL_STATE(2000)] = 66320, - [SMALL_STATE(2001)] = 66368, - [SMALL_STATE(2002)] = 66412, - [SMALL_STATE(2003)] = 66460, - [SMALL_STATE(2004)] = 66504, - [SMALL_STATE(2005)] = 66552, - [SMALL_STATE(2006)] = 66600, - [SMALL_STATE(2007)] = 66648, - [SMALL_STATE(2008)] = 66696, - [SMALL_STATE(2009)] = 66756, - [SMALL_STATE(2010)] = 66800, - [SMALL_STATE(2011)] = 66844, - [SMALL_STATE(2012)] = 66888, - [SMALL_STATE(2013)] = 66932, - [SMALL_STATE(2014)] = 66980, - [SMALL_STATE(2015)] = 67028, - [SMALL_STATE(2016)] = 67072, - [SMALL_STATE(2017)] = 67116, - [SMALL_STATE(2018)] = 67167, - [SMALL_STATE(2019)] = 67216, - [SMALL_STATE(2020)] = 67259, - [SMALL_STATE(2021)] = 67302, - [SMALL_STATE(2022)] = 67345, - [SMALL_STATE(2023)] = 67388, - [SMALL_STATE(2024)] = 67431, - [SMALL_STATE(2025)] = 67480, - [SMALL_STATE(2026)] = 67565, - [SMALL_STATE(2027)] = 67608, - [SMALL_STATE(2028)] = 67651, - [SMALL_STATE(2029)] = 67694, - [SMALL_STATE(2030)] = 67741, - [SMALL_STATE(2031)] = 67784, - [SMALL_STATE(2032)] = 67827, - [SMALL_STATE(2033)] = 67870, - [SMALL_STATE(2034)] = 67913, - [SMALL_STATE(2035)] = 67956, - [SMALL_STATE(2036)] = 67999, - [SMALL_STATE(2037)] = 68084, - [SMALL_STATE(2038)] = 68133, - [SMALL_STATE(2039)] = 68176, - [SMALL_STATE(2040)] = 68219, - [SMALL_STATE(2041)] = 68262, - [SMALL_STATE(2042)] = 68305, - [SMALL_STATE(2043)] = 68352, - [SMALL_STATE(2044)] = 68395, - [SMALL_STATE(2045)] = 68438, - [SMALL_STATE(2046)] = 68481, - [SMALL_STATE(2047)] = 68528, - [SMALL_STATE(2048)] = 68571, - [SMALL_STATE(2049)] = 68614, - [SMALL_STATE(2050)] = 68657, - [SMALL_STATE(2051)] = 68700, - [SMALL_STATE(2052)] = 68743, - [SMALL_STATE(2053)] = 68786, - [SMALL_STATE(2054)] = 68829, - [SMALL_STATE(2055)] = 68872, - [SMALL_STATE(2056)] = 68915, - [SMALL_STATE(2057)] = 68958, - [SMALL_STATE(2058)] = 69007, - [SMALL_STATE(2059)] = 69050, - [SMALL_STATE(2060)] = 69097, - [SMALL_STATE(2061)] = 69146, - [SMALL_STATE(2062)] = 69189, - [SMALL_STATE(2063)] = 69232, - [SMALL_STATE(2064)] = 69275, - [SMALL_STATE(2065)] = 69318, - [SMALL_STATE(2066)] = 69361, - [SMALL_STATE(2067)] = 69404, - [SMALL_STATE(2068)] = 69447, - [SMALL_STATE(2069)] = 69490, - [SMALL_STATE(2070)] = 69533, - [SMALL_STATE(2071)] = 69576, - [SMALL_STATE(2072)] = 69619, - [SMALL_STATE(2073)] = 69662, - [SMALL_STATE(2074)] = 69705, - [SMALL_STATE(2075)] = 69748, - [SMALL_STATE(2076)] = 69791, - [SMALL_STATE(2077)] = 69834, - [SMALL_STATE(2078)] = 69877, - [SMALL_STATE(2079)] = 69924, - [SMALL_STATE(2080)] = 69967, - [SMALL_STATE(2081)] = 70010, - [SMALL_STATE(2082)] = 70053, - [SMALL_STATE(2083)] = 70102, - [SMALL_STATE(2084)] = 70145, - [SMALL_STATE(2085)] = 70188, - [SMALL_STATE(2086)] = 70231, - [SMALL_STATE(2087)] = 70274, - [SMALL_STATE(2088)] = 70317, - [SMALL_STATE(2089)] = 70360, - [SMALL_STATE(2090)] = 70403, - [SMALL_STATE(2091)] = 70446, - [SMALL_STATE(2092)] = 70489, - [SMALL_STATE(2093)] = 70532, - [SMALL_STATE(2094)] = 70575, - [SMALL_STATE(2095)] = 70618, - [SMALL_STATE(2096)] = 70661, - [SMALL_STATE(2097)] = 70704, - [SMALL_STATE(2098)] = 70747, - [SMALL_STATE(2099)] = 70790, - [SMALL_STATE(2100)] = 70833, - [SMALL_STATE(2101)] = 70876, - [SMALL_STATE(2102)] = 70919, - [SMALL_STATE(2103)] = 70962, - [SMALL_STATE(2104)] = 71005, - [SMALL_STATE(2105)] = 71054, - [SMALL_STATE(2106)] = 71097, - [SMALL_STATE(2107)] = 71140, - [SMALL_STATE(2108)] = 71183, - [SMALL_STATE(2109)] = 71226, - [SMALL_STATE(2110)] = 71269, - [SMALL_STATE(2111)] = 71312, - [SMALL_STATE(2112)] = 71355, - [SMALL_STATE(2113)] = 71398, - [SMALL_STATE(2114)] = 71441, - [SMALL_STATE(2115)] = 71484, - [SMALL_STATE(2116)] = 71527, - [SMALL_STATE(2117)] = 71570, - [SMALL_STATE(2118)] = 71613, - [SMALL_STATE(2119)] = 71656, - [SMALL_STATE(2120)] = 71699, - [SMALL_STATE(2121)] = 71742, - [SMALL_STATE(2122)] = 71785, - [SMALL_STATE(2123)] = 71832, - [SMALL_STATE(2124)] = 71875, - [SMALL_STATE(2125)] = 71918, - [SMALL_STATE(2126)] = 71961, - [SMALL_STATE(2127)] = 72004, - [SMALL_STATE(2128)] = 72047, - [SMALL_STATE(2129)] = 72098, - [SMALL_STATE(2130)] = 72141, - [SMALL_STATE(2131)] = 72184, - [SMALL_STATE(2132)] = 72227, - [SMALL_STATE(2133)] = 72270, - [SMALL_STATE(2134)] = 72313, - [SMALL_STATE(2135)] = 72356, - [SMALL_STATE(2136)] = 72399, - [SMALL_STATE(2137)] = 72442, - [SMALL_STATE(2138)] = 72491, - [SMALL_STATE(2139)] = 72534, - [SMALL_STATE(2140)] = 72577, - [SMALL_STATE(2141)] = 72620, - [SMALL_STATE(2142)] = 72663, - [SMALL_STATE(2143)] = 72706, - [SMALL_STATE(2144)] = 72749, - [SMALL_STATE(2145)] = 72792, - [SMALL_STATE(2146)] = 72835, - [SMALL_STATE(2147)] = 72878, - [SMALL_STATE(2148)] = 72921, - [SMALL_STATE(2149)] = 72964, - [SMALL_STATE(2150)] = 73007, - [SMALL_STATE(2151)] = 73050, - [SMALL_STATE(2152)] = 73093, - [SMALL_STATE(2153)] = 73136, - [SMALL_STATE(2154)] = 73179, - [SMALL_STATE(2155)] = 73222, - [SMALL_STATE(2156)] = 73265, - [SMALL_STATE(2157)] = 73308, - [SMALL_STATE(2158)] = 73351, - [SMALL_STATE(2159)] = 73394, - [SMALL_STATE(2160)] = 73437, - [SMALL_STATE(2161)] = 73480, - [SMALL_STATE(2162)] = 73566, - [SMALL_STATE(2163)] = 73610, - [SMALL_STATE(2164)] = 73692, - [SMALL_STATE(2165)] = 73774, - [SMALL_STATE(2166)] = 73822, - [SMALL_STATE(2167)] = 73868, - [SMALL_STATE(2168)] = 73962, - [SMALL_STATE(2169)] = 74056, - [SMALL_STATE(2170)] = 74104, - [SMALL_STATE(2171)] = 74150, - [SMALL_STATE(2172)] = 74195, - [SMALL_STATE(2173)] = 74240, - [SMALL_STATE(2174)] = 74285, - [SMALL_STATE(2175)] = 74334, - [SMALL_STATE(2176)] = 74379, - [SMALL_STATE(2177)] = 74462, - [SMALL_STATE(2178)] = 74507, - [SMALL_STATE(2179)] = 74552, - [SMALL_STATE(2180)] = 74601, - [SMALL_STATE(2181)] = 74650, - [SMALL_STATE(2182)] = 74695, - [SMALL_STATE(2183)] = 74774, - [SMALL_STATE(2184)] = 74821, - [SMALL_STATE(2185)] = 74870, - [SMALL_STATE(2186)] = 74917, - [SMALL_STATE(2187)] = 74996, - [SMALL_STATE(2188)] = 75037, - [SMALL_STATE(2189)] = 75077, - [SMALL_STATE(2190)] = 75117, - [SMALL_STATE(2191)] = 75161, - [SMALL_STATE(2192)] = 75201, - [SMALL_STATE(2193)] = 75241, - [SMALL_STATE(2194)] = 75281, - [SMALL_STATE(2195)] = 75321, - [SMALL_STATE(2196)] = 75365, - [SMALL_STATE(2197)] = 75405, - [SMALL_STATE(2198)] = 75447, - [SMALL_STATE(2199)] = 75487, - [SMALL_STATE(2200)] = 75527, - [SMALL_STATE(2201)] = 75569, - [SMALL_STATE(2202)] = 75609, - [SMALL_STATE(2203)] = 75649, - [SMALL_STATE(2204)] = 75689, - [SMALL_STATE(2205)] = 75733, - [SMALL_STATE(2206)] = 75777, - [SMALL_STATE(2207)] = 75821, - [SMALL_STATE(2208)] = 75865, - [SMALL_STATE(2209)] = 75909, - [SMALL_STATE(2210)] = 75953, - [SMALL_STATE(2211)] = 75993, - [SMALL_STATE(2212)] = 76033, - [SMALL_STATE(2213)] = 76075, - [SMALL_STATE(2214)] = 76115, - [SMALL_STATE(2215)] = 76155, - [SMALL_STATE(2216)] = 76195, - [SMALL_STATE(2217)] = 76237, - [SMALL_STATE(2218)] = 76281, - [SMALL_STATE(2219)] = 76323, - [SMALL_STATE(2220)] = 76363, - [SMALL_STATE(2221)] = 76403, - [SMALL_STATE(2222)] = 76443, - [SMALL_STATE(2223)] = 76485, - [SMALL_STATE(2224)] = 76525, - [SMALL_STATE(2225)] = 76565, - [SMALL_STATE(2226)] = 76609, - [SMALL_STATE(2227)] = 76649, - [SMALL_STATE(2228)] = 76691, - [SMALL_STATE(2229)] = 76733, - [SMALL_STATE(2230)] = 76775, - [SMALL_STATE(2231)] = 76819, - [SMALL_STATE(2232)] = 76859, - [SMALL_STATE(2233)] = 76901, - [SMALL_STATE(2234)] = 76943, - [SMALL_STATE(2235)] = 76983, - [SMALL_STATE(2236)] = 77025, - [SMALL_STATE(2237)] = 77065, - [SMALL_STATE(2238)] = 77109, - [SMALL_STATE(2239)] = 77151, - [SMALL_STATE(2240)] = 77193, - [SMALL_STATE(2241)] = 77232, - [SMALL_STATE(2242)] = 77271, - [SMALL_STATE(2243)] = 77314, - [SMALL_STATE(2244)] = 77353, - [SMALL_STATE(2245)] = 77392, - [SMALL_STATE(2246)] = 77431, - [SMALL_STATE(2247)] = 77470, - [SMALL_STATE(2248)] = 77509, - [SMALL_STATE(2249)] = 77552, - [SMALL_STATE(2250)] = 77591, - [SMALL_STATE(2251)] = 77630, - [SMALL_STATE(2252)] = 77669, - [SMALL_STATE(2253)] = 77708, - [SMALL_STATE(2254)] = 77747, - [SMALL_STATE(2255)] = 77786, - [SMALL_STATE(2256)] = 77837, - [SMALL_STATE(2257)] = 77876, - [SMALL_STATE(2258)] = 77915, - [SMALL_STATE(2259)] = 77958, - [SMALL_STATE(2260)] = 77997, - [SMALL_STATE(2261)] = 78036, - [SMALL_STATE(2262)] = 78087, - [SMALL_STATE(2263)] = 78126, - [SMALL_STATE(2264)] = 78165, - [SMALL_STATE(2265)] = 78216, - [SMALL_STATE(2266)] = 78255, - [SMALL_STATE(2267)] = 78298, - [SMALL_STATE(2268)] = 78341, - [SMALL_STATE(2269)] = 78392, - [SMALL_STATE(2270)] = 78443, - [SMALL_STATE(2271)] = 78518, - [SMALL_STATE(2272)] = 78557, - [SMALL_STATE(2273)] = 78596, - [SMALL_STATE(2274)] = 78635, - [SMALL_STATE(2275)] = 78678, - [SMALL_STATE(2276)] = 78717, - [SMALL_STATE(2277)] = 78756, - [SMALL_STATE(2278)] = 78799, - [SMALL_STATE(2279)] = 78853, - [SMALL_STATE(2280)] = 78935, - [SMALL_STATE(2281)] = 79017, - [SMALL_STATE(2282)] = 79099, - [SMALL_STATE(2283)] = 79137, - [SMALL_STATE(2284)] = 79191, - [SMALL_STATE(2285)] = 79273, - [SMALL_STATE(2286)] = 79355, - [SMALL_STATE(2287)] = 79437, - [SMALL_STATE(2288)] = 79519, - [SMALL_STATE(2289)] = 79601, - [SMALL_STATE(2290)] = 79683, - [SMALL_STATE(2291)] = 79765, - [SMALL_STATE(2292)] = 79847, - [SMALL_STATE(2293)] = 79933, - [SMALL_STATE(2294)] = 79991, - [SMALL_STATE(2295)] = 80073, - [SMALL_STATE(2296)] = 80155, - [SMALL_STATE(2297)] = 80237, - [SMALL_STATE(2298)] = 80295, - [SMALL_STATE(2299)] = 80377, - [SMALL_STATE(2300)] = 80459, - [SMALL_STATE(2301)] = 80541, - [SMALL_STATE(2302)] = 80623, - [SMALL_STATE(2303)] = 80705, - [SMALL_STATE(2304)] = 80787, - [SMALL_STATE(2305)] = 80873, - [SMALL_STATE(2306)] = 80955, - [SMALL_STATE(2307)] = 81037, - [SMALL_STATE(2308)] = 81119, - [SMALL_STATE(2309)] = 81201, - [SMALL_STATE(2310)] = 81283, - [SMALL_STATE(2311)] = 81365, - [SMALL_STATE(2312)] = 81447, - [SMALL_STATE(2313)] = 81529, - [SMALL_STATE(2314)] = 81611, - [SMALL_STATE(2315)] = 81693, - [SMALL_STATE(2316)] = 81775, - [SMALL_STATE(2317)] = 81857, - [SMALL_STATE(2318)] = 81939, - [SMALL_STATE(2319)] = 82021, - [SMALL_STATE(2320)] = 82103, - [SMALL_STATE(2321)] = 82185, - [SMALL_STATE(2322)] = 82267, - [SMALL_STATE(2323)] = 82349, - [SMALL_STATE(2324)] = 82431, - [SMALL_STATE(2325)] = 82513, - [SMALL_STATE(2326)] = 82595, - [SMALL_STATE(2327)] = 82677, - [SMALL_STATE(2328)] = 82723, - [SMALL_STATE(2329)] = 82805, - [SMALL_STATE(2330)] = 82891, - [SMALL_STATE(2331)] = 82977, - [SMALL_STATE(2332)] = 83057, - [SMALL_STATE(2333)] = 83094, - [SMALL_STATE(2334)] = 83137, - [SMALL_STATE(2335)] = 83220, - [SMALL_STATE(2336)] = 83303, - [SMALL_STATE(2337)] = 83386, - [SMALL_STATE(2338)] = 83469, - [SMALL_STATE(2339)] = 83552, - [SMALL_STATE(2340)] = 83635, - [SMALL_STATE(2341)] = 83672, - [SMALL_STATE(2342)] = 83755, - [SMALL_STATE(2343)] = 83838, - [SMALL_STATE(2344)] = 83921, - [SMALL_STATE(2345)] = 84004, - [SMALL_STATE(2346)] = 84041, - [SMALL_STATE(2347)] = 84124, - [SMALL_STATE(2348)] = 84207, - [SMALL_STATE(2349)] = 84244, - [SMALL_STATE(2350)] = 84290, - [SMALL_STATE(2351)] = 84338, - [SMALL_STATE(2352)] = 84396, - [SMALL_STATE(2353)] = 84464, - [SMALL_STATE(2354)] = 84522, - [SMALL_STATE(2355)] = 84556, - [SMALL_STATE(2356)] = 84596, - [SMALL_STATE(2357)] = 84630, - [SMALL_STATE(2358)] = 84664, - [SMALL_STATE(2359)] = 84698, - [SMALL_STATE(2360)] = 84732, - [SMALL_STATE(2361)] = 84766, - [SMALL_STATE(2362)] = 84808, - [SMALL_STATE(2363)] = 84844, - [SMALL_STATE(2364)] = 84880, - [SMALL_STATE(2365)] = 84914, - [SMALL_STATE(2366)] = 84950, - [SMALL_STATE(2367)] = 84986, - [SMALL_STATE(2368)] = 85022, - [SMALL_STATE(2369)] = 85084, - [SMALL_STATE(2370)] = 85140, - [SMALL_STATE(2371)] = 85176, - [SMALL_STATE(2372)] = 85214, - [SMALL_STATE(2373)] = 85248, - [SMALL_STATE(2374)] = 85282, - [SMALL_STATE(2375)] = 85316, - [SMALL_STATE(2376)] = 85354, - [SMALL_STATE(2377)] = 85396, - [SMALL_STATE(2378)] = 85434, - [SMALL_STATE(2379)] = 85468, - [SMALL_STATE(2380)] = 85506, - [SMALL_STATE(2381)] = 85540, - [SMALL_STATE(2382)] = 85596, - [SMALL_STATE(2383)] = 85634, - [SMALL_STATE(2384)] = 85672, - [SMALL_STATE(2385)] = 85710, - [SMALL_STATE(2386)] = 85744, - [SMALL_STATE(2387)] = 85782, - [SMALL_STATE(2388)] = 85816, - [SMALL_STATE(2389)] = 85854, - [SMALL_STATE(2390)] = 85891, - [SMALL_STATE(2391)] = 85928, - [SMALL_STATE(2392)] = 85963, - [SMALL_STATE(2393)] = 86000, - [SMALL_STATE(2394)] = 86035, - [SMALL_STATE(2395)] = 86072, - [SMALL_STATE(2396)] = 86131, - [SMALL_STATE(2397)] = 86166, - [SMALL_STATE(2398)] = 86201, - [SMALL_STATE(2399)] = 86238, - [SMALL_STATE(2400)] = 86273, - [SMALL_STATE(2401)] = 86308, - [SMALL_STATE(2402)] = 86343, - [SMALL_STATE(2403)] = 86380, - [SMALL_STATE(2404)] = 86440, - [SMALL_STATE(2405)] = 86478, - [SMALL_STATE(2406)] = 86509, - [SMALL_STATE(2407)] = 86567, - [SMALL_STATE(2408)] = 86596, - [SMALL_STATE(2409)] = 86625, - [SMALL_STATE(2410)] = 86652, - [SMALL_STATE(2411)] = 86681, - [SMALL_STATE(2412)] = 86708, - [SMALL_STATE(2413)] = 86737, - [SMALL_STATE(2414)] = 86768, - [SMALL_STATE(2415)] = 86801, - [SMALL_STATE(2416)] = 86836, - [SMALL_STATE(2417)] = 86867, - [SMALL_STATE(2418)] = 86898, - [SMALL_STATE(2419)] = 86946, - [SMALL_STATE(2420)] = 86996, - [SMALL_STATE(2421)] = 87046, - [SMALL_STATE(2422)] = 87096, - [SMALL_STATE(2423)] = 87146, - [SMALL_STATE(2424)] = 87190, - [SMALL_STATE(2425)] = 87240, - [SMALL_STATE(2426)] = 87290, - [SMALL_STATE(2427)] = 87340, - [SMALL_STATE(2428)] = 87390, - [SMALL_STATE(2429)] = 87440, - [SMALL_STATE(2430)] = 87490, - [SMALL_STATE(2431)] = 87540, - [SMALL_STATE(2432)] = 87590, - [SMALL_STATE(2433)] = 87640, - [SMALL_STATE(2434)] = 87690, - [SMALL_STATE(2435)] = 87740, - [SMALL_STATE(2436)] = 87790, - [SMALL_STATE(2437)] = 87840, - [SMALL_STATE(2438)] = 87890, - [SMALL_STATE(2439)] = 87940, - [SMALL_STATE(2440)] = 87990, - [SMALL_STATE(2441)] = 88036, - [SMALL_STATE(2442)] = 88086, - [SMALL_STATE(2443)] = 88136, - [SMALL_STATE(2444)] = 88186, - [SMALL_STATE(2445)] = 88232, - [SMALL_STATE(2446)] = 88276, - [SMALL_STATE(2447)] = 88326, - [SMALL_STATE(2448)] = 88376, - [SMALL_STATE(2449)] = 88426, - [SMALL_STATE(2450)] = 88476, - [SMALL_STATE(2451)] = 88526, - [SMALL_STATE(2452)] = 88574, - [SMALL_STATE(2453)] = 88624, - [SMALL_STATE(2454)] = 88650, - [SMALL_STATE(2455)] = 88700, - [SMALL_STATE(2456)] = 88750, - [SMALL_STATE(2457)] = 88800, - [SMALL_STATE(2458)] = 88850, - [SMALL_STATE(2459)] = 88900, - [SMALL_STATE(2460)] = 88950, - [SMALL_STATE(2461)] = 89000, - [SMALL_STATE(2462)] = 89050, - [SMALL_STATE(2463)] = 89100, - [SMALL_STATE(2464)] = 89150, - [SMALL_STATE(2465)] = 89200, - [SMALL_STATE(2466)] = 89250, - [SMALL_STATE(2467)] = 89300, - [SMALL_STATE(2468)] = 89325, - [SMALL_STATE(2469)] = 89364, - [SMALL_STATE(2470)] = 89392, - [SMALL_STATE(2471)] = 89420, - [SMALL_STATE(2472)] = 89448, - [SMALL_STATE(2473)] = 89476, - [SMALL_STATE(2474)] = 89504, - [SMALL_STATE(2475)] = 89532, - [SMALL_STATE(2476)] = 89560, - [SMALL_STATE(2477)] = 89588, - [SMALL_STATE(2478)] = 89616, - [SMALL_STATE(2479)] = 89644, - [SMALL_STATE(2480)] = 89672, - [SMALL_STATE(2481)] = 89700, - [SMALL_STATE(2482)] = 89746, - [SMALL_STATE(2483)] = 89784, - [SMALL_STATE(2484)] = 89812, - [SMALL_STATE(2485)] = 89840, - [SMALL_STATE(2486)] = 89868, - [SMALL_STATE(2487)] = 89896, - [SMALL_STATE(2488)] = 89924, - [SMALL_STATE(2489)] = 89952, - [SMALL_STATE(2490)] = 89980, - [SMALL_STATE(2491)] = 90008, - [SMALL_STATE(2492)] = 90046, - [SMALL_STATE(2493)] = 90084, - [SMALL_STATE(2494)] = 90112, - [SMALL_STATE(2495)] = 90140, - [SMALL_STATE(2496)] = 90168, - [SMALL_STATE(2497)] = 90196, - [SMALL_STATE(2498)] = 90224, - [SMALL_STATE(2499)] = 90252, - [SMALL_STATE(2500)] = 90280, - [SMALL_STATE(2501)] = 90308, - [SMALL_STATE(2502)] = 90346, - [SMALL_STATE(2503)] = 90374, - [SMALL_STATE(2504)] = 90402, - [SMALL_STATE(2505)] = 90430, - [SMALL_STATE(2506)] = 90475, - [SMALL_STATE(2507)] = 90520, - [SMALL_STATE(2508)] = 90547, - [SMALL_STATE(2509)] = 90582, - [SMALL_STATE(2510)] = 90627, - [SMALL_STATE(2511)] = 90650, - [SMALL_STATE(2512)] = 90695, - [SMALL_STATE(2513)] = 90740, - [SMALL_STATE(2514)] = 90785, - [SMALL_STATE(2515)] = 90830, - [SMALL_STATE(2516)] = 90875, - [SMALL_STATE(2517)] = 90920, - [SMALL_STATE(2518)] = 90965, - [SMALL_STATE(2519)] = 91010, - [SMALL_STATE(2520)] = 91055, - [SMALL_STATE(2521)] = 91078, - [SMALL_STATE(2522)] = 91110, - [SMALL_STATE(2523)] = 91152, - [SMALL_STATE(2524)] = 91194, - [SMALL_STATE(2525)] = 91236, - [SMALL_STATE(2526)] = 91278, - [SMALL_STATE(2527)] = 91320, - [SMALL_STATE(2528)] = 91362, - [SMALL_STATE(2529)] = 91404, - [SMALL_STATE(2530)] = 91446, - [SMALL_STATE(2531)] = 91488, - [SMALL_STATE(2532)] = 91528, - [SMALL_STATE(2533)] = 91570, - [SMALL_STATE(2534)] = 91612, - [SMALL_STATE(2535)] = 91649, - [SMALL_STATE(2536)] = 91686, - [SMALL_STATE(2537)] = 91723, - [SMALL_STATE(2538)] = 91760, - [SMALL_STATE(2539)] = 91797, - [SMALL_STATE(2540)] = 91834, - [SMALL_STATE(2541)] = 91871, - [SMALL_STATE(2542)] = 91908, - [SMALL_STATE(2543)] = 91943, - [SMALL_STATE(2544)] = 91978, - [SMALL_STATE(2545)] = 92018, - [SMALL_STATE(2546)] = 92052, - [SMALL_STATE(2547)] = 92086, - [SMALL_STATE(2548)] = 92120, - [SMALL_STATE(2549)] = 92154, - [SMALL_STATE(2550)] = 92174, - [SMALL_STATE(2551)] = 92214, - [SMALL_STATE(2552)] = 92248, - [SMALL_STATE(2553)] = 92286, - [SMALL_STATE(2554)] = 92306, - [SMALL_STATE(2555)] = 92340, - [SMALL_STATE(2556)] = 92374, - [SMALL_STATE(2557)] = 92408, - [SMALL_STATE(2558)] = 92442, - [SMALL_STATE(2559)] = 92480, - [SMALL_STATE(2560)] = 92514, - [SMALL_STATE(2561)] = 92548, - [SMALL_STATE(2562)] = 92582, - [SMALL_STATE(2563)] = 92616, - [SMALL_STATE(2564)] = 92650, - [SMALL_STATE(2565)] = 92684, - [SMALL_STATE(2566)] = 92718, - [SMALL_STATE(2567)] = 92744, - [SMALL_STATE(2568)] = 92778, - [SMALL_STATE(2569)] = 92816, - [SMALL_STATE(2570)] = 92842, - [SMALL_STATE(2571)] = 92876, - [SMALL_STATE(2572)] = 92910, - [SMALL_STATE(2573)] = 92944, - [SMALL_STATE(2574)] = 92978, - [SMALL_STATE(2575)] = 93012, - [SMALL_STATE(2576)] = 93046, - [SMALL_STATE(2577)] = 93080, - [SMALL_STATE(2578)] = 93114, - [SMALL_STATE(2579)] = 93148, - [SMALL_STATE(2580)] = 93182, - [SMALL_STATE(2581)] = 93220, - [SMALL_STATE(2582)] = 93254, - [SMALL_STATE(2583)] = 93288, - [SMALL_STATE(2584)] = 93308, - [SMALL_STATE(2585)] = 93346, - [SMALL_STATE(2586)] = 93386, - [SMALL_STATE(2587)] = 93424, - [SMALL_STATE(2588)] = 93462, - [SMALL_STATE(2589)] = 93500, - [SMALL_STATE(2590)] = 93534, - [SMALL_STATE(2591)] = 93568, - [SMALL_STATE(2592)] = 93602, - [SMALL_STATE(2593)] = 93636, - [SMALL_STATE(2594)] = 93670, - [SMALL_STATE(2595)] = 93704, - [SMALL_STATE(2596)] = 93738, - [SMALL_STATE(2597)] = 93764, - [SMALL_STATE(2598)] = 93784, - [SMALL_STATE(2599)] = 93812, - [SMALL_STATE(2600)] = 93846, - [SMALL_STATE(2601)] = 93880, - [SMALL_STATE(2602)] = 93908, - [SMALL_STATE(2603)] = 93946, - [SMALL_STATE(2604)] = 93980, - [SMALL_STATE(2605)] = 94014, - [SMALL_STATE(2606)] = 94048, - [SMALL_STATE(2607)] = 94082, - [SMALL_STATE(2608)] = 94116, - [SMALL_STATE(2609)] = 94150, - [SMALL_STATE(2610)] = 94184, - [SMALL_STATE(2611)] = 94218, - [SMALL_STATE(2612)] = 94252, - [SMALL_STATE(2613)] = 94286, - [SMALL_STATE(2614)] = 94320, - [SMALL_STATE(2615)] = 94354, - [SMALL_STATE(2616)] = 94388, - [SMALL_STATE(2617)] = 94422, - [SMALL_STATE(2618)] = 94442, - [SMALL_STATE(2619)] = 94474, - [SMALL_STATE(2620)] = 94508, - [SMALL_STATE(2621)] = 94542, - [SMALL_STATE(2622)] = 94576, - [SMALL_STATE(2623)] = 94614, - [SMALL_STATE(2624)] = 94648, - [SMALL_STATE(2625)] = 94682, - [SMALL_STATE(2626)] = 94716, - [SMALL_STATE(2627)] = 94750, - [SMALL_STATE(2628)] = 94784, - [SMALL_STATE(2629)] = 94818, - [SMALL_STATE(2630)] = 94852, - [SMALL_STATE(2631)] = 94886, - [SMALL_STATE(2632)] = 94906, - [SMALL_STATE(2633)] = 94940, - [SMALL_STATE(2634)] = 94971, - [SMALL_STATE(2635)] = 95002, - [SMALL_STATE(2636)] = 95037, - [SMALL_STATE(2637)] = 95072, - [SMALL_STATE(2638)] = 95103, - [SMALL_STATE(2639)] = 95134, - [SMALL_STATE(2640)] = 95165, - [SMALL_STATE(2641)] = 95200, - [SMALL_STATE(2642)] = 95231, - [SMALL_STATE(2643)] = 95266, - [SMALL_STATE(2644)] = 95301, - [SMALL_STATE(2645)] = 95332, - [SMALL_STATE(2646)] = 95367, - [SMALL_STATE(2647)] = 95398, - [SMALL_STATE(2648)] = 95429, - [SMALL_STATE(2649)] = 95460, - [SMALL_STATE(2650)] = 95491, - [SMALL_STATE(2651)] = 95522, - [SMALL_STATE(2652)] = 95557, - [SMALL_STATE(2653)] = 95588, - [SMALL_STATE(2654)] = 95623, - [SMALL_STATE(2655)] = 95654, - [SMALL_STATE(2656)] = 95689, - [SMALL_STATE(2657)] = 95724, - [SMALL_STATE(2658)] = 95759, - [SMALL_STATE(2659)] = 95790, - [SMALL_STATE(2660)] = 95821, - [SMALL_STATE(2661)] = 95852, - [SMALL_STATE(2662)] = 95883, - [SMALL_STATE(2663)] = 95918, - [SMALL_STATE(2664)] = 95949, - [SMALL_STATE(2665)] = 95977, - [SMALL_STATE(2666)] = 96011, - [SMALL_STATE(2667)] = 96033, - [SMALL_STATE(2668)] = 96055, - [SMALL_STATE(2669)] = 96077, - [SMALL_STATE(2670)] = 96105, - [SMALL_STATE(2671)] = 96125, - [SMALL_STATE(2672)] = 96143, - [SMALL_STATE(2673)] = 96177, - [SMALL_STATE(2674)] = 96197, - [SMALL_STATE(2675)] = 96231, - [SMALL_STATE(2676)] = 96254, - [SMALL_STATE(2677)] = 96277, - [SMALL_STATE(2678)] = 96300, - [SMALL_STATE(2679)] = 96323, - [SMALL_STATE(2680)] = 96346, - [SMALL_STATE(2681)] = 96369, - [SMALL_STATE(2682)] = 96392, - [SMALL_STATE(2683)] = 96415, - [SMALL_STATE(2684)] = 96438, - [SMALL_STATE(2685)] = 96461, - [SMALL_STATE(2686)] = 96484, - [SMALL_STATE(2687)] = 96507, - [SMALL_STATE(2688)] = 96530, - [SMALL_STATE(2689)] = 96555, - [SMALL_STATE(2690)] = 96578, - [SMALL_STATE(2691)] = 96605, - [SMALL_STATE(2692)] = 96628, - [SMALL_STATE(2693)] = 96651, - [SMALL_STATE(2694)] = 96674, - [SMALL_STATE(2695)] = 96697, - [SMALL_STATE(2696)] = 96720, - [SMALL_STATE(2697)] = 96743, - [SMALL_STATE(2698)] = 96766, - [SMALL_STATE(2699)] = 96789, - [SMALL_STATE(2700)] = 96812, - [SMALL_STATE(2701)] = 96835, - [SMALL_STATE(2702)] = 96858, - [SMALL_STATE(2703)] = 96881, - [SMALL_STATE(2704)] = 96904, - [SMALL_STATE(2705)] = 96927, - [SMALL_STATE(2706)] = 96950, - [SMALL_STATE(2707)] = 96973, - [SMALL_STATE(2708)] = 96996, - [SMALL_STATE(2709)] = 97019, - [SMALL_STATE(2710)] = 97042, - [SMALL_STATE(2711)] = 97065, - [SMALL_STATE(2712)] = 97088, - [SMALL_STATE(2713)] = 97111, - [SMALL_STATE(2714)] = 97134, - [SMALL_STATE(2715)] = 97157, - [SMALL_STATE(2716)] = 97180, - [SMALL_STATE(2717)] = 97203, - [SMALL_STATE(2718)] = 97234, - [SMALL_STATE(2719)] = 97257, - [SMALL_STATE(2720)] = 97280, - [SMALL_STATE(2721)] = 97303, - [SMALL_STATE(2722)] = 97326, - [SMALL_STATE(2723)] = 97349, - [SMALL_STATE(2724)] = 97372, - [SMALL_STATE(2725)] = 97395, - [SMALL_STATE(2726)] = 97418, - [SMALL_STATE(2727)] = 97441, - [SMALL_STATE(2728)] = 97470, - [SMALL_STATE(2729)] = 97493, - [SMALL_STATE(2730)] = 97516, - [SMALL_STATE(2731)] = 97539, - [SMALL_STATE(2732)] = 97562, - [SMALL_STATE(2733)] = 97585, - [SMALL_STATE(2734)] = 97608, - [SMALL_STATE(2735)] = 97635, - [SMALL_STATE(2736)] = 97662, - [SMALL_STATE(2737)] = 97685, - [SMALL_STATE(2738)] = 97708, - [SMALL_STATE(2739)] = 97731, - [SMALL_STATE(2740)] = 97754, - [SMALL_STATE(2741)] = 97777, - [SMALL_STATE(2742)] = 97800, - [SMALL_STATE(2743)] = 97823, - [SMALL_STATE(2744)] = 97846, - [SMALL_STATE(2745)] = 97869, - [SMALL_STATE(2746)] = 97892, - [SMALL_STATE(2747)] = 97915, - [SMALL_STATE(2748)] = 97938, - [SMALL_STATE(2749)] = 97961, - [SMALL_STATE(2750)] = 97984, - [SMALL_STATE(2751)] = 98007, - [SMALL_STATE(2752)] = 98021, - [SMALL_STATE(2753)] = 98035, - [SMALL_STATE(2754)] = 98055, - [SMALL_STATE(2755)] = 98081, - [SMALL_STATE(2756)] = 98103, - [SMALL_STATE(2757)] = 98123, - [SMALL_STATE(2758)] = 98145, - [SMALL_STATE(2759)] = 98171, - [SMALL_STATE(2760)] = 98197, - [SMALL_STATE(2761)] = 98211, - [SMALL_STATE(2762)] = 98235, - [SMALL_STATE(2763)] = 98261, - [SMALL_STATE(2764)] = 98287, - [SMALL_STATE(2765)] = 98313, - [SMALL_STATE(2766)] = 98333, - [SMALL_STATE(2767)] = 98357, - [SMALL_STATE(2768)] = 98377, - [SMALL_STATE(2769)] = 98399, - [SMALL_STATE(2770)] = 98423, - [SMALL_STATE(2771)] = 98442, - [SMALL_STATE(2772)] = 98461, - [SMALL_STATE(2773)] = 98480, - [SMALL_STATE(2774)] = 98499, - [SMALL_STATE(2775)] = 98518, - [SMALL_STATE(2776)] = 98537, - [SMALL_STATE(2777)] = 98556, - [SMALL_STATE(2778)] = 98575, - [SMALL_STATE(2779)] = 98594, - [SMALL_STATE(2780)] = 98617, - [SMALL_STATE(2781)] = 98636, - [SMALL_STATE(2782)] = 98655, - [SMALL_STATE(2783)] = 98674, - [SMALL_STATE(2784)] = 98693, - [SMALL_STATE(2785)] = 98712, - [SMALL_STATE(2786)] = 98725, - [SMALL_STATE(2787)] = 98744, - [SMALL_STATE(2788)] = 98763, - [SMALL_STATE(2789)] = 98782, - [SMALL_STATE(2790)] = 98801, - [SMALL_STATE(2791)] = 98820, - [SMALL_STATE(2792)] = 98833, - [SMALL_STATE(2793)] = 98852, - [SMALL_STATE(2794)] = 98875, - [SMALL_STATE(2795)] = 98890, - [SMALL_STATE(2796)] = 98913, - [SMALL_STATE(2797)] = 98932, - [SMALL_STATE(2798)] = 98951, - [SMALL_STATE(2799)] = 98964, - [SMALL_STATE(2800)] = 98983, - [SMALL_STATE(2801)] = 99002, - [SMALL_STATE(2802)] = 99021, - [SMALL_STATE(2803)] = 99040, - [SMALL_STATE(2804)] = 99059, - [SMALL_STATE(2805)] = 99082, - [SMALL_STATE(2806)] = 99101, - [SMALL_STATE(2807)] = 99120, - [SMALL_STATE(2808)] = 99139, - [SMALL_STATE(2809)] = 99158, - [SMALL_STATE(2810)] = 99177, - [SMALL_STATE(2811)] = 99196, - [SMALL_STATE(2812)] = 99219, - [SMALL_STATE(2813)] = 99238, - [SMALL_STATE(2814)] = 99257, - [SMALL_STATE(2815)] = 99280, - [SMALL_STATE(2816)] = 99297, - [SMALL_STATE(2817)] = 99316, - [SMALL_STATE(2818)] = 99339, - [SMALL_STATE(2819)] = 99354, - [SMALL_STATE(2820)] = 99373, - [SMALL_STATE(2821)] = 99392, - [SMALL_STATE(2822)] = 99411, - [SMALL_STATE(2823)] = 99430, - [SMALL_STATE(2824)] = 99449, - [SMALL_STATE(2825)] = 99464, - [SMALL_STATE(2826)] = 99487, - [SMALL_STATE(2827)] = 99504, - [SMALL_STATE(2828)] = 99523, - [SMALL_STATE(2829)] = 99538, - [SMALL_STATE(2830)] = 99557, - [SMALL_STATE(2831)] = 99580, - [SMALL_STATE(2832)] = 99601, - [SMALL_STATE(2833)] = 99620, - [SMALL_STATE(2834)] = 99643, - [SMALL_STATE(2835)] = 99662, - [SMALL_STATE(2836)] = 99681, - [SMALL_STATE(2837)] = 99700, - [SMALL_STATE(2838)] = 99719, - [SMALL_STATE(2839)] = 99738, - [SMALL_STATE(2840)] = 99761, - [SMALL_STATE(2841)] = 99780, - [SMALL_STATE(2842)] = 99795, - [SMALL_STATE(2843)] = 99814, - [SMALL_STATE(2844)] = 99833, - [SMALL_STATE(2845)] = 99852, - [SMALL_STATE(2846)] = 99871, - [SMALL_STATE(2847)] = 99890, - [SMALL_STATE(2848)] = 99913, - [SMALL_STATE(2849)] = 99936, - [SMALL_STATE(2850)] = 99953, - [SMALL_STATE(2851)] = 99976, - [SMALL_STATE(2852)] = 99991, - [SMALL_STATE(2853)] = 100004, - [SMALL_STATE(2854)] = 100027, - [SMALL_STATE(2855)] = 100050, - [SMALL_STATE(2856)] = 100063, - [SMALL_STATE(2857)] = 100082, - [SMALL_STATE(2858)] = 100101, - [SMALL_STATE(2859)] = 100118, - [SMALL_STATE(2860)] = 100137, - [SMALL_STATE(2861)] = 100156, - [SMALL_STATE(2862)] = 100175, - [SMALL_STATE(2863)] = 100194, - [SMALL_STATE(2864)] = 100213, - [SMALL_STATE(2865)] = 100232, - [SMALL_STATE(2866)] = 100251, - [SMALL_STATE(2867)] = 100270, - [SMALL_STATE(2868)] = 100289, - [SMALL_STATE(2869)] = 100308, - [SMALL_STATE(2870)] = 100327, - [SMALL_STATE(2871)] = 100346, - [SMALL_STATE(2872)] = 100365, - [SMALL_STATE(2873)] = 100384, - [SMALL_STATE(2874)] = 100403, - [SMALL_STATE(2875)] = 100418, - [SMALL_STATE(2876)] = 100431, - [SMALL_STATE(2877)] = 100450, - [SMALL_STATE(2878)] = 100469, - [SMALL_STATE(2879)] = 100488, - [SMALL_STATE(2880)] = 100505, - [SMALL_STATE(2881)] = 100524, - [SMALL_STATE(2882)] = 100543, - [SMALL_STATE(2883)] = 100562, - [SMALL_STATE(2884)] = 100581, - [SMALL_STATE(2885)] = 100600, - [SMALL_STATE(2886)] = 100623, - [SMALL_STATE(2887)] = 100646, - [SMALL_STATE(2888)] = 100665, - [SMALL_STATE(2889)] = 100684, - [SMALL_STATE(2890)] = 100707, - [SMALL_STATE(2891)] = 100726, - [SMALL_STATE(2892)] = 100746, - [SMALL_STATE(2893)] = 100764, - [SMALL_STATE(2894)] = 100780, - [SMALL_STATE(2895)] = 100792, - [SMALL_STATE(2896)] = 100804, - [SMALL_STATE(2897)] = 100816, - [SMALL_STATE(2898)] = 100830, - [SMALL_STATE(2899)] = 100844, - [SMALL_STATE(2900)] = 100858, - [SMALL_STATE(2901)] = 100876, - [SMALL_STATE(2902)] = 100892, - [SMALL_STATE(2903)] = 100908, - [SMALL_STATE(2904)] = 100922, - [SMALL_STATE(2905)] = 100936, - [SMALL_STATE(2906)] = 100948, - [SMALL_STATE(2907)] = 100966, - [SMALL_STATE(2908)] = 100984, - [SMALL_STATE(2909)] = 100996, - [SMALL_STATE(2910)] = 101008, - [SMALL_STATE(2911)] = 101024, - [SMALL_STATE(2912)] = 101038, - [SMALL_STATE(2913)] = 101052, - [SMALL_STATE(2914)] = 101070, - [SMALL_STATE(2915)] = 101088, - [SMALL_STATE(2916)] = 101106, - [SMALL_STATE(2917)] = 101124, - [SMALL_STATE(2918)] = 101142, - [SMALL_STATE(2919)] = 101156, - [SMALL_STATE(2920)] = 101174, - [SMALL_STATE(2921)] = 101192, - [SMALL_STATE(2922)] = 101210, - [SMALL_STATE(2923)] = 101226, - [SMALL_STATE(2924)] = 101238, - [SMALL_STATE(2925)] = 101256, - [SMALL_STATE(2926)] = 101270, - [SMALL_STATE(2927)] = 101288, - [SMALL_STATE(2928)] = 101304, - [SMALL_STATE(2929)] = 101320, - [SMALL_STATE(2930)] = 101332, - [SMALL_STATE(2931)] = 101348, - [SMALL_STATE(2932)] = 101362, - [SMALL_STATE(2933)] = 101380, - [SMALL_STATE(2934)] = 101398, - [SMALL_STATE(2935)] = 101416, - [SMALL_STATE(2936)] = 101434, - [SMALL_STATE(2937)] = 101450, - [SMALL_STATE(2938)] = 101464, - [SMALL_STATE(2939)] = 101480, - [SMALL_STATE(2940)] = 101498, - [SMALL_STATE(2941)] = 101510, - [SMALL_STATE(2942)] = 101522, - [SMALL_STATE(2943)] = 101542, - [SMALL_STATE(2944)] = 101554, - [SMALL_STATE(2945)] = 101566, - [SMALL_STATE(2946)] = 101586, - [SMALL_STATE(2947)] = 101606, - [SMALL_STATE(2948)] = 101618, - [SMALL_STATE(2949)] = 101637, - [SMALL_STATE(2950)] = 101648, - [SMALL_STATE(2951)] = 101667, - [SMALL_STATE(2952)] = 101682, - [SMALL_STATE(2953)] = 101697, - [SMALL_STATE(2954)] = 101708, - [SMALL_STATE(2955)] = 101721, - [SMALL_STATE(2956)] = 101732, - [SMALL_STATE(2957)] = 101743, - [SMALL_STATE(2958)] = 101758, - [SMALL_STATE(2959)] = 101769, - [SMALL_STATE(2960)] = 101788, - [SMALL_STATE(2961)] = 101807, - [SMALL_STATE(2962)] = 101818, - [SMALL_STATE(2963)] = 101837, - [SMALL_STATE(2964)] = 101848, - [SMALL_STATE(2965)] = 101859, - [SMALL_STATE(2966)] = 101872, - [SMALL_STATE(2967)] = 101891, - [SMALL_STATE(2968)] = 101902, - [SMALL_STATE(2969)] = 101917, - [SMALL_STATE(2970)] = 101930, - [SMALL_STATE(2971)] = 101941, - [SMALL_STATE(2972)] = 101956, - [SMALL_STATE(2973)] = 101967, - [SMALL_STATE(2974)] = 101986, - [SMALL_STATE(2975)] = 101997, - [SMALL_STATE(2976)] = 102008, - [SMALL_STATE(2977)] = 102019, - [SMALL_STATE(2978)] = 102032, - [SMALL_STATE(2979)] = 102045, - [SMALL_STATE(2980)] = 102058, - [SMALL_STATE(2981)] = 102077, - [SMALL_STATE(2982)] = 102088, - [SMALL_STATE(2983)] = 102101, - [SMALL_STATE(2984)] = 102116, - [SMALL_STATE(2985)] = 102127, - [SMALL_STATE(2986)] = 102138, - [SMALL_STATE(2987)] = 102149, - [SMALL_STATE(2988)] = 102164, - [SMALL_STATE(2989)] = 102183, - [SMALL_STATE(2990)] = 102198, - [SMALL_STATE(2991)] = 102209, - [SMALL_STATE(2992)] = 102220, - [SMALL_STATE(2993)] = 102239, - [SMALL_STATE(2994)] = 102250, - [SMALL_STATE(2995)] = 102269, - [SMALL_STATE(2996)] = 102280, - [SMALL_STATE(2997)] = 102296, - [SMALL_STATE(2998)] = 102312, - [SMALL_STATE(2999)] = 102324, - [SMALL_STATE(3000)] = 102340, - [SMALL_STATE(3001)] = 102356, - [SMALL_STATE(3002)] = 102372, - [SMALL_STATE(3003)] = 102388, - [SMALL_STATE(3004)] = 102404, - [SMALL_STATE(3005)] = 102418, - [SMALL_STATE(3006)] = 102434, - [SMALL_STATE(3007)] = 102446, - [SMALL_STATE(3008)] = 102462, - [SMALL_STATE(3009)] = 102472, - [SMALL_STATE(3010)] = 102486, - [SMALL_STATE(3011)] = 102502, - [SMALL_STATE(3012)] = 102518, - [SMALL_STATE(3013)] = 102534, - [SMALL_STATE(3014)] = 102550, - [SMALL_STATE(3015)] = 102562, - [SMALL_STATE(3016)] = 102572, - [SMALL_STATE(3017)] = 102588, - [SMALL_STATE(3018)] = 102600, - [SMALL_STATE(3019)] = 102614, - [SMALL_STATE(3020)] = 102630, - [SMALL_STATE(3021)] = 102644, - [SMALL_STATE(3022)] = 102660, - [SMALL_STATE(3023)] = 102674, - [SMALL_STATE(3024)] = 102684, - [SMALL_STATE(3025)] = 102694, - [SMALL_STATE(3026)] = 102710, - [SMALL_STATE(3027)] = 102726, - [SMALL_STATE(3028)] = 102742, - [SMALL_STATE(3029)] = 102756, - [SMALL_STATE(3030)] = 102772, - [SMALL_STATE(3031)] = 102788, - [SMALL_STATE(3032)] = 102802, - [SMALL_STATE(3033)] = 102818, - [SMALL_STATE(3034)] = 102834, - [SMALL_STATE(3035)] = 102846, - [SMALL_STATE(3036)] = 102862, - [SMALL_STATE(3037)] = 102878, - [SMALL_STATE(3038)] = 102894, - [SMALL_STATE(3039)] = 102908, - [SMALL_STATE(3040)] = 102924, - [SMALL_STATE(3041)] = 102938, - [SMALL_STATE(3042)] = 102954, - [SMALL_STATE(3043)] = 102970, - [SMALL_STATE(3044)] = 102984, - [SMALL_STATE(3045)] = 103000, - [SMALL_STATE(3046)] = 103016, - [SMALL_STATE(3047)] = 103032, - [SMALL_STATE(3048)] = 103048, - [SMALL_STATE(3049)] = 103062, - [SMALL_STATE(3050)] = 103078, - [SMALL_STATE(3051)] = 103088, - [SMALL_STATE(3052)] = 103102, - [SMALL_STATE(3053)] = 103118, - [SMALL_STATE(3054)] = 103134, - [SMALL_STATE(3055)] = 103150, - [SMALL_STATE(3056)] = 103164, - [SMALL_STATE(3057)] = 103174, - [SMALL_STATE(3058)] = 103190, - [SMALL_STATE(3059)] = 103206, - [SMALL_STATE(3060)] = 103220, - [SMALL_STATE(3061)] = 103234, - [SMALL_STATE(3062)] = 103250, - [SMALL_STATE(3063)] = 103266, - [SMALL_STATE(3064)] = 103282, - [SMALL_STATE(3065)] = 103292, - [SMALL_STATE(3066)] = 103306, - [SMALL_STATE(3067)] = 103322, - [SMALL_STATE(3068)] = 103336, - [SMALL_STATE(3069)] = 103346, - [SMALL_STATE(3070)] = 103362, - [SMALL_STATE(3071)] = 103376, - [SMALL_STATE(3072)] = 103392, - [SMALL_STATE(3073)] = 103408, - [SMALL_STATE(3074)] = 103424, - [SMALL_STATE(3075)] = 103440, - [SMALL_STATE(3076)] = 103454, - [SMALL_STATE(3077)] = 103470, - [SMALL_STATE(3078)] = 103486, - [SMALL_STATE(3079)] = 103500, - [SMALL_STATE(3080)] = 103513, - [SMALL_STATE(3081)] = 103526, - [SMALL_STATE(3082)] = 103535, - [SMALL_STATE(3083)] = 103544, - [SMALL_STATE(3084)] = 103557, - [SMALL_STATE(3085)] = 103570, - [SMALL_STATE(3086)] = 103579, - [SMALL_STATE(3087)] = 103592, - [SMALL_STATE(3088)] = 103601, - [SMALL_STATE(3089)] = 103614, - [SMALL_STATE(3090)] = 103627, - [SMALL_STATE(3091)] = 103640, - [SMALL_STATE(3092)] = 103653, - [SMALL_STATE(3093)] = 103666, - [SMALL_STATE(3094)] = 103679, - [SMALL_STATE(3095)] = 103688, - [SMALL_STATE(3096)] = 103701, - [SMALL_STATE(3097)] = 103714, - [SMALL_STATE(3098)] = 103727, - [SMALL_STATE(3099)] = 103740, - [SMALL_STATE(3100)] = 103749, - [SMALL_STATE(3101)] = 103762, - [SMALL_STATE(3102)] = 103771, - [SMALL_STATE(3103)] = 103784, - [SMALL_STATE(3104)] = 103793, - [SMALL_STATE(3105)] = 103806, - [SMALL_STATE(3106)] = 103819, - [SMALL_STATE(3107)] = 103832, - [SMALL_STATE(3108)] = 103845, - [SMALL_STATE(3109)] = 103858, - [SMALL_STATE(3110)] = 103871, - [SMALL_STATE(3111)] = 103884, - [SMALL_STATE(3112)] = 103897, - [SMALL_STATE(3113)] = 103906, - [SMALL_STATE(3114)] = 103919, - [SMALL_STATE(3115)] = 103932, - [SMALL_STATE(3116)] = 103945, - [SMALL_STATE(3117)] = 103958, - [SMALL_STATE(3118)] = 103971, - [SMALL_STATE(3119)] = 103984, - [SMALL_STATE(3120)] = 103997, - [SMALL_STATE(3121)] = 104010, - [SMALL_STATE(3122)] = 104023, - [SMALL_STATE(3123)] = 104036, - [SMALL_STATE(3124)] = 104045, - [SMALL_STATE(3125)] = 104058, - [SMALL_STATE(3126)] = 104071, - [SMALL_STATE(3127)] = 104084, - [SMALL_STATE(3128)] = 104097, - [SMALL_STATE(3129)] = 104110, - [SMALL_STATE(3130)] = 104123, - [SMALL_STATE(3131)] = 104136, - [SMALL_STATE(3132)] = 104149, - [SMALL_STATE(3133)] = 104162, - [SMALL_STATE(3134)] = 104171, - [SMALL_STATE(3135)] = 104184, - [SMALL_STATE(3136)] = 104193, - [SMALL_STATE(3137)] = 104206, - [SMALL_STATE(3138)] = 104219, - [SMALL_STATE(3139)] = 104232, - [SMALL_STATE(3140)] = 104245, - [SMALL_STATE(3141)] = 104258, - [SMALL_STATE(3142)] = 104271, - [SMALL_STATE(3143)] = 104280, - [SMALL_STATE(3144)] = 104293, - [SMALL_STATE(3145)] = 104302, - [SMALL_STATE(3146)] = 104315, - [SMALL_STATE(3147)] = 104328, - [SMALL_STATE(3148)] = 104341, - [SMALL_STATE(3149)] = 104354, - [SMALL_STATE(3150)] = 104367, - [SMALL_STATE(3151)] = 104380, - [SMALL_STATE(3152)] = 104393, - [SMALL_STATE(3153)] = 104406, - [SMALL_STATE(3154)] = 104419, - [SMALL_STATE(3155)] = 104432, - [SMALL_STATE(3156)] = 104445, - [SMALL_STATE(3157)] = 104458, - [SMALL_STATE(3158)] = 104471, - [SMALL_STATE(3159)] = 104484, - [SMALL_STATE(3160)] = 104497, - [SMALL_STATE(3161)] = 104510, - [SMALL_STATE(3162)] = 104523, - [SMALL_STATE(3163)] = 104536, - [SMALL_STATE(3164)] = 104549, - [SMALL_STATE(3165)] = 104562, - [SMALL_STATE(3166)] = 104571, - [SMALL_STATE(3167)] = 104584, - [SMALL_STATE(3168)] = 104597, - [SMALL_STATE(3169)] = 104610, - [SMALL_STATE(3170)] = 104623, - [SMALL_STATE(3171)] = 104636, - [SMALL_STATE(3172)] = 104649, - [SMALL_STATE(3173)] = 104662, - [SMALL_STATE(3174)] = 104675, - [SMALL_STATE(3175)] = 104688, - [SMALL_STATE(3176)] = 104701, - [SMALL_STATE(3177)] = 104714, - [SMALL_STATE(3178)] = 104727, - [SMALL_STATE(3179)] = 104738, - [SMALL_STATE(3180)] = 104751, - [SMALL_STATE(3181)] = 104764, - [SMALL_STATE(3182)] = 104777, - [SMALL_STATE(3183)] = 104790, - [SMALL_STATE(3184)] = 104803, - [SMALL_STATE(3185)] = 104816, - [SMALL_STATE(3186)] = 104829, - [SMALL_STATE(3187)] = 104842, - [SMALL_STATE(3188)] = 104855, - [SMALL_STATE(3189)] = 104868, - [SMALL_STATE(3190)] = 104881, - [SMALL_STATE(3191)] = 104894, - [SMALL_STATE(3192)] = 104907, - [SMALL_STATE(3193)] = 104920, - [SMALL_STATE(3194)] = 104933, - [SMALL_STATE(3195)] = 104946, - [SMALL_STATE(3196)] = 104959, - [SMALL_STATE(3197)] = 104972, - [SMALL_STATE(3198)] = 104985, - [SMALL_STATE(3199)] = 104998, - [SMALL_STATE(3200)] = 105011, - [SMALL_STATE(3201)] = 105024, - [SMALL_STATE(3202)] = 105037, - [SMALL_STATE(3203)] = 105050, - [SMALL_STATE(3204)] = 105063, - [SMALL_STATE(3205)] = 105076, - [SMALL_STATE(3206)] = 105089, - [SMALL_STATE(3207)] = 105102, - [SMALL_STATE(3208)] = 105115, - [SMALL_STATE(3209)] = 105128, - [SMALL_STATE(3210)] = 105141, - [SMALL_STATE(3211)] = 105154, - [SMALL_STATE(3212)] = 105167, - [SMALL_STATE(3213)] = 105180, - [SMALL_STATE(3214)] = 105193, - [SMALL_STATE(3215)] = 105206, - [SMALL_STATE(3216)] = 105219, - [SMALL_STATE(3217)] = 105232, - [SMALL_STATE(3218)] = 105245, - [SMALL_STATE(3219)] = 105258, - [SMALL_STATE(3220)] = 105271, - [SMALL_STATE(3221)] = 105284, - [SMALL_STATE(3222)] = 105297, - [SMALL_STATE(3223)] = 105310, - [SMALL_STATE(3224)] = 105323, - [SMALL_STATE(3225)] = 105336, - [SMALL_STATE(3226)] = 105349, - [SMALL_STATE(3227)] = 105362, - [SMALL_STATE(3228)] = 105375, - [SMALL_STATE(3229)] = 105388, - [SMALL_STATE(3230)] = 105401, - [SMALL_STATE(3231)] = 105414, - [SMALL_STATE(3232)] = 105427, - [SMALL_STATE(3233)] = 105440, - [SMALL_STATE(3234)] = 105449, - [SMALL_STATE(3235)] = 105462, - [SMALL_STATE(3236)] = 105475, - [SMALL_STATE(3237)] = 105488, - [SMALL_STATE(3238)] = 105501, - [SMALL_STATE(3239)] = 105514, - [SMALL_STATE(3240)] = 105527, - [SMALL_STATE(3241)] = 105540, - [SMALL_STATE(3242)] = 105553, - [SMALL_STATE(3243)] = 105566, - [SMALL_STATE(3244)] = 105577, - [SMALL_STATE(3245)] = 105590, - [SMALL_STATE(3246)] = 105603, - [SMALL_STATE(3247)] = 105616, - [SMALL_STATE(3248)] = 105629, - [SMALL_STATE(3249)] = 105642, - [SMALL_STATE(3250)] = 105655, - [SMALL_STATE(3251)] = 105668, - [SMALL_STATE(3252)] = 105677, - [SMALL_STATE(3253)] = 105690, - [SMALL_STATE(3254)] = 105703, - [SMALL_STATE(3255)] = 105716, - [SMALL_STATE(3256)] = 105729, - [SMALL_STATE(3257)] = 105742, - [SMALL_STATE(3258)] = 105755, - [SMALL_STATE(3259)] = 105766, - [SMALL_STATE(3260)] = 105779, - [SMALL_STATE(3261)] = 105792, - [SMALL_STATE(3262)] = 105805, - [SMALL_STATE(3263)] = 105818, - [SMALL_STATE(3264)] = 105827, - [SMALL_STATE(3265)] = 105840, - [SMALL_STATE(3266)] = 105853, - [SMALL_STATE(3267)] = 105866, - [SMALL_STATE(3268)] = 105879, - [SMALL_STATE(3269)] = 105892, - [SMALL_STATE(3270)] = 105905, - [SMALL_STATE(3271)] = 105918, - [SMALL_STATE(3272)] = 105931, - [SMALL_STATE(3273)] = 105944, - [SMALL_STATE(3274)] = 105957, - [SMALL_STATE(3275)] = 105970, - [SMALL_STATE(3276)] = 105983, - [SMALL_STATE(3277)] = 105996, - [SMALL_STATE(3278)] = 106009, - [SMALL_STATE(3279)] = 106022, - [SMALL_STATE(3280)] = 106031, - [SMALL_STATE(3281)] = 106044, - [SMALL_STATE(3282)] = 106057, - [SMALL_STATE(3283)] = 106070, - [SMALL_STATE(3284)] = 106083, - [SMALL_STATE(3285)] = 106096, - [SMALL_STATE(3286)] = 106109, - [SMALL_STATE(3287)] = 106122, - [SMALL_STATE(3288)] = 106135, - [SMALL_STATE(3289)] = 106148, - [SMALL_STATE(3290)] = 106161, - [SMALL_STATE(3291)] = 106174, - [SMALL_STATE(3292)] = 106187, - [SMALL_STATE(3293)] = 106200, - [SMALL_STATE(3294)] = 106213, - [SMALL_STATE(3295)] = 106226, - [SMALL_STATE(3296)] = 106239, - [SMALL_STATE(3297)] = 106252, - [SMALL_STATE(3298)] = 106265, - [SMALL_STATE(3299)] = 106278, - [SMALL_STATE(3300)] = 106291, - [SMALL_STATE(3301)] = 106304, - [SMALL_STATE(3302)] = 106317, - [SMALL_STATE(3303)] = 106330, - [SMALL_STATE(3304)] = 106343, - [SMALL_STATE(3305)] = 106356, - [SMALL_STATE(3306)] = 106369, - [SMALL_STATE(3307)] = 106382, - [SMALL_STATE(3308)] = 106395, - [SMALL_STATE(3309)] = 106408, - [SMALL_STATE(3310)] = 106421, - [SMALL_STATE(3311)] = 106434, - [SMALL_STATE(3312)] = 106447, - [SMALL_STATE(3313)] = 106460, - [SMALL_STATE(3314)] = 106473, - [SMALL_STATE(3315)] = 106486, - [SMALL_STATE(3316)] = 106499, - [SMALL_STATE(3317)] = 106512, - [SMALL_STATE(3318)] = 106525, - [SMALL_STATE(3319)] = 106538, - [SMALL_STATE(3320)] = 106551, - [SMALL_STATE(3321)] = 106564, - [SMALL_STATE(3322)] = 106577, - [SMALL_STATE(3323)] = 106590, - [SMALL_STATE(3324)] = 106603, - [SMALL_STATE(3325)] = 106613, - [SMALL_STATE(3326)] = 106623, - [SMALL_STATE(3327)] = 106633, - [SMALL_STATE(3328)] = 106643, - [SMALL_STATE(3329)] = 106653, - [SMALL_STATE(3330)] = 106663, - [SMALL_STATE(3331)] = 106673, - [SMALL_STATE(3332)] = 106683, - [SMALL_STATE(3333)] = 106693, - [SMALL_STATE(3334)] = 106703, - [SMALL_STATE(3335)] = 106713, - [SMALL_STATE(3336)] = 106721, - [SMALL_STATE(3337)] = 106731, - [SMALL_STATE(3338)] = 106741, - [SMALL_STATE(3339)] = 106751, - [SMALL_STATE(3340)] = 106761, - [SMALL_STATE(3341)] = 106771, - [SMALL_STATE(3342)] = 106781, - [SMALL_STATE(3343)] = 106791, - [SMALL_STATE(3344)] = 106801, - [SMALL_STATE(3345)] = 106811, - [SMALL_STATE(3346)] = 106821, - [SMALL_STATE(3347)] = 106831, - [SMALL_STATE(3348)] = 106841, - [SMALL_STATE(3349)] = 106851, - [SMALL_STATE(3350)] = 106861, - [SMALL_STATE(3351)] = 106871, - [SMALL_STATE(3352)] = 106881, - [SMALL_STATE(3353)] = 106891, - [SMALL_STATE(3354)] = 106901, - [SMALL_STATE(3355)] = 106911, - [SMALL_STATE(3356)] = 106921, - [SMALL_STATE(3357)] = 106931, - [SMALL_STATE(3358)] = 106941, - [SMALL_STATE(3359)] = 106951, - [SMALL_STATE(3360)] = 106961, - [SMALL_STATE(3361)] = 106971, - [SMALL_STATE(3362)] = 106981, - [SMALL_STATE(3363)] = 106991, - [SMALL_STATE(3364)] = 107001, - [SMALL_STATE(3365)] = 107011, - [SMALL_STATE(3366)] = 107021, - [SMALL_STATE(3367)] = 107031, - [SMALL_STATE(3368)] = 107041, - [SMALL_STATE(3369)] = 107051, - [SMALL_STATE(3370)] = 107061, - [SMALL_STATE(3371)] = 107071, - [SMALL_STATE(3372)] = 107081, - [SMALL_STATE(3373)] = 107091, - [SMALL_STATE(3374)] = 107101, - [SMALL_STATE(3375)] = 107111, - [SMALL_STATE(3376)] = 107121, - [SMALL_STATE(3377)] = 107131, - [SMALL_STATE(3378)] = 107141, - [SMALL_STATE(3379)] = 107151, - [SMALL_STATE(3380)] = 107161, - [SMALL_STATE(3381)] = 107169, - [SMALL_STATE(3382)] = 107177, - [SMALL_STATE(3383)] = 107187, - [SMALL_STATE(3384)] = 107197, - [SMALL_STATE(3385)] = 107207, - [SMALL_STATE(3386)] = 107217, - [SMALL_STATE(3387)] = 107227, - [SMALL_STATE(3388)] = 107237, - [SMALL_STATE(3389)] = 107247, - [SMALL_STATE(3390)] = 107255, - [SMALL_STATE(3391)] = 107265, - [SMALL_STATE(3392)] = 107275, - [SMALL_STATE(3393)] = 107285, - [SMALL_STATE(3394)] = 107295, - [SMALL_STATE(3395)] = 107305, - [SMALL_STATE(3396)] = 107313, - [SMALL_STATE(3397)] = 107323, - [SMALL_STATE(3398)] = 107333, - [SMALL_STATE(3399)] = 107343, - [SMALL_STATE(3400)] = 107353, - [SMALL_STATE(3401)] = 107363, - [SMALL_STATE(3402)] = 107373, - [SMALL_STATE(3403)] = 107383, - [SMALL_STATE(3404)] = 107393, - [SMALL_STATE(3405)] = 107403, - [SMALL_STATE(3406)] = 107413, - [SMALL_STATE(3407)] = 107421, - [SMALL_STATE(3408)] = 107431, - [SMALL_STATE(3409)] = 107441, - [SMALL_STATE(3410)] = 107449, - [SMALL_STATE(3411)] = 107459, - [SMALL_STATE(3412)] = 107467, - [SMALL_STATE(3413)] = 107475, - [SMALL_STATE(3414)] = 107485, - [SMALL_STATE(3415)] = 107495, - [SMALL_STATE(3416)] = 107505, - [SMALL_STATE(3417)] = 107515, - [SMALL_STATE(3418)] = 107525, - [SMALL_STATE(3419)] = 107535, - [SMALL_STATE(3420)] = 107545, - [SMALL_STATE(3421)] = 107555, - [SMALL_STATE(3422)] = 107563, - [SMALL_STATE(3423)] = 107573, - [SMALL_STATE(3424)] = 107583, - [SMALL_STATE(3425)] = 107593, - [SMALL_STATE(3426)] = 107603, - [SMALL_STATE(3427)] = 107613, - [SMALL_STATE(3428)] = 107623, - [SMALL_STATE(3429)] = 107633, - [SMALL_STATE(3430)] = 107641, - [SMALL_STATE(3431)] = 107649, - [SMALL_STATE(3432)] = 107659, - [SMALL_STATE(3433)] = 107669, - [SMALL_STATE(3434)] = 107679, - [SMALL_STATE(3435)] = 107689, - [SMALL_STATE(3436)] = 107699, - [SMALL_STATE(3437)] = 107709, - [SMALL_STATE(3438)] = 107719, - [SMALL_STATE(3439)] = 107729, - [SMALL_STATE(3440)] = 107739, - [SMALL_STATE(3441)] = 107749, - [SMALL_STATE(3442)] = 107759, - [SMALL_STATE(3443)] = 107769, - [SMALL_STATE(3444)] = 107777, - [SMALL_STATE(3445)] = 107785, - [SMALL_STATE(3446)] = 107795, - [SMALL_STATE(3447)] = 107805, - [SMALL_STATE(3448)] = 107815, - [SMALL_STATE(3449)] = 107825, - [SMALL_STATE(3450)] = 107833, - [SMALL_STATE(3451)] = 107843, - [SMALL_STATE(3452)] = 107853, - [SMALL_STATE(3453)] = 107861, - [SMALL_STATE(3454)] = 107871, - [SMALL_STATE(3455)] = 107879, - [SMALL_STATE(3456)] = 107889, - [SMALL_STATE(3457)] = 107899, - [SMALL_STATE(3458)] = 107907, - [SMALL_STATE(3459)] = 107917, - [SMALL_STATE(3460)] = 107927, - [SMALL_STATE(3461)] = 107937, - [SMALL_STATE(3462)] = 107947, - [SMALL_STATE(3463)] = 107957, - [SMALL_STATE(3464)] = 107965, - [SMALL_STATE(3465)] = 107975, - [SMALL_STATE(3466)] = 107985, - [SMALL_STATE(3467)] = 107995, - [SMALL_STATE(3468)] = 108005, - [SMALL_STATE(3469)] = 108013, - [SMALL_STATE(3470)] = 108021, - [SMALL_STATE(3471)] = 108029, - [SMALL_STATE(3472)] = 108039, - [SMALL_STATE(3473)] = 108049, - [SMALL_STATE(3474)] = 108057, - [SMALL_STATE(3475)] = 108067, - [SMALL_STATE(3476)] = 108077, - [SMALL_STATE(3477)] = 108085, - [SMALL_STATE(3478)] = 108095, - [SMALL_STATE(3479)] = 108103, - [SMALL_STATE(3480)] = 108113, - [SMALL_STATE(3481)] = 108123, - [SMALL_STATE(3482)] = 108133, - [SMALL_STATE(3483)] = 108143, - [SMALL_STATE(3484)] = 108151, - [SMALL_STATE(3485)] = 108161, - [SMALL_STATE(3486)] = 108171, - [SMALL_STATE(3487)] = 108181, - [SMALL_STATE(3488)] = 108189, - [SMALL_STATE(3489)] = 108197, - [SMALL_STATE(3490)] = 108207, - [SMALL_STATE(3491)] = 108217, - [SMALL_STATE(3492)] = 108227, - [SMALL_STATE(3493)] = 108237, - [SMALL_STATE(3494)] = 108247, - [SMALL_STATE(3495)] = 108257, - [SMALL_STATE(3496)] = 108267, - [SMALL_STATE(3497)] = 108277, - [SMALL_STATE(3498)] = 108287, - [SMALL_STATE(3499)] = 108297, - [SMALL_STATE(3500)] = 108307, - [SMALL_STATE(3501)] = 108317, - [SMALL_STATE(3502)] = 108327, - [SMALL_STATE(3503)] = 108337, - [SMALL_STATE(3504)] = 108347, - [SMALL_STATE(3505)] = 108357, - [SMALL_STATE(3506)] = 108367, - [SMALL_STATE(3507)] = 108377, - [SMALL_STATE(3508)] = 108387, - [SMALL_STATE(3509)] = 108397, - [SMALL_STATE(3510)] = 108407, - [SMALL_STATE(3511)] = 108417, - [SMALL_STATE(3512)] = 108427, - [SMALL_STATE(3513)] = 108437, - [SMALL_STATE(3514)] = 108447, - [SMALL_STATE(3515)] = 108457, - [SMALL_STATE(3516)] = 108467, - [SMALL_STATE(3517)] = 108477, - [SMALL_STATE(3518)] = 108487, - [SMALL_STATE(3519)] = 108494, - [SMALL_STATE(3520)] = 108501, - [SMALL_STATE(3521)] = 108508, - [SMALL_STATE(3522)] = 108515, - [SMALL_STATE(3523)] = 108522, - [SMALL_STATE(3524)] = 108529, - [SMALL_STATE(3525)] = 108536, - [SMALL_STATE(3526)] = 108543, - [SMALL_STATE(3527)] = 108550, - [SMALL_STATE(3528)] = 108557, - [SMALL_STATE(3529)] = 108564, - [SMALL_STATE(3530)] = 108571, - [SMALL_STATE(3531)] = 108578, - [SMALL_STATE(3532)] = 108585, - [SMALL_STATE(3533)] = 108592, - [SMALL_STATE(3534)] = 108599, - [SMALL_STATE(3535)] = 108606, - [SMALL_STATE(3536)] = 108613, - [SMALL_STATE(3537)] = 108620, - [SMALL_STATE(3538)] = 108627, - [SMALL_STATE(3539)] = 108634, - [SMALL_STATE(3540)] = 108641, - [SMALL_STATE(3541)] = 108648, - [SMALL_STATE(3542)] = 108655, - [SMALL_STATE(3543)] = 108662, - [SMALL_STATE(3544)] = 108669, - [SMALL_STATE(3545)] = 108676, - [SMALL_STATE(3546)] = 108683, - [SMALL_STATE(3547)] = 108690, - [SMALL_STATE(3548)] = 108697, - [SMALL_STATE(3549)] = 108704, - [SMALL_STATE(3550)] = 108711, - [SMALL_STATE(3551)] = 108718, - [SMALL_STATE(3552)] = 108725, - [SMALL_STATE(3553)] = 108732, - [SMALL_STATE(3554)] = 108739, - [SMALL_STATE(3555)] = 108746, - [SMALL_STATE(3556)] = 108753, - [SMALL_STATE(3557)] = 108760, - [SMALL_STATE(3558)] = 108767, - [SMALL_STATE(3559)] = 108774, - [SMALL_STATE(3560)] = 108781, - [SMALL_STATE(3561)] = 108788, - [SMALL_STATE(3562)] = 108795, - [SMALL_STATE(3563)] = 108802, - [SMALL_STATE(3564)] = 108809, - [SMALL_STATE(3565)] = 108816, - [SMALL_STATE(3566)] = 108823, - [SMALL_STATE(3567)] = 108830, - [SMALL_STATE(3568)] = 108837, - [SMALL_STATE(3569)] = 108844, - [SMALL_STATE(3570)] = 108851, - [SMALL_STATE(3571)] = 108858, - [SMALL_STATE(3572)] = 108865, - [SMALL_STATE(3573)] = 108872, - [SMALL_STATE(3574)] = 108879, - [SMALL_STATE(3575)] = 108886, - [SMALL_STATE(3576)] = 108893, - [SMALL_STATE(3577)] = 108900, - [SMALL_STATE(3578)] = 108907, - [SMALL_STATE(3579)] = 108914, - [SMALL_STATE(3580)] = 108921, - [SMALL_STATE(3581)] = 108928, - [SMALL_STATE(3582)] = 108935, - [SMALL_STATE(3583)] = 108942, - [SMALL_STATE(3584)] = 108949, - [SMALL_STATE(3585)] = 108956, - [SMALL_STATE(3586)] = 108963, - [SMALL_STATE(3587)] = 108970, - [SMALL_STATE(3588)] = 108977, - [SMALL_STATE(3589)] = 108984, - [SMALL_STATE(3590)] = 108991, - [SMALL_STATE(3591)] = 108998, - [SMALL_STATE(3592)] = 109005, - [SMALL_STATE(3593)] = 109012, - [SMALL_STATE(3594)] = 109019, - [SMALL_STATE(3595)] = 109026, - [SMALL_STATE(3596)] = 109033, - [SMALL_STATE(3597)] = 109040, - [SMALL_STATE(3598)] = 109047, - [SMALL_STATE(3599)] = 109054, - [SMALL_STATE(3600)] = 109061, - [SMALL_STATE(3601)] = 109068, - [SMALL_STATE(3602)] = 109075, - [SMALL_STATE(3603)] = 109082, - [SMALL_STATE(3604)] = 109089, - [SMALL_STATE(3605)] = 109096, - [SMALL_STATE(3606)] = 109103, - [SMALL_STATE(3607)] = 109110, - [SMALL_STATE(3608)] = 109117, - [SMALL_STATE(3609)] = 109124, - [SMALL_STATE(3610)] = 109131, - [SMALL_STATE(3611)] = 109138, - [SMALL_STATE(3612)] = 109145, - [SMALL_STATE(3613)] = 109152, - [SMALL_STATE(3614)] = 109159, - [SMALL_STATE(3615)] = 109166, - [SMALL_STATE(3616)] = 109173, - [SMALL_STATE(3617)] = 109180, - [SMALL_STATE(3618)] = 109187, - [SMALL_STATE(3619)] = 109194, - [SMALL_STATE(3620)] = 109201, - [SMALL_STATE(3621)] = 109208, - [SMALL_STATE(3622)] = 109215, - [SMALL_STATE(3623)] = 109222, - [SMALL_STATE(3624)] = 109229, - [SMALL_STATE(3625)] = 109236, - [SMALL_STATE(3626)] = 109243, - [SMALL_STATE(3627)] = 109250, - [SMALL_STATE(3628)] = 109257, - [SMALL_STATE(3629)] = 109264, - [SMALL_STATE(3630)] = 109271, - [SMALL_STATE(3631)] = 109278, - [SMALL_STATE(3632)] = 109285, - [SMALL_STATE(3633)] = 109292, - [SMALL_STATE(3634)] = 109299, - [SMALL_STATE(3635)] = 109306, - [SMALL_STATE(3636)] = 109313, - [SMALL_STATE(3637)] = 109320, - [SMALL_STATE(3638)] = 109327, - [SMALL_STATE(3639)] = 109334, - [SMALL_STATE(3640)] = 109341, - [SMALL_STATE(3641)] = 109348, - [SMALL_STATE(3642)] = 109355, - [SMALL_STATE(3643)] = 109362, - [SMALL_STATE(3644)] = 109369, - [SMALL_STATE(3645)] = 109376, - [SMALL_STATE(3646)] = 109383, - [SMALL_STATE(3647)] = 109390, - [SMALL_STATE(3648)] = 109397, - [SMALL_STATE(3649)] = 109404, - [SMALL_STATE(3650)] = 109411, - [SMALL_STATE(3651)] = 109418, - [SMALL_STATE(3652)] = 109425, - [SMALL_STATE(3653)] = 109432, - [SMALL_STATE(3654)] = 109439, - [SMALL_STATE(3655)] = 109446, - [SMALL_STATE(3656)] = 109453, - [SMALL_STATE(3657)] = 109460, - [SMALL_STATE(3658)] = 109467, - [SMALL_STATE(3659)] = 109474, - [SMALL_STATE(3660)] = 109481, - [SMALL_STATE(3661)] = 109488, - [SMALL_STATE(3662)] = 109495, - [SMALL_STATE(3663)] = 109502, - [SMALL_STATE(3664)] = 109509, - [SMALL_STATE(3665)] = 109516, - [SMALL_STATE(3666)] = 109523, - [SMALL_STATE(3667)] = 109530, - [SMALL_STATE(3668)] = 109537, - [SMALL_STATE(3669)] = 109544, - [SMALL_STATE(3670)] = 109551, - [SMALL_STATE(3671)] = 109558, - [SMALL_STATE(3672)] = 109565, - [SMALL_STATE(3673)] = 109572, - [SMALL_STATE(3674)] = 109579, - [SMALL_STATE(3675)] = 109586, - [SMALL_STATE(3676)] = 109593, - [SMALL_STATE(3677)] = 109600, - [SMALL_STATE(3678)] = 109607, - [SMALL_STATE(3679)] = 109614, - [SMALL_STATE(3680)] = 109621, - [SMALL_STATE(3681)] = 109628, - [SMALL_STATE(3682)] = 109635, - [SMALL_STATE(3683)] = 109642, - [SMALL_STATE(3684)] = 109649, - [SMALL_STATE(3685)] = 109656, - [SMALL_STATE(3686)] = 109663, - [SMALL_STATE(3687)] = 109670, - [SMALL_STATE(3688)] = 109677, - [SMALL_STATE(3689)] = 109684, - [SMALL_STATE(3690)] = 109691, - [SMALL_STATE(3691)] = 109698, - [SMALL_STATE(3692)] = 109705, - [SMALL_STATE(3693)] = 109712, - [SMALL_STATE(3694)] = 109719, - [SMALL_STATE(3695)] = 109726, - [SMALL_STATE(3696)] = 109733, - [SMALL_STATE(3697)] = 109740, - [SMALL_STATE(3698)] = 109747, - [SMALL_STATE(3699)] = 109754, - [SMALL_STATE(3700)] = 109761, - [SMALL_STATE(3701)] = 109768, - [SMALL_STATE(3702)] = 109775, - [SMALL_STATE(3703)] = 109782, - [SMALL_STATE(3704)] = 109789, - [SMALL_STATE(3705)] = 109796, - [SMALL_STATE(3706)] = 109803, - [SMALL_STATE(3707)] = 109810, - [SMALL_STATE(3708)] = 109817, - [SMALL_STATE(3709)] = 109824, - [SMALL_STATE(3710)] = 109831, - [SMALL_STATE(3711)] = 109838, - [SMALL_STATE(3712)] = 109845, - [SMALL_STATE(3713)] = 109852, - [SMALL_STATE(3714)] = 109859, - [SMALL_STATE(3715)] = 109866, - [SMALL_STATE(3716)] = 109873, - [SMALL_STATE(3717)] = 109880, - [SMALL_STATE(3718)] = 109887, - [SMALL_STATE(3719)] = 109894, - [SMALL_STATE(3720)] = 109901, - [SMALL_STATE(3721)] = 109908, - [SMALL_STATE(3722)] = 109915, - [SMALL_STATE(3723)] = 109922, - [SMALL_STATE(3724)] = 109929, - [SMALL_STATE(3725)] = 109936, - [SMALL_STATE(3726)] = 109943, - [SMALL_STATE(3727)] = 109950, - [SMALL_STATE(3728)] = 109957, - [SMALL_STATE(3729)] = 109964, - [SMALL_STATE(3730)] = 109971, - [SMALL_STATE(3731)] = 109978, - [SMALL_STATE(3732)] = 109985, - [SMALL_STATE(3733)] = 109992, - [SMALL_STATE(3734)] = 109999, - [SMALL_STATE(3735)] = 110006, - [SMALL_STATE(3736)] = 110013, - [SMALL_STATE(3737)] = 110020, - [SMALL_STATE(3738)] = 110027, - [SMALL_STATE(3739)] = 110034, - [SMALL_STATE(3740)] = 110041, - [SMALL_STATE(3741)] = 110048, - [SMALL_STATE(3742)] = 110055, - [SMALL_STATE(3743)] = 110062, - [SMALL_STATE(3744)] = 110069, - [SMALL_STATE(3745)] = 110076, - [SMALL_STATE(3746)] = 110083, - [SMALL_STATE(3747)] = 110090, - [SMALL_STATE(3748)] = 110097, - [SMALL_STATE(3749)] = 110104, - [SMALL_STATE(3750)] = 110111, - [SMALL_STATE(3751)] = 110118, - [SMALL_STATE(3752)] = 110125, - [SMALL_STATE(3753)] = 110132, - [SMALL_STATE(3754)] = 110139, - [SMALL_STATE(3755)] = 110146, - [SMALL_STATE(3756)] = 110153, - [SMALL_STATE(3757)] = 110160, - [SMALL_STATE(3758)] = 110167, - [SMALL_STATE(3759)] = 110174, - [SMALL_STATE(3760)] = 110181, - [SMALL_STATE(3761)] = 110188, - [SMALL_STATE(3762)] = 110195, - [SMALL_STATE(3763)] = 110202, - [SMALL_STATE(3764)] = 110209, - [SMALL_STATE(3765)] = 110216, - [SMALL_STATE(3766)] = 110223, - [SMALL_STATE(3767)] = 110230, - [SMALL_STATE(3768)] = 110237, - [SMALL_STATE(3769)] = 110244, - [SMALL_STATE(3770)] = 110251, - [SMALL_STATE(3771)] = 110258, - [SMALL_STATE(3772)] = 110265, - [SMALL_STATE(3773)] = 110272, - [SMALL_STATE(3774)] = 110279, - [SMALL_STATE(3775)] = 110286, - [SMALL_STATE(3776)] = 110293, - [SMALL_STATE(3777)] = 110300, - [SMALL_STATE(3778)] = 110307, - [SMALL_STATE(3779)] = 110314, - [SMALL_STATE(3780)] = 110321, - [SMALL_STATE(3781)] = 110328, - [SMALL_STATE(3782)] = 110335, - [SMALL_STATE(3783)] = 110342, - [SMALL_STATE(3784)] = 110349, - [SMALL_STATE(3785)] = 110356, - [SMALL_STATE(3786)] = 110363, - [SMALL_STATE(3787)] = 110370, - [SMALL_STATE(3788)] = 110377, - [SMALL_STATE(3789)] = 110384, - [SMALL_STATE(3790)] = 110391, - [SMALL_STATE(3791)] = 110398, - [SMALL_STATE(3792)] = 110405, - [SMALL_STATE(3793)] = 110412, - [SMALL_STATE(3794)] = 110419, - [SMALL_STATE(3795)] = 110426, - [SMALL_STATE(3796)] = 110433, - [SMALL_STATE(3797)] = 110440, - [SMALL_STATE(3798)] = 110447, - [SMALL_STATE(3799)] = 110454, - [SMALL_STATE(3800)] = 110461, - [SMALL_STATE(3801)] = 110468, - [SMALL_STATE(3802)] = 110475, - [SMALL_STATE(3803)] = 110482, - [SMALL_STATE(3804)] = 110489, - [SMALL_STATE(3805)] = 110496, - [SMALL_STATE(3806)] = 110503, - [SMALL_STATE(3807)] = 110510, - [SMALL_STATE(3808)] = 110517, - [SMALL_STATE(3809)] = 110524, + [SMALL_STATE(1006)] = 0, + [SMALL_STATE(1007)] = 118, + [SMALL_STATE(1008)] = 236, + [SMALL_STATE(1009)] = 354, + [SMALL_STATE(1010)] = 472, + [SMALL_STATE(1011)] = 590, + [SMALL_STATE(1012)] = 708, + [SMALL_STATE(1013)] = 826, + [SMALL_STATE(1014)] = 944, + [SMALL_STATE(1015)] = 1054, + [SMALL_STATE(1016)] = 1172, + [SMALL_STATE(1017)] = 1290, + [SMALL_STATE(1018)] = 1408, + [SMALL_STATE(1019)] = 1526, + [SMALL_STATE(1020)] = 1644, + [SMALL_STATE(1021)] = 1762, + [SMALL_STATE(1022)] = 1880, + [SMALL_STATE(1023)] = 1998, + [SMALL_STATE(1024)] = 2116, + [SMALL_STATE(1025)] = 2234, + [SMALL_STATE(1026)] = 2352, + [SMALL_STATE(1027)] = 2470, + [SMALL_STATE(1028)] = 2580, + [SMALL_STATE(1029)] = 2667, + [SMALL_STATE(1030)] = 2754, + [SMALL_STATE(1031)] = 2845, + [SMALL_STATE(1032)] = 2948, + [SMALL_STATE(1033)] = 3017, + [SMALL_STATE(1034)] = 3104, + [SMALL_STATE(1035)] = 3173, + [SMALL_STATE(1036)] = 3264, + [SMALL_STATE(1037)] = 3333, + [SMALL_STATE(1038)] = 3438, + [SMALL_STATE(1039)] = 3529, + [SMALL_STATE(1040)] = 3598, + [SMALL_STATE(1041)] = 3703, + [SMALL_STATE(1042)] = 3806, + [SMALL_STATE(1043)] = 3905, + [SMALL_STATE(1044)] = 4006, + [SMALL_STATE(1045)] = 4109, + [SMALL_STATE(1046)] = 4196, + [SMALL_STATE(1047)] = 4299, + [SMALL_STATE(1048)] = 4398, + [SMALL_STATE(1049)] = 4467, + [SMALL_STATE(1050)] = 4570, + [SMALL_STATE(1051)] = 4671, + [SMALL_STATE(1052)] = 4774, + [SMALL_STATE(1053)] = 4843, + [SMALL_STATE(1054)] = 4934, + [SMALL_STATE(1055)] = 5006, + [SMALL_STATE(1056)] = 5078, + [SMALL_STATE(1057)] = 5150, + [SMALL_STATE(1058)] = 5241, + [SMALL_STATE(1059)] = 5330, + [SMALL_STATE(1060)] = 5421, + [SMALL_STATE(1061)] = 5500, + [SMALL_STATE(1062)] = 5591, + [SMALL_STATE(1063)] = 5682, + [SMALL_STATE(1064)] = 5773, + [SMALL_STATE(1065)] = 5862, + [SMALL_STATE(1066)] = 5951, + [SMALL_STATE(1067)] = 6040, + [SMALL_STATE(1068)] = 6107, + [SMALL_STATE(1069)] = 6198, + [SMALL_STATE(1070)] = 6316, + [SMALL_STATE(1071)] = 6406, + [SMALL_STATE(1072)] = 6496, + [SMALL_STATE(1073)] = 6570, + [SMALL_STATE(1074)] = 6660, + [SMALL_STATE(1075)] = 6730, + [SMALL_STATE(1076)] = 6820, + [SMALL_STATE(1077)] = 6890, + [SMALL_STATE(1078)] = 6980, + [SMALL_STATE(1079)] = 7070, + [SMALL_STATE(1080)] = 7197, + [SMALL_STATE(1081)] = 7324, + [SMALL_STATE(1082)] = 7451, + [SMALL_STATE(1083)] = 7578, + [SMALL_STATE(1084)] = 7705, + [SMALL_STATE(1085)] = 7832, + [SMALL_STATE(1086)] = 7959, + [SMALL_STATE(1087)] = 8040, + [SMALL_STATE(1088)] = 8167, + [SMALL_STATE(1089)] = 8294, + [SMALL_STATE(1090)] = 8421, + [SMALL_STATE(1091)] = 8548, + [SMALL_STATE(1092)] = 8675, + [SMALL_STATE(1093)] = 8743, + [SMALL_STATE(1094)] = 8817, + [SMALL_STATE(1095)] = 8881, + [SMALL_STATE(1096)] = 8945, + [SMALL_STATE(1097)] = 9009, + [SMALL_STATE(1098)] = 9073, + [SMALL_STATE(1099)] = 9137, + [SMALL_STATE(1100)] = 9201, + [SMALL_STATE(1101)] = 9269, + [SMALL_STATE(1102)] = 9343, + [SMALL_STATE(1103)] = 9411, + [SMALL_STATE(1104)] = 9475, + [SMALL_STATE(1105)] = 9549, + [SMALL_STATE(1106)] = 9613, + [SMALL_STATE(1107)] = 9677, + [SMALL_STATE(1108)] = 9755, + [SMALL_STATE(1109)] = 9819, + [SMALL_STATE(1110)] = 9883, + [SMALL_STATE(1111)] = 9947, + [SMALL_STATE(1112)] = 10011, + [SMALL_STATE(1113)] = 10089, + [SMALL_STATE(1114)] = 10153, + [SMALL_STATE(1115)] = 10217, + [SMALL_STATE(1116)] = 10291, + [SMALL_STATE(1117)] = 10369, + [SMALL_STATE(1118)] = 10433, + [SMALL_STATE(1119)] = 10497, + [SMALL_STATE(1120)] = 10575, + [SMALL_STATE(1121)] = 10639, + [SMALL_STATE(1122)] = 10703, + [SMALL_STATE(1123)] = 10767, + [SMALL_STATE(1124)] = 10831, + [SMALL_STATE(1125)] = 10894, + [SMALL_STATE(1126)] = 10973, + [SMALL_STATE(1127)] = 11036, + [SMALL_STATE(1128)] = 11099, + [SMALL_STATE(1129)] = 11174, + [SMALL_STATE(1130)] = 11249, + [SMALL_STATE(1131)] = 11324, + [SMALL_STATE(1132)] = 11399, + [SMALL_STATE(1133)] = 11474, + [SMALL_STATE(1134)] = 11537, + [SMALL_STATE(1135)] = 11600, + [SMALL_STATE(1136)] = 11675, + [SMALL_STATE(1137)] = 11754, + [SMALL_STATE(1138)] = 11817, + [SMALL_STATE(1139)] = 11880, + [SMALL_STATE(1140)] = 11942, + [SMALL_STATE(1141)] = 12004, + [SMALL_STATE(1142)] = 12066, + [SMALL_STATE(1143)] = 12142, + [SMALL_STATE(1144)] = 12204, + [SMALL_STATE(1145)] = 12266, + [SMALL_STATE(1146)] = 12328, + [SMALL_STATE(1147)] = 12396, + [SMALL_STATE(1148)] = 12458, + [SMALL_STATE(1149)] = 12520, + [SMALL_STATE(1150)] = 12588, + [SMALL_STATE(1151)] = 12650, + [SMALL_STATE(1152)] = 12726, + [SMALL_STATE(1153)] = 12788, + [SMALL_STATE(1154)] = 12850, + [SMALL_STATE(1155)] = 12918, + [SMALL_STATE(1156)] = 12986, + [SMALL_STATE(1157)] = 13054, + [SMALL_STATE(1158)] = 13116, + [SMALL_STATE(1159)] = 13178, + [SMALL_STATE(1160)] = 13240, + [SMALL_STATE(1161)] = 13316, + [SMALL_STATE(1162)] = 13378, + [SMALL_STATE(1163)] = 13440, + [SMALL_STATE(1164)] = 13502, + [SMALL_STATE(1165)] = 13564, + [SMALL_STATE(1166)] = 13626, + [SMALL_STATE(1167)] = 13700, + [SMALL_STATE(1168)] = 13782, + [SMALL_STATE(1169)] = 13846, + [SMALL_STATE(1170)] = 13920, + [SMALL_STATE(1171)] = 13982, + [SMALL_STATE(1172)] = 14044, + [SMALL_STATE(1173)] = 14106, + [SMALL_STATE(1174)] = 14168, + [SMALL_STATE(1175)] = 14230, + [SMALL_STATE(1176)] = 14292, + [SMALL_STATE(1177)] = 14354, + [SMALL_STATE(1178)] = 14416, + [SMALL_STATE(1179)] = 14478, + [SMALL_STATE(1180)] = 14540, + [SMALL_STATE(1181)] = 14602, + [SMALL_STATE(1182)] = 14664, + [SMALL_STATE(1183)] = 14726, + [SMALL_STATE(1184)] = 14788, + [SMALL_STATE(1185)] = 14850, + [SMALL_STATE(1186)] = 14912, + [SMALL_STATE(1187)] = 14974, + [SMALL_STATE(1188)] = 15036, + [SMALL_STATE(1189)] = 15098, + [SMALL_STATE(1190)] = 15160, + [SMALL_STATE(1191)] = 15222, + [SMALL_STATE(1192)] = 15298, + [SMALL_STATE(1193)] = 15360, + [SMALL_STATE(1194)] = 15422, + [SMALL_STATE(1195)] = 15484, + [SMALL_STATE(1196)] = 15546, + [SMALL_STATE(1197)] = 15608, + [SMALL_STATE(1198)] = 15670, + [SMALL_STATE(1199)] = 15732, + [SMALL_STATE(1200)] = 15794, + [SMALL_STATE(1201)] = 15856, + [SMALL_STATE(1202)] = 15918, + [SMALL_STATE(1203)] = 16000, + [SMALL_STATE(1204)] = 16062, + [SMALL_STATE(1205)] = 16124, + [SMALL_STATE(1206)] = 16186, + [SMALL_STATE(1207)] = 16248, + [SMALL_STATE(1208)] = 16310, + [SMALL_STATE(1209)] = 16372, + [SMALL_STATE(1210)] = 16434, + [SMALL_STATE(1211)] = 16496, + [SMALL_STATE(1212)] = 16558, + [SMALL_STATE(1213)] = 16626, + [SMALL_STATE(1214)] = 16688, + [SMALL_STATE(1215)] = 16750, + [SMALL_STATE(1216)] = 16817, + [SMALL_STATE(1217)] = 16886, + [SMALL_STATE(1218)] = 16967, + [SMALL_STATE(1219)] = 17028, + [SMALL_STATE(1220)] = 17101, + [SMALL_STATE(1221)] = 17170, + [SMALL_STATE(1222)] = 17237, + [SMALL_STATE(1223)] = 17310, + [SMALL_STATE(1224)] = 17383, + [SMALL_STATE(1225)] = 17456, + [SMALL_STATE(1226)] = 17529, + [SMALL_STATE(1227)] = 17602, + [SMALL_STATE(1228)] = 17662, + [SMALL_STATE(1229)] = 17722, + [SMALL_STATE(1230)] = 17782, + [SMALL_STATE(1231)] = 17848, + [SMALL_STATE(1232)] = 17908, + [SMALL_STATE(1233)] = 17968, + [SMALL_STATE(1234)] = 18028, + [SMALL_STATE(1235)] = 18088, + [SMALL_STATE(1236)] = 18148, + [SMALL_STATE(1237)] = 18208, + [SMALL_STATE(1238)] = 18274, + [SMALL_STATE(1239)] = 18342, + [SMALL_STATE(1240)] = 18404, + [SMALL_STATE(1241)] = 18466, + [SMALL_STATE(1242)] = 18526, + [SMALL_STATE(1243)] = 18586, + [SMALL_STATE(1244)] = 18646, + [SMALL_STATE(1245)] = 18706, + [SMALL_STATE(1246)] = 18766, + [SMALL_STATE(1247)] = 18826, + [SMALL_STATE(1248)] = 18890, + [SMALL_STATE(1249)] = 18950, + [SMALL_STATE(1250)] = 19010, + [SMALL_STATE(1251)] = 19070, + [SMALL_STATE(1252)] = 19130, + [SMALL_STATE(1253)] = 19190, + [SMALL_STATE(1254)] = 19262, + [SMALL_STATE(1255)] = 19326, + [SMALL_STATE(1256)] = 19390, + [SMALL_STATE(1257)] = 19454, + [SMALL_STATE(1258)] = 19518, + [SMALL_STATE(1259)] = 19582, + [SMALL_STATE(1260)] = 19646, + [SMALL_STATE(1261)] = 19710, + [SMALL_STATE(1262)] = 19778, + [SMALL_STATE(1263)] = 19842, + [SMALL_STATE(1264)] = 19902, + [SMALL_STATE(1265)] = 19962, + [SMALL_STATE(1266)] = 20034, + [SMALL_STATE(1267)] = 20100, + [SMALL_STATE(1268)] = 20164, + [SMALL_STATE(1269)] = 20230, + [SMALL_STATE(1270)] = 20291, + [SMALL_STATE(1271)] = 20352, + [SMALL_STATE(1272)] = 20417, + [SMALL_STATE(1273)] = 20476, + [SMALL_STATE(1274)] = 20541, + [SMALL_STATE(1275)] = 20604, + [SMALL_STATE(1276)] = 20667, + [SMALL_STATE(1277)] = 20728, + [SMALL_STATE(1278)] = 20791, + [SMALL_STATE(1279)] = 20854, + [SMALL_STATE(1280)] = 20917, + [SMALL_STATE(1281)] = 20980, + [SMALL_STATE(1282)] = 21039, + [SMALL_STATE(1283)] = 21098, + [SMALL_STATE(1284)] = 21159, + [SMALL_STATE(1285)] = 21220, + [SMALL_STATE(1286)] = 21281, + [SMALL_STATE(1287)] = 21342, + [SMALL_STATE(1288)] = 21403, + [SMALL_STATE(1289)] = 21462, + [SMALL_STATE(1290)] = 21521, + [SMALL_STATE(1291)] = 21580, + [SMALL_STATE(1292)] = 21639, + [SMALL_STATE(1293)] = 21700, + [SMALL_STATE(1294)] = 21759, + [SMALL_STATE(1295)] = 21820, + [SMALL_STATE(1296)] = 21881, + [SMALL_STATE(1297)] = 21940, + [SMALL_STATE(1298)] = 22001, + [SMALL_STATE(1299)] = 22060, + [SMALL_STATE(1300)] = 22121, + [SMALL_STATE(1301)] = 22182, + [SMALL_STATE(1302)] = 22241, + [SMALL_STATE(1303)] = 22300, + [SMALL_STATE(1304)] = 22359, + [SMALL_STATE(1305)] = 22418, + [SMALL_STATE(1306)] = 22483, + [SMALL_STATE(1307)] = 22542, + [SMALL_STATE(1308)] = 22601, + [SMALL_STATE(1309)] = 22660, + [SMALL_STATE(1310)] = 22773, + [SMALL_STATE(1311)] = 22836, + [SMALL_STATE(1312)] = 22895, + [SMALL_STATE(1313)] = 22956, + [SMALL_STATE(1314)] = 23069, + [SMALL_STATE(1315)] = 23134, + [SMALL_STATE(1316)] = 23197, + [SMALL_STATE(1317)] = 23256, + [SMALL_STATE(1318)] = 23315, + [SMALL_STATE(1319)] = 23374, + [SMALL_STATE(1320)] = 23433, + [SMALL_STATE(1321)] = 23492, + [SMALL_STATE(1322)] = 23551, + [SMALL_STATE(1323)] = 23610, + [SMALL_STATE(1324)] = 23669, + [SMALL_STATE(1325)] = 23728, + [SMALL_STATE(1326)] = 23787, + [SMALL_STATE(1327)] = 23850, + [SMALL_STATE(1328)] = 23909, + [SMALL_STATE(1329)] = 23972, + [SMALL_STATE(1330)] = 24031, + [SMALL_STATE(1331)] = 24090, + [SMALL_STATE(1332)] = 24153, + [SMALL_STATE(1333)] = 24216, + [SMALL_STATE(1334)] = 24275, + [SMALL_STATE(1335)] = 24334, + [SMALL_STATE(1336)] = 24393, + [SMALL_STATE(1337)] = 24451, + [SMALL_STATE(1338)] = 24509, + [SMALL_STATE(1339)] = 24567, + [SMALL_STATE(1340)] = 24625, + [SMALL_STATE(1341)] = 24683, + [SMALL_STATE(1342)] = 24741, + [SMALL_STATE(1343)] = 24799, + [SMALL_STATE(1344)] = 24857, + [SMALL_STATE(1345)] = 24915, + [SMALL_STATE(1346)] = 24973, + [SMALL_STATE(1347)] = 25031, + [SMALL_STATE(1348)] = 25089, + [SMALL_STATE(1349)] = 25147, + [SMALL_STATE(1350)] = 25205, + [SMALL_STATE(1351)] = 25263, + [SMALL_STATE(1352)] = 25321, + [SMALL_STATE(1353)] = 25379, + [SMALL_STATE(1354)] = 25437, + [SMALL_STATE(1355)] = 25495, + [SMALL_STATE(1356)] = 25553, + [SMALL_STATE(1357)] = 25615, + [SMALL_STATE(1358)] = 25673, + [SMALL_STATE(1359)] = 25731, + [SMALL_STATE(1360)] = 25789, + [SMALL_STATE(1361)] = 25847, + [SMALL_STATE(1362)] = 25905, + [SMALL_STATE(1363)] = 25963, + [SMALL_STATE(1364)] = 26021, + [SMALL_STATE(1365)] = 26079, + [SMALL_STATE(1366)] = 26137, + [SMALL_STATE(1367)] = 26195, + [SMALL_STATE(1368)] = 26253, + [SMALL_STATE(1369)] = 26311, + [SMALL_STATE(1370)] = 26373, + [SMALL_STATE(1371)] = 26431, + [SMALL_STATE(1372)] = 26489, + [SMALL_STATE(1373)] = 26547, + [SMALL_STATE(1374)] = 26605, + [SMALL_STATE(1375)] = 26663, + [SMALL_STATE(1376)] = 26721, + [SMALL_STATE(1377)] = 26779, + [SMALL_STATE(1378)] = 26837, + [SMALL_STATE(1379)] = 26895, + [SMALL_STATE(1380)] = 26961, + [SMALL_STATE(1381)] = 27019, + [SMALL_STATE(1382)] = 27077, + [SMALL_STATE(1383)] = 27135, + [SMALL_STATE(1384)] = 27195, + [SMALL_STATE(1385)] = 27261, + [SMALL_STATE(1386)] = 27319, + [SMALL_STATE(1387)] = 27381, + [SMALL_STATE(1388)] = 27443, + [SMALL_STATE(1389)] = 27509, + [SMALL_STATE(1390)] = 27569, + [SMALL_STATE(1391)] = 27627, + [SMALL_STATE(1392)] = 27685, + [SMALL_STATE(1393)] = 27743, + [SMALL_STATE(1394)] = 27805, + [SMALL_STATE(1395)] = 27863, + [SMALL_STATE(1396)] = 27925, + [SMALL_STATE(1397)] = 27983, + [SMALL_STATE(1398)] = 28041, + [SMALL_STATE(1399)] = 28099, + [SMALL_STATE(1400)] = 28157, + [SMALL_STATE(1401)] = 28215, + [SMALL_STATE(1402)] = 28273, + [SMALL_STATE(1403)] = 28331, + [SMALL_STATE(1404)] = 28389, + [SMALL_STATE(1405)] = 28447, + [SMALL_STATE(1406)] = 28509, + [SMALL_STATE(1407)] = 28567, + [SMALL_STATE(1408)] = 28625, + [SMALL_STATE(1409)] = 28683, + [SMALL_STATE(1410)] = 28741, + [SMALL_STATE(1411)] = 28799, + [SMALL_STATE(1412)] = 28857, + [SMALL_STATE(1413)] = 28989, + [SMALL_STATE(1414)] = 29047, + [SMALL_STATE(1415)] = 29105, + [SMALL_STATE(1416)] = 29163, + [SMALL_STATE(1417)] = 29221, + [SMALL_STATE(1418)] = 29279, + [SMALL_STATE(1419)] = 29337, + [SMALL_STATE(1420)] = 29395, + [SMALL_STATE(1421)] = 29453, + [SMALL_STATE(1422)] = 29511, + [SMALL_STATE(1423)] = 29569, + [SMALL_STATE(1424)] = 29627, + [SMALL_STATE(1425)] = 29685, + [SMALL_STATE(1426)] = 29743, + [SMALL_STATE(1427)] = 29801, + [SMALL_STATE(1428)] = 29859, + [SMALL_STATE(1429)] = 29917, + [SMALL_STATE(1430)] = 29975, + [SMALL_STATE(1431)] = 30033, + [SMALL_STATE(1432)] = 30091, + [SMALL_STATE(1433)] = 30153, + [SMALL_STATE(1434)] = 30211, + [SMALL_STATE(1435)] = 30269, + [SMALL_STATE(1436)] = 30331, + [SMALL_STATE(1437)] = 30389, + [SMALL_STATE(1438)] = 30447, + [SMALL_STATE(1439)] = 30509, + [SMALL_STATE(1440)] = 30567, + [SMALL_STATE(1441)] = 30625, + [SMALL_STATE(1442)] = 30683, + [SMALL_STATE(1443)] = 30741, + [SMALL_STATE(1444)] = 30799, + [SMALL_STATE(1445)] = 30861, + [SMALL_STATE(1446)] = 30919, + [SMALL_STATE(1447)] = 30977, + [SMALL_STATE(1448)] = 31035, + [SMALL_STATE(1449)] = 31093, + [SMALL_STATE(1450)] = 31151, + [SMALL_STATE(1451)] = 31209, + [SMALL_STATE(1452)] = 31267, + [SMALL_STATE(1453)] = 31325, + [SMALL_STATE(1454)] = 31383, + [SMALL_STATE(1455)] = 31441, + [SMALL_STATE(1456)] = 31499, + [SMALL_STATE(1457)] = 31557, + [SMALL_STATE(1458)] = 31615, + [SMALL_STATE(1459)] = 31673, + [SMALL_STATE(1460)] = 31731, + [SMALL_STATE(1461)] = 31789, + [SMALL_STATE(1462)] = 31921, + [SMALL_STATE(1463)] = 31979, + [SMALL_STATE(1464)] = 32037, + [SMALL_STATE(1465)] = 32099, + [SMALL_STATE(1466)] = 32157, + [SMALL_STATE(1467)] = 32215, + [SMALL_STATE(1468)] = 32273, + [SMALL_STATE(1469)] = 32331, + [SMALL_STATE(1470)] = 32389, + [SMALL_STATE(1471)] = 32447, + [SMALL_STATE(1472)] = 32505, + [SMALL_STATE(1473)] = 32563, + [SMALL_STATE(1474)] = 32621, + [SMALL_STATE(1475)] = 32687, + [SMALL_STATE(1476)] = 32745, + [SMALL_STATE(1477)] = 32803, + [SMALL_STATE(1478)] = 32935, + [SMALL_STATE(1479)] = 32993, + [SMALL_STATE(1480)] = 33051, + [SMALL_STATE(1481)] = 33109, + [SMALL_STATE(1482)] = 33167, + [SMALL_STATE(1483)] = 33225, + [SMALL_STATE(1484)] = 33283, + [SMALL_STATE(1485)] = 33341, + [SMALL_STATE(1486)] = 33399, + [SMALL_STATE(1487)] = 33457, + [SMALL_STATE(1488)] = 33515, + [SMALL_STATE(1489)] = 33573, + [SMALL_STATE(1490)] = 33631, + [SMALL_STATE(1491)] = 33689, + [SMALL_STATE(1492)] = 33747, + [SMALL_STATE(1493)] = 33805, + [SMALL_STATE(1494)] = 33863, + [SMALL_STATE(1495)] = 33921, + [SMALL_STATE(1496)] = 33979, + [SMALL_STATE(1497)] = 34086, + [SMALL_STATE(1498)] = 34193, + [SMALL_STATE(1499)] = 34300, + [SMALL_STATE(1500)] = 34411, + [SMALL_STATE(1501)] = 34468, + [SMALL_STATE(1502)] = 34575, + [SMALL_STATE(1503)] = 34682, + [SMALL_STATE(1504)] = 34789, + [SMALL_STATE(1505)] = 34896, + [SMALL_STATE(1506)] = 35003, + [SMALL_STATE(1507)] = 35070, + [SMALL_STATE(1508)] = 35181, + [SMALL_STATE(1509)] = 35288, + [SMALL_STATE(1510)] = 35395, + [SMALL_STATE(1511)] = 35502, + [SMALL_STATE(1512)] = 35609, + [SMALL_STATE(1513)] = 35708, + [SMALL_STATE(1514)] = 35815, + [SMALL_STATE(1515)] = 35922, + [SMALL_STATE(1516)] = 36029, + [SMALL_STATE(1517)] = 36136, + [SMALL_STATE(1518)] = 36243, + [SMALL_STATE(1519)] = 36302, + [SMALL_STATE(1520)] = 36409, + [SMALL_STATE(1521)] = 36516, + [SMALL_STATE(1522)] = 36623, + [SMALL_STATE(1523)] = 36722, + [SMALL_STATE(1524)] = 36778, + [SMALL_STATE(1525)] = 36866, + [SMALL_STATE(1526)] = 36952, + [SMALL_STATE(1527)] = 37008, + [SMALL_STATE(1528)] = 37096, + [SMALL_STATE(1529)] = 37222, + [SMALL_STATE(1530)] = 37310, + [SMALL_STATE(1531)] = 37366, + [SMALL_STATE(1532)] = 37422, + [SMALL_STATE(1533)] = 37478, + [SMALL_STATE(1534)] = 37534, + [SMALL_STATE(1535)] = 37590, + [SMALL_STATE(1536)] = 37646, + [SMALL_STATE(1537)] = 37702, + [SMALL_STATE(1538)] = 37758, + [SMALL_STATE(1539)] = 37846, + [SMALL_STATE(1540)] = 37902, + [SMALL_STATE(1541)] = 37958, + [SMALL_STATE(1542)] = 38016, + [SMALL_STATE(1543)] = 38072, + [SMALL_STATE(1544)] = 38160, + [SMALL_STATE(1545)] = 38216, + [SMALL_STATE(1546)] = 38272, + [SMALL_STATE(1547)] = 38328, + [SMALL_STATE(1548)] = 38384, + [SMALL_STATE(1549)] = 38440, + [SMALL_STATE(1550)] = 38496, + [SMALL_STATE(1551)] = 38582, + [SMALL_STATE(1552)] = 38638, + [SMALL_STATE(1553)] = 38694, + [SMALL_STATE(1554)] = 38750, + [SMALL_STATE(1555)] = 38838, + [SMALL_STATE(1556)] = 38943, + [SMALL_STATE(1557)] = 39048, + [SMALL_STATE(1558)] = 39153, + [SMALL_STATE(1559)] = 39258, + [SMALL_STATE(1560)] = 39363, + [SMALL_STATE(1561)] = 39468, + [SMALL_STATE(1562)] = 39553, + [SMALL_STATE(1563)] = 39658, + [SMALL_STATE(1564)] = 39721, + [SMALL_STATE(1565)] = 39818, + [SMALL_STATE(1566)] = 39903, + [SMALL_STATE(1567)] = 40008, + [SMALL_STATE(1568)] = 40113, + [SMALL_STATE(1569)] = 40218, + [SMALL_STATE(1570)] = 40323, + [SMALL_STATE(1571)] = 40408, + [SMALL_STATE(1572)] = 40513, + [SMALL_STATE(1573)] = 40618, + [SMALL_STATE(1574)] = 40723, + [SMALL_STATE(1575)] = 40828, + [SMALL_STATE(1576)] = 40933, + [SMALL_STATE(1577)] = 41038, + [SMALL_STATE(1578)] = 41143, + [SMALL_STATE(1579)] = 41248, + [SMALL_STATE(1580)] = 41333, + [SMALL_STATE(1581)] = 41430, + [SMALL_STATE(1582)] = 41535, + [SMALL_STATE(1583)] = 41613, + [SMALL_STATE(1584)] = 41691, + [SMALL_STATE(1585)] = 41769, + [SMALL_STATE(1586)] = 41825, + [SMALL_STATE(1587)] = 41903, + [SMALL_STATE(1588)] = 41981, + [SMALL_STATE(1589)] = 42059, + [SMALL_STATE(1590)] = 42117, + [SMALL_STATE(1591)] = 42194, + [SMALL_STATE(1592)] = 42301, + [SMALL_STATE(1593)] = 42378, + [SMALL_STATE(1594)] = 42455, + [SMALL_STATE(1595)] = 42532, + [SMALL_STATE(1596)] = 42609, + [SMALL_STATE(1597)] = 42686, + [SMALL_STATE(1598)] = 42762, + [SMALL_STATE(1599)] = 42838, + [SMALL_STATE(1600)] = 42914, + [SMALL_STATE(1601)] = 42990, + [SMALL_STATE(1602)] = 43066, + [SMALL_STATE(1603)] = 43142, + [SMALL_STATE(1604)] = 43218, + [SMALL_STATE(1605)] = 43294, + [SMALL_STATE(1606)] = 43370, + [SMALL_STATE(1607)] = 43446, + [SMALL_STATE(1608)] = 43522, + [SMALL_STATE(1609)] = 43598, + [SMALL_STATE(1610)] = 43674, + [SMALL_STATE(1611)] = 43750, + [SMALL_STATE(1612)] = 43826, + [SMALL_STATE(1613)] = 43902, + [SMALL_STATE(1614)] = 43978, + [SMALL_STATE(1615)] = 44054, + [SMALL_STATE(1616)] = 44130, + [SMALL_STATE(1617)] = 44206, + [SMALL_STATE(1618)] = 44307, + [SMALL_STATE(1619)] = 44408, + [SMALL_STATE(1620)] = 44509, + [SMALL_STATE(1621)] = 44610, + [SMALL_STATE(1622)] = 44703, + [SMALL_STATE(1623)] = 44804, + [SMALL_STATE(1624)] = 44905, + [SMALL_STATE(1625)] = 45006, + [SMALL_STATE(1626)] = 45107, + [SMALL_STATE(1627)] = 45208, + [SMALL_STATE(1628)] = 45309, + [SMALL_STATE(1629)] = 45402, + [SMALL_STATE(1630)] = 45503, + [SMALL_STATE(1631)] = 45604, + [SMALL_STATE(1632)] = 45705, + [SMALL_STATE(1633)] = 45806, + [SMALL_STATE(1634)] = 45907, + [SMALL_STATE(1635)] = 46012, + [SMALL_STATE(1636)] = 46113, + [SMALL_STATE(1637)] = 46214, + [SMALL_STATE(1638)] = 46315, + [SMALL_STATE(1639)] = 46416, + [SMALL_STATE(1640)] = 46517, + [SMALL_STATE(1641)] = 46583, + [SMALL_STATE(1642)] = 46649, + [SMALL_STATE(1643)] = 46704, + [SMALL_STATE(1644)] = 46759, + [SMALL_STATE(1645)] = 46814, + [SMALL_STATE(1646)] = 46869, + [SMALL_STATE(1647)] = 46924, + [SMALL_STATE(1648)] = 46979, + [SMALL_STATE(1649)] = 47043, + [SMALL_STATE(1650)] = 47099, + [SMALL_STATE(1651)] = 47153, + [SMALL_STATE(1652)] = 47209, + [SMALL_STATE(1653)] = 47263, + [SMALL_STATE(1654)] = 47361, + [SMALL_STATE(1655)] = 47425, + [SMALL_STATE(1656)] = 47480, + [SMALL_STATE(1657)] = 47531, + [SMALL_STATE(1658)] = 47630, + [SMALL_STATE(1659)] = 47677, + [SMALL_STATE(1660)] = 47732, + [SMALL_STATE(1661)] = 47785, + [SMALL_STATE(1662)] = 47840, + [SMALL_STATE(1663)] = 47895, + [SMALL_STATE(1664)] = 47948, + [SMALL_STATE(1665)] = 47997, + [SMALL_STATE(1666)] = 48050, + [SMALL_STATE(1667)] = 48151, + [SMALL_STATE(1668)] = 48200, + [SMALL_STATE(1669)] = 48253, + [SMALL_STATE(1670)] = 48304, + [SMALL_STATE(1671)] = 48357, + [SMALL_STATE(1672)] = 48410, + [SMALL_STATE(1673)] = 48511, + [SMALL_STATE(1674)] = 48558, + [SMALL_STATE(1675)] = 48609, + [SMALL_STATE(1676)] = 48660, + [SMALL_STATE(1677)] = 48711, + [SMALL_STATE(1678)] = 48762, + [SMALL_STATE(1679)] = 48813, + [SMALL_STATE(1680)] = 48864, + [SMALL_STATE(1681)] = 48915, + [SMALL_STATE(1682)] = 48966, + [SMALL_STATE(1683)] = 49013, + [SMALL_STATE(1684)] = 49066, + [SMALL_STATE(1685)] = 49119, + [SMALL_STATE(1686)] = 49167, + [SMALL_STATE(1687)] = 49215, + [SMALL_STATE(1688)] = 49269, + [SMALL_STATE(1689)] = 49321, + [SMALL_STATE(1690)] = 49369, + [SMALL_STATE(1691)] = 49417, + [SMALL_STATE(1692)] = 49465, + [SMALL_STATE(1693)] = 49517, + [SMALL_STATE(1694)] = 49565, + [SMALL_STATE(1695)] = 49611, + [SMALL_STATE(1696)] = 49659, + [SMALL_STATE(1697)] = 49707, + [SMALL_STATE(1698)] = 49753, + [SMALL_STATE(1699)] = 49803, + [SMALL_STATE(1700)] = 49853, + [SMALL_STATE(1701)] = 49903, + [SMALL_STATE(1702)] = 49953, + [SMALL_STATE(1703)] = 50003, + [SMALL_STATE(1704)] = 50053, + [SMALL_STATE(1705)] = 50099, + [SMALL_STATE(1706)] = 50145, + [SMALL_STATE(1707)] = 50191, + [SMALL_STATE(1708)] = 50239, + [SMALL_STATE(1709)] = 50285, + [SMALL_STATE(1710)] = 50331, + [SMALL_STATE(1711)] = 50377, + [SMALL_STATE(1712)] = 50423, + [SMALL_STATE(1713)] = 50469, + [SMALL_STATE(1714)] = 50521, + [SMALL_STATE(1715)] = 50573, + [SMALL_STATE(1716)] = 50619, + [SMALL_STATE(1717)] = 50673, + [SMALL_STATE(1718)] = 50719, + [SMALL_STATE(1719)] = 50765, + [SMALL_STATE(1720)] = 50811, + [SMALL_STATE(1721)] = 50857, + [SMALL_STATE(1722)] = 50903, + [SMALL_STATE(1723)] = 50949, + [SMALL_STATE(1724)] = 50995, + [SMALL_STATE(1725)] = 51041, + [SMALL_STATE(1726)] = 51087, + [SMALL_STATE(1727)] = 51135, + [SMALL_STATE(1728)] = 51181, + [SMALL_STATE(1729)] = 51231, + [SMALL_STATE(1730)] = 51281, + [SMALL_STATE(1731)] = 51327, + [SMALL_STATE(1732)] = 51377, + [SMALL_STATE(1733)] = 51425, + [SMALL_STATE(1734)] = 51475, + [SMALL_STATE(1735)] = 51525, + [SMALL_STATE(1736)] = 51573, + [SMALL_STATE(1737)] = 51625, + [SMALL_STATE(1738)] = 51671, + [SMALL_STATE(1739)] = 51719, + [SMALL_STATE(1740)] = 51765, + [SMALL_STATE(1741)] = 51815, + [SMALL_STATE(1742)] = 51861, + [SMALL_STATE(1743)] = 51907, + [SMALL_STATE(1744)] = 51953, + [SMALL_STATE(1745)] = 51999, + [SMALL_STATE(1746)] = 52045, + [SMALL_STATE(1747)] = 52091, + [SMALL_STATE(1748)] = 52137, + [SMALL_STATE(1749)] = 52185, + [SMALL_STATE(1750)] = 52237, + [SMALL_STATE(1751)] = 52283, + [SMALL_STATE(1752)] = 52329, + [SMALL_STATE(1753)] = 52375, + [SMALL_STATE(1754)] = 52420, + [SMALL_STATE(1755)] = 52465, + [SMALL_STATE(1756)] = 52510, + [SMALL_STATE(1757)] = 52555, + [SMALL_STATE(1758)] = 52600, + [SMALL_STATE(1759)] = 52645, + [SMALL_STATE(1760)] = 52690, + [SMALL_STATE(1761)] = 52735, + [SMALL_STATE(1762)] = 52780, + [SMALL_STATE(1763)] = 52829, + [SMALL_STATE(1764)] = 52878, + [SMALL_STATE(1765)] = 52927, + [SMALL_STATE(1766)] = 52972, + [SMALL_STATE(1767)] = 53017, + [SMALL_STATE(1768)] = 53062, + [SMALL_STATE(1769)] = 53107, + [SMALL_STATE(1770)] = 53156, + [SMALL_STATE(1771)] = 53207, + [SMALL_STATE(1772)] = 53252, + [SMALL_STATE(1773)] = 53297, + [SMALL_STATE(1774)] = 53342, + [SMALL_STATE(1775)] = 53391, + [SMALL_STATE(1776)] = 53436, + [SMALL_STATE(1777)] = 53481, + [SMALL_STATE(1778)] = 53526, + [SMALL_STATE(1779)] = 53571, + [SMALL_STATE(1780)] = 53616, + [SMALL_STATE(1781)] = 53661, + [SMALL_STATE(1782)] = 53706, + [SMALL_STATE(1783)] = 53751, + [SMALL_STATE(1784)] = 53796, + [SMALL_STATE(1785)] = 53841, + [SMALL_STATE(1786)] = 53886, + [SMALL_STATE(1787)] = 53931, + [SMALL_STATE(1788)] = 53980, + [SMALL_STATE(1789)] = 54025, + [SMALL_STATE(1790)] = 54070, + [SMALL_STATE(1791)] = 54115, + [SMALL_STATE(1792)] = 54160, + [SMALL_STATE(1793)] = 54205, + [SMALL_STATE(1794)] = 54250, + [SMALL_STATE(1795)] = 54301, + [SMALL_STATE(1796)] = 54346, + [SMALL_STATE(1797)] = 54391, + [SMALL_STATE(1798)] = 54436, + [SMALL_STATE(1799)] = 54481, + [SMALL_STATE(1800)] = 54526, + [SMALL_STATE(1801)] = 54571, + [SMALL_STATE(1802)] = 54616, + [SMALL_STATE(1803)] = 54661, + [SMALL_STATE(1804)] = 54712, + [SMALL_STATE(1805)] = 54757, + [SMALL_STATE(1806)] = 54802, + [SMALL_STATE(1807)] = 54855, + [SMALL_STATE(1808)] = 54900, + [SMALL_STATE(1809)] = 54945, + [SMALL_STATE(1810)] = 54990, + [SMALL_STATE(1811)] = 55035, + [SMALL_STATE(1812)] = 55080, + [SMALL_STATE(1813)] = 55125, + [SMALL_STATE(1814)] = 55170, + [SMALL_STATE(1815)] = 55215, + [SMALL_STATE(1816)] = 55260, + [SMALL_STATE(1817)] = 55305, + [SMALL_STATE(1818)] = 55350, + [SMALL_STATE(1819)] = 55395, + [SMALL_STATE(1820)] = 55440, + [SMALL_STATE(1821)] = 55485, + [SMALL_STATE(1822)] = 55530, + [SMALL_STATE(1823)] = 55575, + [SMALL_STATE(1824)] = 55620, + [SMALL_STATE(1825)] = 55665, + [SMALL_STATE(1826)] = 55710, + [SMALL_STATE(1827)] = 55755, + [SMALL_STATE(1828)] = 55800, + [SMALL_STATE(1829)] = 55845, + [SMALL_STATE(1830)] = 55890, + [SMALL_STATE(1831)] = 55935, + [SMALL_STATE(1832)] = 55984, + [SMALL_STATE(1833)] = 56029, + [SMALL_STATE(1834)] = 56116, + [SMALL_STATE(1835)] = 56161, + [SMALL_STATE(1836)] = 56208, + [SMALL_STATE(1837)] = 56253, + [SMALL_STATE(1838)] = 56298, + [SMALL_STATE(1839)] = 56343, + [SMALL_STATE(1840)] = 56388, + [SMALL_STATE(1841)] = 56433, + [SMALL_STATE(1842)] = 56484, + [SMALL_STATE(1843)] = 56529, + [SMALL_STATE(1844)] = 56574, + [SMALL_STATE(1845)] = 56619, + [SMALL_STATE(1846)] = 56664, + [SMALL_STATE(1847)] = 56709, + [SMALL_STATE(1848)] = 56758, + [SMALL_STATE(1849)] = 56803, + [SMALL_STATE(1850)] = 56850, + [SMALL_STATE(1851)] = 56895, + [SMALL_STATE(1852)] = 56940, + [SMALL_STATE(1853)] = 56985, + [SMALL_STATE(1854)] = 57034, + [SMALL_STATE(1855)] = 57079, + [SMALL_STATE(1856)] = 57124, + [SMALL_STATE(1857)] = 57169, + [SMALL_STATE(1858)] = 57214, + [SMALL_STATE(1859)] = 57259, + [SMALL_STATE(1860)] = 57304, + [SMALL_STATE(1861)] = 57349, + [SMALL_STATE(1862)] = 57394, + [SMALL_STATE(1863)] = 57439, + [SMALL_STATE(1864)] = 57484, + [SMALL_STATE(1865)] = 57529, + [SMALL_STATE(1866)] = 57574, + [SMALL_STATE(1867)] = 57619, + [SMALL_STATE(1868)] = 57664, + [SMALL_STATE(1869)] = 57709, + [SMALL_STATE(1870)] = 57754, + [SMALL_STATE(1871)] = 57803, + [SMALL_STATE(1872)] = 57848, + [SMALL_STATE(1873)] = 57893, + [SMALL_STATE(1874)] = 57970, + [SMALL_STATE(1875)] = 58015, + [SMALL_STATE(1876)] = 58064, + [SMALL_STATE(1877)] = 58111, + [SMALL_STATE(1878)] = 58156, + [SMALL_STATE(1879)] = 58201, + [SMALL_STATE(1880)] = 58274, + [SMALL_STATE(1881)] = 58347, + [SMALL_STATE(1882)] = 58392, + [SMALL_STATE(1883)] = 58437, + [SMALL_STATE(1884)] = 58482, + [SMALL_STATE(1885)] = 58527, + [SMALL_STATE(1886)] = 58580, + [SMALL_STATE(1887)] = 58631, + [SMALL_STATE(1888)] = 58676, + [SMALL_STATE(1889)] = 58721, + [SMALL_STATE(1890)] = 58774, + [SMALL_STATE(1891)] = 58819, + [SMALL_STATE(1892)] = 58864, + [SMALL_STATE(1893)] = 58909, + [SMALL_STATE(1894)] = 58954, + [SMALL_STATE(1895)] = 58999, + [SMALL_STATE(1896)] = 59092, + [SMALL_STATE(1897)] = 59137, + [SMALL_STATE(1898)] = 59182, + [SMALL_STATE(1899)] = 59227, + [SMALL_STATE(1900)] = 59272, + [SMALL_STATE(1901)] = 59325, + [SMALL_STATE(1902)] = 59370, + [SMALL_STATE(1903)] = 59419, + [SMALL_STATE(1904)] = 59468, + [SMALL_STATE(1905)] = 59517, + [SMALL_STATE(1906)] = 59562, + [SMALL_STATE(1907)] = 59613, + [SMALL_STATE(1908)] = 59706, + [SMALL_STATE(1909)] = 59751, + [SMALL_STATE(1910)] = 59796, + [SMALL_STATE(1911)] = 59841, + [SMALL_STATE(1912)] = 59918, + [SMALL_STATE(1913)] = 59963, + [SMALL_STATE(1914)] = 60010, + [SMALL_STATE(1915)] = 60055, + [SMALL_STATE(1916)] = 60100, + [SMALL_STATE(1917)] = 60145, + [SMALL_STATE(1918)] = 60190, + [SMALL_STATE(1919)] = 60235, + [SMALL_STATE(1920)] = 60280, + [SMALL_STATE(1921)] = 60325, + [SMALL_STATE(1922)] = 60370, + [SMALL_STATE(1923)] = 60465, + [SMALL_STATE(1924)] = 60560, + [SMALL_STATE(1925)] = 60655, + [SMALL_STATE(1926)] = 60750, + [SMALL_STATE(1927)] = 60837, + [SMALL_STATE(1928)] = 60886, + [SMALL_STATE(1929)] = 60931, + [SMALL_STATE(1930)] = 60976, + [SMALL_STATE(1931)] = 61021, + [SMALL_STATE(1932)] = 61114, + [SMALL_STATE(1933)] = 61159, + [SMALL_STATE(1934)] = 61204, + [SMALL_STATE(1935)] = 61253, + [SMALL_STATE(1936)] = 61298, + [SMALL_STATE(1937)] = 61343, + [SMALL_STATE(1938)] = 61388, + [SMALL_STATE(1939)] = 61437, + [SMALL_STATE(1940)] = 61482, + [SMALL_STATE(1941)] = 61527, + [SMALL_STATE(1942)] = 61572, + [SMALL_STATE(1943)] = 61617, + [SMALL_STATE(1944)] = 61662, + [SMALL_STATE(1945)] = 61707, + [SMALL_STATE(1946)] = 61752, + [SMALL_STATE(1947)] = 61801, + [SMALL_STATE(1948)] = 61846, + [SMALL_STATE(1949)] = 61891, + [SMALL_STATE(1950)] = 61936, + [SMALL_STATE(1951)] = 61981, + [SMALL_STATE(1952)] = 62026, + [SMALL_STATE(1953)] = 62071, + [SMALL_STATE(1954)] = 62116, + [SMALL_STATE(1955)] = 62161, + [SMALL_STATE(1956)] = 62206, + [SMALL_STATE(1957)] = 62251, + [SMALL_STATE(1958)] = 62344, + [SMALL_STATE(1959)] = 62389, + [SMALL_STATE(1960)] = 62435, + [SMALL_STATE(1961)] = 62479, + [SMALL_STATE(1962)] = 62525, + [SMALL_STATE(1963)] = 62619, + [SMALL_STATE(1964)] = 62713, + [SMALL_STATE(1965)] = 62807, + [SMALL_STATE(1966)] = 62853, + [SMALL_STATE(1967)] = 62897, + [SMALL_STATE(1968)] = 62941, + [SMALL_STATE(1969)] = 62987, + [SMALL_STATE(1970)] = 63081, + [SMALL_STATE(1971)] = 63175, + [SMALL_STATE(1972)] = 63221, + [SMALL_STATE(1973)] = 63315, + [SMALL_STATE(1974)] = 63359, + [SMALL_STATE(1975)] = 63453, + [SMALL_STATE(1976)] = 63547, + [SMALL_STATE(1977)] = 63641, + [SMALL_STATE(1978)] = 63735, + [SMALL_STATE(1979)] = 63821, + [SMALL_STATE(1980)] = 63865, + [SMALL_STATE(1981)] = 63913, + [SMALL_STATE(1982)] = 63961, + [SMALL_STATE(1983)] = 64005, + [SMALL_STATE(1984)] = 64053, + [SMALL_STATE(1985)] = 64101, + [SMALL_STATE(1986)] = 64145, + [SMALL_STATE(1987)] = 64193, + [SMALL_STATE(1988)] = 64241, + [SMALL_STATE(1989)] = 64289, + [SMALL_STATE(1990)] = 64349, + [SMALL_STATE(1991)] = 64393, + [SMALL_STATE(1992)] = 64437, + [SMALL_STATE(1993)] = 64481, + [SMALL_STATE(1994)] = 64541, + [SMALL_STATE(1995)] = 64585, + [SMALL_STATE(1996)] = 64629, + [SMALL_STATE(1997)] = 64677, + [SMALL_STATE(1998)] = 64721, + [SMALL_STATE(1999)] = 64765, + [SMALL_STATE(2000)] = 64809, + [SMALL_STATE(2001)] = 64853, + [SMALL_STATE(2002)] = 64897, + [SMALL_STATE(2003)] = 64941, + [SMALL_STATE(2004)] = 64987, + [SMALL_STATE(2005)] = 65031, + [SMALL_STATE(2006)] = 65075, + [SMALL_STATE(2007)] = 65125, + [SMALL_STATE(2008)] = 65185, + [SMALL_STATE(2009)] = 65229, + [SMALL_STATE(2010)] = 65273, + [SMALL_STATE(2011)] = 65317, + [SMALL_STATE(2012)] = 65361, + [SMALL_STATE(2013)] = 65405, + [SMALL_STATE(2014)] = 65449, + [SMALL_STATE(2015)] = 65493, + [SMALL_STATE(2016)] = 65539, + [SMALL_STATE(2017)] = 65583, + [SMALL_STATE(2018)] = 65627, + [SMALL_STATE(2019)] = 65671, + [SMALL_STATE(2020)] = 65717, + [SMALL_STATE(2021)] = 65761, + [SMALL_STATE(2022)] = 65805, + [SMALL_STATE(2023)] = 65849, + [SMALL_STATE(2024)] = 65895, + [SMALL_STATE(2025)] = 65941, + [SMALL_STATE(2026)] = 65987, + [SMALL_STATE(2027)] = 66033, + [SMALL_STATE(2028)] = 66079, + [SMALL_STATE(2029)] = 66125, + [SMALL_STATE(2030)] = 66175, + [SMALL_STATE(2031)] = 66219, + [SMALL_STATE(2032)] = 66263, + [SMALL_STATE(2033)] = 66307, + [SMALL_STATE(2034)] = 66351, + [SMALL_STATE(2035)] = 66395, + [SMALL_STATE(2036)] = 66439, + [SMALL_STATE(2037)] = 66483, + [SMALL_STATE(2038)] = 66527, + [SMALL_STATE(2039)] = 66571, + [SMALL_STATE(2040)] = 66615, + [SMALL_STATE(2041)] = 66663, + [SMALL_STATE(2042)] = 66723, + [SMALL_STATE(2043)] = 66767, + [SMALL_STATE(2044)] = 66811, + [SMALL_STATE(2045)] = 66859, + [SMALL_STATE(2046)] = 66907, + [SMALL_STATE(2047)] = 66955, + [SMALL_STATE(2048)] = 67003, + [SMALL_STATE(2049)] = 67051, + [SMALL_STATE(2050)] = 67094, + [SMALL_STATE(2051)] = 67137, + [SMALL_STATE(2052)] = 67180, + [SMALL_STATE(2053)] = 67223, + [SMALL_STATE(2054)] = 67266, + [SMALL_STATE(2055)] = 67309, + [SMALL_STATE(2056)] = 67352, + [SMALL_STATE(2057)] = 67395, + [SMALL_STATE(2058)] = 67444, + [SMALL_STATE(2059)] = 67487, + [SMALL_STATE(2060)] = 67530, + [SMALL_STATE(2061)] = 67573, + [SMALL_STATE(2062)] = 67616, + [SMALL_STATE(2063)] = 67659, + [SMALL_STATE(2064)] = 67702, + [SMALL_STATE(2065)] = 67745, + [SMALL_STATE(2066)] = 67788, + [SMALL_STATE(2067)] = 67831, + [SMALL_STATE(2068)] = 67874, + [SMALL_STATE(2069)] = 67917, + [SMALL_STATE(2070)] = 67966, + [SMALL_STATE(2071)] = 68009, + [SMALL_STATE(2072)] = 68052, + [SMALL_STATE(2073)] = 68095, + [SMALL_STATE(2074)] = 68142, + [SMALL_STATE(2075)] = 68185, + [SMALL_STATE(2076)] = 68228, + [SMALL_STATE(2077)] = 68271, + [SMALL_STATE(2078)] = 68314, + [SMALL_STATE(2079)] = 68365, + [SMALL_STATE(2080)] = 68408, + [SMALL_STATE(2081)] = 68451, + [SMALL_STATE(2082)] = 68494, + [SMALL_STATE(2083)] = 68543, + [SMALL_STATE(2084)] = 68628, + [SMALL_STATE(2085)] = 68671, + [SMALL_STATE(2086)] = 68714, + [SMALL_STATE(2087)] = 68757, + [SMALL_STATE(2088)] = 68800, + [SMALL_STATE(2089)] = 68843, + [SMALL_STATE(2090)] = 68886, + [SMALL_STATE(2091)] = 68929, + [SMALL_STATE(2092)] = 68972, + [SMALL_STATE(2093)] = 69015, + [SMALL_STATE(2094)] = 69058, + [SMALL_STATE(2095)] = 69101, + [SMALL_STATE(2096)] = 69144, + [SMALL_STATE(2097)] = 69187, + [SMALL_STATE(2098)] = 69230, + [SMALL_STATE(2099)] = 69273, + [SMALL_STATE(2100)] = 69316, + [SMALL_STATE(2101)] = 69359, + [SMALL_STATE(2102)] = 69402, + [SMALL_STATE(2103)] = 69445, + [SMALL_STATE(2104)] = 69488, + [SMALL_STATE(2105)] = 69531, + [SMALL_STATE(2106)] = 69574, + [SMALL_STATE(2107)] = 69617, + [SMALL_STATE(2108)] = 69660, + [SMALL_STATE(2109)] = 69703, + [SMALL_STATE(2110)] = 69746, + [SMALL_STATE(2111)] = 69793, + [SMALL_STATE(2112)] = 69840, + [SMALL_STATE(2113)] = 69883, + [SMALL_STATE(2114)] = 69926, + [SMALL_STATE(2115)] = 69969, + [SMALL_STATE(2116)] = 70012, + [SMALL_STATE(2117)] = 70055, + [SMALL_STATE(2118)] = 70098, + [SMALL_STATE(2119)] = 70141, + [SMALL_STATE(2120)] = 70184, + [SMALL_STATE(2121)] = 70227, + [SMALL_STATE(2122)] = 70276, + [SMALL_STATE(2123)] = 70319, + [SMALL_STATE(2124)] = 70362, + [SMALL_STATE(2125)] = 70405, + [SMALL_STATE(2126)] = 70448, + [SMALL_STATE(2127)] = 70491, + [SMALL_STATE(2128)] = 70534, + [SMALL_STATE(2129)] = 70577, + [SMALL_STATE(2130)] = 70620, + [SMALL_STATE(2131)] = 70663, + [SMALL_STATE(2132)] = 70706, + [SMALL_STATE(2133)] = 70749, + [SMALL_STATE(2134)] = 70796, + [SMALL_STATE(2135)] = 70839, + [SMALL_STATE(2136)] = 70882, + [SMALL_STATE(2137)] = 70925, + [SMALL_STATE(2138)] = 70968, + [SMALL_STATE(2139)] = 71011, + [SMALL_STATE(2140)] = 71060, + [SMALL_STATE(2141)] = 71103, + [SMALL_STATE(2142)] = 71146, + [SMALL_STATE(2143)] = 71189, + [SMALL_STATE(2144)] = 71232, + [SMALL_STATE(2145)] = 71275, + [SMALL_STATE(2146)] = 71318, + [SMALL_STATE(2147)] = 71361, + [SMALL_STATE(2148)] = 71404, + [SMALL_STATE(2149)] = 71447, + [SMALL_STATE(2150)] = 71490, + [SMALL_STATE(2151)] = 71533, + [SMALL_STATE(2152)] = 71576, + [SMALL_STATE(2153)] = 71619, + [SMALL_STATE(2154)] = 71662, + [SMALL_STATE(2155)] = 71705, + [SMALL_STATE(2156)] = 71748, + [SMALL_STATE(2157)] = 71791, + [SMALL_STATE(2158)] = 71834, + [SMALL_STATE(2159)] = 71885, + [SMALL_STATE(2160)] = 71928, + [SMALL_STATE(2161)] = 71971, + [SMALL_STATE(2162)] = 72014, + [SMALL_STATE(2163)] = 72061, + [SMALL_STATE(2164)] = 72108, + [SMALL_STATE(2165)] = 72151, + [SMALL_STATE(2166)] = 72194, + [SMALL_STATE(2167)] = 72237, + [SMALL_STATE(2168)] = 72280, + [SMALL_STATE(2169)] = 72323, + [SMALL_STATE(2170)] = 72366, + [SMALL_STATE(2171)] = 72409, + [SMALL_STATE(2172)] = 72452, + [SMALL_STATE(2173)] = 72495, + [SMALL_STATE(2174)] = 72538, + [SMALL_STATE(2175)] = 72623, + [SMALL_STATE(2176)] = 72666, + [SMALL_STATE(2177)] = 72709, + [SMALL_STATE(2178)] = 72752, + [SMALL_STATE(2179)] = 72795, + [SMALL_STATE(2180)] = 72838, + [SMALL_STATE(2181)] = 72881, + [SMALL_STATE(2182)] = 72924, + [SMALL_STATE(2183)] = 72967, + [SMALL_STATE(2184)] = 73010, + [SMALL_STATE(2185)] = 73053, + [SMALL_STATE(2186)] = 73096, + [SMALL_STATE(2187)] = 73139, + [SMALL_STATE(2188)] = 73182, + [SMALL_STATE(2189)] = 73225, + [SMALL_STATE(2190)] = 73268, + [SMALL_STATE(2191)] = 73311, + [SMALL_STATE(2192)] = 73354, + [SMALL_STATE(2193)] = 73397, + [SMALL_STATE(2194)] = 73446, + [SMALL_STATE(2195)] = 73489, + [SMALL_STATE(2196)] = 73533, + [SMALL_STATE(2197)] = 73615, + [SMALL_STATE(2198)] = 73709, + [SMALL_STATE(2199)] = 73795, + [SMALL_STATE(2200)] = 73841, + [SMALL_STATE(2201)] = 73935, + [SMALL_STATE(2202)] = 73983, + [SMALL_STATE(2203)] = 74065, + [SMALL_STATE(2204)] = 74111, + [SMALL_STATE(2205)] = 74159, + [SMALL_STATE(2206)] = 74208, + [SMALL_STATE(2207)] = 74253, + [SMALL_STATE(2208)] = 74332, + [SMALL_STATE(2209)] = 74381, + [SMALL_STATE(2210)] = 74428, + [SMALL_STATE(2211)] = 74473, + [SMALL_STATE(2212)] = 74518, + [SMALL_STATE(2213)] = 74567, + [SMALL_STATE(2214)] = 74608, + [SMALL_STATE(2215)] = 74655, + [SMALL_STATE(2216)] = 74700, + [SMALL_STATE(2217)] = 74745, + [SMALL_STATE(2218)] = 74790, + [SMALL_STATE(2219)] = 74869, + [SMALL_STATE(2220)] = 74918, + [SMALL_STATE(2221)] = 75001, + [SMALL_STATE(2222)] = 75046, + [SMALL_STATE(2223)] = 75086, + [SMALL_STATE(2224)] = 75126, + [SMALL_STATE(2225)] = 75166, + [SMALL_STATE(2226)] = 75210, + [SMALL_STATE(2227)] = 75250, + [SMALL_STATE(2228)] = 75290, + [SMALL_STATE(2229)] = 75330, + [SMALL_STATE(2230)] = 75370, + [SMALL_STATE(2231)] = 75412, + [SMALL_STATE(2232)] = 75456, + [SMALL_STATE(2233)] = 75498, + [SMALL_STATE(2234)] = 75538, + [SMALL_STATE(2235)] = 75582, + [SMALL_STATE(2236)] = 75622, + [SMALL_STATE(2237)] = 75662, + [SMALL_STATE(2238)] = 75704, + [SMALL_STATE(2239)] = 75746, + [SMALL_STATE(2240)] = 75786, + [SMALL_STATE(2241)] = 75828, + [SMALL_STATE(2242)] = 75868, + [SMALL_STATE(2243)] = 75908, + [SMALL_STATE(2244)] = 75950, + [SMALL_STATE(2245)] = 75992, + [SMALL_STATE(2246)] = 76034, + [SMALL_STATE(2247)] = 76076, + [SMALL_STATE(2248)] = 76116, + [SMALL_STATE(2249)] = 76160, + [SMALL_STATE(2250)] = 76202, + [SMALL_STATE(2251)] = 76244, + [SMALL_STATE(2252)] = 76288, + [SMALL_STATE(2253)] = 76332, + [SMALL_STATE(2254)] = 76376, + [SMALL_STATE(2255)] = 76416, + [SMALL_STATE(2256)] = 76456, + [SMALL_STATE(2257)] = 76496, + [SMALL_STATE(2258)] = 76536, + [SMALL_STATE(2259)] = 76576, + [SMALL_STATE(2260)] = 76618, + [SMALL_STATE(2261)] = 76660, + [SMALL_STATE(2262)] = 76700, + [SMALL_STATE(2263)] = 76744, + [SMALL_STATE(2264)] = 76788, + [SMALL_STATE(2265)] = 76828, + [SMALL_STATE(2266)] = 76872, + [SMALL_STATE(2267)] = 76912, + [SMALL_STATE(2268)] = 76954, + [SMALL_STATE(2269)] = 76994, + [SMALL_STATE(2270)] = 77038, + [SMALL_STATE(2271)] = 77078, + [SMALL_STATE(2272)] = 77118, + [SMALL_STATE(2273)] = 77162, + [SMALL_STATE(2274)] = 77202, + [SMALL_STATE(2275)] = 77241, + [SMALL_STATE(2276)] = 77284, + [SMALL_STATE(2277)] = 77323, + [SMALL_STATE(2278)] = 77362, + [SMALL_STATE(2279)] = 77401, + [SMALL_STATE(2280)] = 77440, + [SMALL_STATE(2281)] = 77479, + [SMALL_STATE(2282)] = 77530, + [SMALL_STATE(2283)] = 77569, + [SMALL_STATE(2284)] = 77612, + [SMALL_STATE(2285)] = 77651, + [SMALL_STATE(2286)] = 77690, + [SMALL_STATE(2287)] = 77733, + [SMALL_STATE(2288)] = 77784, + [SMALL_STATE(2289)] = 77823, + [SMALL_STATE(2290)] = 77862, + [SMALL_STATE(2291)] = 77901, + [SMALL_STATE(2292)] = 77952, + [SMALL_STATE(2293)] = 77991, + [SMALL_STATE(2294)] = 78042, + [SMALL_STATE(2295)] = 78085, + [SMALL_STATE(2296)] = 78124, + [SMALL_STATE(2297)] = 78167, + [SMALL_STATE(2298)] = 78206, + [SMALL_STATE(2299)] = 78249, + [SMALL_STATE(2300)] = 78288, + [SMALL_STATE(2301)] = 78327, + [SMALL_STATE(2302)] = 78370, + [SMALL_STATE(2303)] = 78409, + [SMALL_STATE(2304)] = 78448, + [SMALL_STATE(2305)] = 78487, + [SMALL_STATE(2306)] = 78526, + [SMALL_STATE(2307)] = 78601, + [SMALL_STATE(2308)] = 78640, + [SMALL_STATE(2309)] = 78679, + [SMALL_STATE(2310)] = 78730, + [SMALL_STATE(2311)] = 78769, + [SMALL_STATE(2312)] = 78808, + [SMALL_STATE(2313)] = 78862, + [SMALL_STATE(2314)] = 78944, + [SMALL_STATE(2315)] = 79026, + [SMALL_STATE(2316)] = 79084, + [SMALL_STATE(2317)] = 79166, + [SMALL_STATE(2318)] = 79248, + [SMALL_STATE(2319)] = 79286, + [SMALL_STATE(2320)] = 79368, + [SMALL_STATE(2321)] = 79450, + [SMALL_STATE(2322)] = 79532, + [SMALL_STATE(2323)] = 79614, + [SMALL_STATE(2324)] = 79696, + [SMALL_STATE(2325)] = 79750, + [SMALL_STATE(2326)] = 79832, + [SMALL_STATE(2327)] = 79914, + [SMALL_STATE(2328)] = 79996, + [SMALL_STATE(2329)] = 80078, + [SMALL_STATE(2330)] = 80160, + [SMALL_STATE(2331)] = 80242, + [SMALL_STATE(2332)] = 80324, + [SMALL_STATE(2333)] = 80406, + [SMALL_STATE(2334)] = 80488, + [SMALL_STATE(2335)] = 80570, + [SMALL_STATE(2336)] = 80652, + [SMALL_STATE(2337)] = 80734, + [SMALL_STATE(2338)] = 80820, + [SMALL_STATE(2339)] = 80902, + [SMALL_STATE(2340)] = 80988, + [SMALL_STATE(2341)] = 81070, + [SMALL_STATE(2342)] = 81152, + [SMALL_STATE(2343)] = 81234, + [SMALL_STATE(2344)] = 81292, + [SMALL_STATE(2345)] = 81374, + [SMALL_STATE(2346)] = 81456, + [SMALL_STATE(2347)] = 81538, + [SMALL_STATE(2348)] = 81624, + [SMALL_STATE(2349)] = 81706, + [SMALL_STATE(2350)] = 81788, + [SMALL_STATE(2351)] = 81870, + [SMALL_STATE(2352)] = 81952, + [SMALL_STATE(2353)] = 82034, + [SMALL_STATE(2354)] = 82116, + [SMALL_STATE(2355)] = 82198, + [SMALL_STATE(2356)] = 82280, + [SMALL_STATE(2357)] = 82362, + [SMALL_STATE(2358)] = 82442, + [SMALL_STATE(2359)] = 82528, + [SMALL_STATE(2360)] = 82610, + [SMALL_STATE(2361)] = 82692, + [SMALL_STATE(2362)] = 82774, + [SMALL_STATE(2363)] = 82856, + [SMALL_STATE(2364)] = 82938, + [SMALL_STATE(2365)] = 83020, + [SMALL_STATE(2366)] = 83103, + [SMALL_STATE(2367)] = 83186, + [SMALL_STATE(2368)] = 83269, + [SMALL_STATE(2369)] = 83352, + [SMALL_STATE(2370)] = 83435, + [SMALL_STATE(2371)] = 83518, + [SMALL_STATE(2372)] = 83601, + [SMALL_STATE(2373)] = 83684, + [SMALL_STATE(2374)] = 83721, + [SMALL_STATE(2375)] = 83758, + [SMALL_STATE(2376)] = 83841, + [SMALL_STATE(2377)] = 83924, + [SMALL_STATE(2378)] = 83961, + [SMALL_STATE(2379)] = 84044, + [SMALL_STATE(2380)] = 84081, + [SMALL_STATE(2381)] = 84164, + [SMALL_STATE(2382)] = 84222, + [SMALL_STATE(2383)] = 84268, + [SMALL_STATE(2384)] = 84316, + [SMALL_STATE(2385)] = 84384, + [SMALL_STATE(2386)] = 84442, + [SMALL_STATE(2387)] = 84480, + [SMALL_STATE(2388)] = 84518, + [SMALL_STATE(2389)] = 84552, + [SMALL_STATE(2390)] = 84586, + [SMALL_STATE(2391)] = 84648, + [SMALL_STATE(2392)] = 84682, + [SMALL_STATE(2393)] = 84720, + [SMALL_STATE(2394)] = 84754, + [SMALL_STATE(2395)] = 84810, + [SMALL_STATE(2396)] = 84846, + [SMALL_STATE(2397)] = 84902, + [SMALL_STATE(2398)] = 84938, + [SMALL_STATE(2399)] = 84974, + [SMALL_STATE(2400)] = 85008, + [SMALL_STATE(2401)] = 85050, + [SMALL_STATE(2402)] = 85084, + [SMALL_STATE(2403)] = 85118, + [SMALL_STATE(2404)] = 85156, + [SMALL_STATE(2405)] = 85194, + [SMALL_STATE(2406)] = 85228, + [SMALL_STATE(2407)] = 85264, + [SMALL_STATE(2408)] = 85298, + [SMALL_STATE(2409)] = 85332, + [SMALL_STATE(2410)] = 85366, + [SMALL_STATE(2411)] = 85404, + [SMALL_STATE(2412)] = 85444, + [SMALL_STATE(2413)] = 85480, + [SMALL_STATE(2414)] = 85514, + [SMALL_STATE(2415)] = 85552, + [SMALL_STATE(2416)] = 85588, + [SMALL_STATE(2417)] = 85630, + [SMALL_STATE(2418)] = 85664, + [SMALL_STATE(2419)] = 85702, + [SMALL_STATE(2420)] = 85736, + [SMALL_STATE(2421)] = 85774, + [SMALL_STATE(2422)] = 85809, + [SMALL_STATE(2423)] = 85844, + [SMALL_STATE(2424)] = 85879, + [SMALL_STATE(2425)] = 85916, + [SMALL_STATE(2426)] = 85953, + [SMALL_STATE(2427)] = 85990, + [SMALL_STATE(2428)] = 86027, + [SMALL_STATE(2429)] = 86064, + [SMALL_STATE(2430)] = 86099, + [SMALL_STATE(2431)] = 86158, + [SMALL_STATE(2432)] = 86195, + [SMALL_STATE(2433)] = 86230, + [SMALL_STATE(2434)] = 86265, + [SMALL_STATE(2435)] = 86300, + [SMALL_STATE(2436)] = 86360, + [SMALL_STATE(2437)] = 86398, + [SMALL_STATE(2438)] = 86429, + [SMALL_STATE(2439)] = 86487, + [SMALL_STATE(2440)] = 86516, + [SMALL_STATE(2441)] = 86552, + [SMALL_STATE(2442)] = 86586, + [SMALL_STATE(2443)] = 86620, + [SMALL_STATE(2444)] = 86651, + [SMALL_STATE(2445)] = 86680, + [SMALL_STATE(2446)] = 86711, + [SMALL_STATE(2447)] = 86738, + [SMALL_STATE(2448)] = 86769, + [SMALL_STATE(2449)] = 86798, + [SMALL_STATE(2450)] = 86825, + [SMALL_STATE(2451)] = 86854, + [SMALL_STATE(2452)] = 86904, + [SMALL_STATE(2453)] = 86954, + [SMALL_STATE(2454)] = 87004, + [SMALL_STATE(2455)] = 87054, + [SMALL_STATE(2456)] = 87104, + [SMALL_STATE(2457)] = 87130, + [SMALL_STATE(2458)] = 87180, + [SMALL_STATE(2459)] = 87226, + [SMALL_STATE(2460)] = 87272, + [SMALL_STATE(2461)] = 87298, + [SMALL_STATE(2462)] = 87348, + [SMALL_STATE(2463)] = 87398, + [SMALL_STATE(2464)] = 87448, + [SMALL_STATE(2465)] = 87498, + [SMALL_STATE(2466)] = 87548, + [SMALL_STATE(2467)] = 87598, + [SMALL_STATE(2468)] = 87648, + [SMALL_STATE(2469)] = 87698, + [SMALL_STATE(2470)] = 87742, + [SMALL_STATE(2471)] = 87792, + [SMALL_STATE(2472)] = 87842, + [SMALL_STATE(2473)] = 87890, + [SMALL_STATE(2474)] = 87916, + [SMALL_STATE(2475)] = 87966, + [SMALL_STATE(2476)] = 88016, + [SMALL_STATE(2477)] = 88066, + [SMALL_STATE(2478)] = 88116, + [SMALL_STATE(2479)] = 88166, + [SMALL_STATE(2480)] = 88216, + [SMALL_STATE(2481)] = 88266, + [SMALL_STATE(2482)] = 88316, + [SMALL_STATE(2483)] = 88362, + [SMALL_STATE(2484)] = 88410, + [SMALL_STATE(2485)] = 88460, + [SMALL_STATE(2486)] = 88510, + [SMALL_STATE(2487)] = 88560, + [SMALL_STATE(2488)] = 88610, + [SMALL_STATE(2489)] = 88654, + [SMALL_STATE(2490)] = 88704, + [SMALL_STATE(2491)] = 88730, + [SMALL_STATE(2492)] = 88780, + [SMALL_STATE(2493)] = 88806, + [SMALL_STATE(2494)] = 88856, + [SMALL_STATE(2495)] = 88906, + [SMALL_STATE(2496)] = 88956, + [SMALL_STATE(2497)] = 89006, + [SMALL_STATE(2498)] = 89056, + [SMALL_STATE(2499)] = 89106, + [SMALL_STATE(2500)] = 89156, + [SMALL_STATE(2501)] = 89206, + [SMALL_STATE(2502)] = 89256, + [SMALL_STATE(2503)] = 89281, + [SMALL_STATE(2504)] = 89306, + [SMALL_STATE(2505)] = 89331, + [SMALL_STATE(2506)] = 89356, + [SMALL_STATE(2507)] = 89381, + [SMALL_STATE(2508)] = 89420, + [SMALL_STATE(2509)] = 89445, + [SMALL_STATE(2510)] = 89470, + [SMALL_STATE(2511)] = 89495, + [SMALL_STATE(2512)] = 89523, + [SMALL_STATE(2513)] = 89551, + [SMALL_STATE(2514)] = 89579, + [SMALL_STATE(2515)] = 89607, + [SMALL_STATE(2516)] = 89645, + [SMALL_STATE(2517)] = 89673, + [SMALL_STATE(2518)] = 89711, + [SMALL_STATE(2519)] = 89739, + [SMALL_STATE(2520)] = 89767, + [SMALL_STATE(2521)] = 89795, + [SMALL_STATE(2522)] = 89823, + [SMALL_STATE(2523)] = 89851, + [SMALL_STATE(2524)] = 89889, + [SMALL_STATE(2525)] = 89917, + [SMALL_STATE(2526)] = 89945, + [SMALL_STATE(2527)] = 89973, + [SMALL_STATE(2528)] = 90001, + [SMALL_STATE(2529)] = 90029, + [SMALL_STATE(2530)] = 90057, + [SMALL_STATE(2531)] = 90085, + [SMALL_STATE(2532)] = 90131, + [SMALL_STATE(2533)] = 90159, + [SMALL_STATE(2534)] = 90187, + [SMALL_STATE(2535)] = 90215, + [SMALL_STATE(2536)] = 90243, + [SMALL_STATE(2537)] = 90271, + [SMALL_STATE(2538)] = 90309, + [SMALL_STATE(2539)] = 90337, + [SMALL_STATE(2540)] = 90365, + [SMALL_STATE(2541)] = 90393, + [SMALL_STATE(2542)] = 90421, + [SMALL_STATE(2543)] = 90449, + [SMALL_STATE(2544)] = 90477, + [SMALL_STATE(2545)] = 90505, + [SMALL_STATE(2546)] = 90533, + [SMALL_STATE(2547)] = 90561, + [SMALL_STATE(2548)] = 90606, + [SMALL_STATE(2549)] = 90629, + [SMALL_STATE(2550)] = 90652, + [SMALL_STATE(2551)] = 90697, + [SMALL_STATE(2552)] = 90742, + [SMALL_STATE(2553)] = 90769, + [SMALL_STATE(2554)] = 90814, + [SMALL_STATE(2555)] = 90859, + [SMALL_STATE(2556)] = 90904, + [SMALL_STATE(2557)] = 90939, + [SMALL_STATE(2558)] = 90984, + [SMALL_STATE(2559)] = 91029, + [SMALL_STATE(2560)] = 91074, + [SMALL_STATE(2561)] = 91119, + [SMALL_STATE(2562)] = 91164, + [SMALL_STATE(2563)] = 91209, + [SMALL_STATE(2564)] = 91251, + [SMALL_STATE(2565)] = 91293, + [SMALL_STATE(2566)] = 91325, + [SMALL_STATE(2567)] = 91367, + [SMALL_STATE(2568)] = 91409, + [SMALL_STATE(2569)] = 91451, + [SMALL_STATE(2570)] = 91493, + [SMALL_STATE(2571)] = 91535, + [SMALL_STATE(2572)] = 91577, + [SMALL_STATE(2573)] = 91619, + [SMALL_STATE(2574)] = 91659, + [SMALL_STATE(2575)] = 91701, + [SMALL_STATE(2576)] = 91743, + [SMALL_STATE(2577)] = 91780, + [SMALL_STATE(2578)] = 91817, + [SMALL_STATE(2579)] = 91854, + [SMALL_STATE(2580)] = 91891, + [SMALL_STATE(2581)] = 91928, + [SMALL_STATE(2582)] = 91955, + [SMALL_STATE(2583)] = 91992, + [SMALL_STATE(2584)] = 92027, + [SMALL_STATE(2585)] = 92064, + [SMALL_STATE(2586)] = 92091, + [SMALL_STATE(2587)] = 92128, + [SMALL_STATE(2588)] = 92163, + [SMALL_STATE(2589)] = 92190, + [SMALL_STATE(2590)] = 92224, + [SMALL_STATE(2591)] = 92258, + [SMALL_STATE(2592)] = 92278, + [SMALL_STATE(2593)] = 92312, + [SMALL_STATE(2594)] = 92346, + [SMALL_STATE(2595)] = 92380, + [SMALL_STATE(2596)] = 92414, + [SMALL_STATE(2597)] = 92434, + [SMALL_STATE(2598)] = 92462, + [SMALL_STATE(2599)] = 92500, + [SMALL_STATE(2600)] = 92534, + [SMALL_STATE(2601)] = 92568, + [SMALL_STATE(2602)] = 92606, + [SMALL_STATE(2603)] = 92644, + [SMALL_STATE(2604)] = 92678, + [SMALL_STATE(2605)] = 92712, + [SMALL_STATE(2606)] = 92746, + [SMALL_STATE(2607)] = 92780, + [SMALL_STATE(2608)] = 92818, + [SMALL_STATE(2609)] = 92838, + [SMALL_STATE(2610)] = 92872, + [SMALL_STATE(2611)] = 92906, + [SMALL_STATE(2612)] = 92946, + [SMALL_STATE(2613)] = 92980, + [SMALL_STATE(2614)] = 93020, + [SMALL_STATE(2615)] = 93040, + [SMALL_STATE(2616)] = 93078, + [SMALL_STATE(2617)] = 93112, + [SMALL_STATE(2618)] = 93146, + [SMALL_STATE(2619)] = 93180, + [SMALL_STATE(2620)] = 93218, + [SMALL_STATE(2621)] = 93252, + [SMALL_STATE(2622)] = 93286, + [SMALL_STATE(2623)] = 93314, + [SMALL_STATE(2624)] = 93348, + [SMALL_STATE(2625)] = 93382, + [SMALL_STATE(2626)] = 93402, + [SMALL_STATE(2627)] = 93436, + [SMALL_STATE(2628)] = 93474, + [SMALL_STATE(2629)] = 93508, + [SMALL_STATE(2630)] = 93542, + [SMALL_STATE(2631)] = 93576, + [SMALL_STATE(2632)] = 93610, + [SMALL_STATE(2633)] = 93644, + [SMALL_STATE(2634)] = 93678, + [SMALL_STATE(2635)] = 93712, + [SMALL_STATE(2636)] = 93746, + [SMALL_STATE(2637)] = 93780, + [SMALL_STATE(2638)] = 93814, + [SMALL_STATE(2639)] = 93852, + [SMALL_STATE(2640)] = 93886, + [SMALL_STATE(2641)] = 93920, + [SMALL_STATE(2642)] = 93954, + [SMALL_STATE(2643)] = 93988, + [SMALL_STATE(2644)] = 94022, + [SMALL_STATE(2645)] = 94056, + [SMALL_STATE(2646)] = 94090, + [SMALL_STATE(2647)] = 94124, + [SMALL_STATE(2648)] = 94158, + [SMALL_STATE(2649)] = 94190, + [SMALL_STATE(2650)] = 94224, + [SMALL_STATE(2651)] = 94258, + [SMALL_STATE(2652)] = 94292, + [SMALL_STATE(2653)] = 94332, + [SMALL_STATE(2654)] = 94370, + [SMALL_STATE(2655)] = 94404, + [SMALL_STATE(2656)] = 94438, + [SMALL_STATE(2657)] = 94472, + [SMALL_STATE(2658)] = 94510, + [SMALL_STATE(2659)] = 94544, + [SMALL_STATE(2660)] = 94578, + [SMALL_STATE(2661)] = 94602, + [SMALL_STATE(2662)] = 94626, + [SMALL_STATE(2663)] = 94660, + [SMALL_STATE(2664)] = 94694, + [SMALL_STATE(2665)] = 94728, + [SMALL_STATE(2666)] = 94762, + [SMALL_STATE(2667)] = 94796, + [SMALL_STATE(2668)] = 94830, + [SMALL_STATE(2669)] = 94864, + [SMALL_STATE(2670)] = 94898, + [SMALL_STATE(2671)] = 94932, + [SMALL_STATE(2672)] = 94952, + [SMALL_STATE(2673)] = 94986, + [SMALL_STATE(2674)] = 95020, + [SMALL_STATE(2675)] = 95054, + [SMALL_STATE(2676)] = 95088, + [SMALL_STATE(2677)] = 95119, + [SMALL_STATE(2678)] = 95150, + [SMALL_STATE(2679)] = 95181, + [SMALL_STATE(2680)] = 95216, + [SMALL_STATE(2681)] = 95247, + [SMALL_STATE(2682)] = 95282, + [SMALL_STATE(2683)] = 95313, + [SMALL_STATE(2684)] = 95344, + [SMALL_STATE(2685)] = 95379, + [SMALL_STATE(2686)] = 95414, + [SMALL_STATE(2687)] = 95445, + [SMALL_STATE(2688)] = 95476, + [SMALL_STATE(2689)] = 95511, + [SMALL_STATE(2690)] = 95542, + [SMALL_STATE(2691)] = 95573, + [SMALL_STATE(2692)] = 95608, + [SMALL_STATE(2693)] = 95639, + [SMALL_STATE(2694)] = 95670, + [SMALL_STATE(2695)] = 95701, + [SMALL_STATE(2696)] = 95732, + [SMALL_STATE(2697)] = 95763, + [SMALL_STATE(2698)] = 95794, + [SMALL_STATE(2699)] = 95829, + [SMALL_STATE(2700)] = 95860, + [SMALL_STATE(2701)] = 95895, + [SMALL_STATE(2702)] = 95930, + [SMALL_STATE(2703)] = 95965, + [SMALL_STATE(2704)] = 95996, + [SMALL_STATE(2705)] = 96027, + [SMALL_STATE(2706)] = 96062, + [SMALL_STATE(2707)] = 96097, + [SMALL_STATE(2708)] = 96119, + [SMALL_STATE(2709)] = 96141, + [SMALL_STATE(2710)] = 96175, + [SMALL_STATE(2711)] = 96203, + [SMALL_STATE(2712)] = 96221, + [SMALL_STATE(2713)] = 96241, + [SMALL_STATE(2714)] = 96275, + [SMALL_STATE(2715)] = 96295, + [SMALL_STATE(2716)] = 96329, + [SMALL_STATE(2717)] = 96357, + [SMALL_STATE(2718)] = 96379, + [SMALL_STATE(2719)] = 96402, + [SMALL_STATE(2720)] = 96425, + [SMALL_STATE(2721)] = 96448, + [SMALL_STATE(2722)] = 96471, + [SMALL_STATE(2723)] = 96494, + [SMALL_STATE(2724)] = 96517, + [SMALL_STATE(2725)] = 96540, + [SMALL_STATE(2726)] = 96563, + [SMALL_STATE(2727)] = 96586, + [SMALL_STATE(2728)] = 96609, + [SMALL_STATE(2729)] = 96632, + [SMALL_STATE(2730)] = 96655, + [SMALL_STATE(2731)] = 96678, + [SMALL_STATE(2732)] = 96701, + [SMALL_STATE(2733)] = 96724, + [SMALL_STATE(2734)] = 96747, + [SMALL_STATE(2735)] = 96770, + [SMALL_STATE(2736)] = 96793, + [SMALL_STATE(2737)] = 96816, + [SMALL_STATE(2738)] = 96839, + [SMALL_STATE(2739)] = 96862, + [SMALL_STATE(2740)] = 96885, + [SMALL_STATE(2741)] = 96912, + [SMALL_STATE(2742)] = 96935, + [SMALL_STATE(2743)] = 96958, + [SMALL_STATE(2744)] = 96981, + [SMALL_STATE(2745)] = 97004, + [SMALL_STATE(2746)] = 97027, + [SMALL_STATE(2747)] = 97050, + [SMALL_STATE(2748)] = 97073, + [SMALL_STATE(2749)] = 97100, + [SMALL_STATE(2750)] = 97125, + [SMALL_STATE(2751)] = 97148, + [SMALL_STATE(2752)] = 97171, + [SMALL_STATE(2753)] = 97194, + [SMALL_STATE(2754)] = 97217, + [SMALL_STATE(2755)] = 97240, + [SMALL_STATE(2756)] = 97263, + [SMALL_STATE(2757)] = 97286, + [SMALL_STATE(2758)] = 97309, + [SMALL_STATE(2759)] = 97332, + [SMALL_STATE(2760)] = 97355, + [SMALL_STATE(2761)] = 97378, + [SMALL_STATE(2762)] = 97401, + [SMALL_STATE(2763)] = 97424, + [SMALL_STATE(2764)] = 97447, + [SMALL_STATE(2765)] = 97470, + [SMALL_STATE(2766)] = 97493, + [SMALL_STATE(2767)] = 97516, + [SMALL_STATE(2768)] = 97539, + [SMALL_STATE(2769)] = 97562, + [SMALL_STATE(2770)] = 97591, + [SMALL_STATE(2771)] = 97622, + [SMALL_STATE(2772)] = 97645, + [SMALL_STATE(2773)] = 97668, + [SMALL_STATE(2774)] = 97691, + [SMALL_STATE(2775)] = 97714, + [SMALL_STATE(2776)] = 97737, + [SMALL_STATE(2777)] = 97760, + [SMALL_STATE(2778)] = 97783, + [SMALL_STATE(2779)] = 97806, + [SMALL_STATE(2780)] = 97829, + [SMALL_STATE(2781)] = 97852, + [SMALL_STATE(2782)] = 97879, + [SMALL_STATE(2783)] = 97902, + [SMALL_STATE(2784)] = 97925, + [SMALL_STATE(2785)] = 97948, + [SMALL_STATE(2786)] = 97971, + [SMALL_STATE(2787)] = 97994, + [SMALL_STATE(2788)] = 98017, + [SMALL_STATE(2789)] = 98040, + [SMALL_STATE(2790)] = 98063, + [SMALL_STATE(2791)] = 98086, + [SMALL_STATE(2792)] = 98109, + [SMALL_STATE(2793)] = 98132, + [SMALL_STATE(2794)] = 98155, + [SMALL_STATE(2795)] = 98177, + [SMALL_STATE(2796)] = 98201, + [SMALL_STATE(2797)] = 98221, + [SMALL_STATE(2798)] = 98241, + [SMALL_STATE(2799)] = 98263, + [SMALL_STATE(2800)] = 98283, + [SMALL_STATE(2801)] = 98305, + [SMALL_STATE(2802)] = 98331, + [SMALL_STATE(2803)] = 98351, + [SMALL_STATE(2804)] = 98365, + [SMALL_STATE(2805)] = 98389, + [SMALL_STATE(2806)] = 98415, + [SMALL_STATE(2807)] = 98441, + [SMALL_STATE(2808)] = 98455, + [SMALL_STATE(2809)] = 98479, + [SMALL_STATE(2810)] = 98503, + [SMALL_STATE(2811)] = 98529, + [SMALL_STATE(2812)] = 98555, + [SMALL_STATE(2813)] = 98569, + [SMALL_STATE(2814)] = 98595, + [SMALL_STATE(2815)] = 98610, + [SMALL_STATE(2816)] = 98629, + [SMALL_STATE(2817)] = 98648, + [SMALL_STATE(2818)] = 98667, + [SMALL_STATE(2819)] = 98686, + [SMALL_STATE(2820)] = 98705, + [SMALL_STATE(2821)] = 98728, + [SMALL_STATE(2822)] = 98747, + [SMALL_STATE(2823)] = 98766, + [SMALL_STATE(2824)] = 98785, + [SMALL_STATE(2825)] = 98808, + [SMALL_STATE(2826)] = 98827, + [SMALL_STATE(2827)] = 98846, + [SMALL_STATE(2828)] = 98865, + [SMALL_STATE(2829)] = 98882, + [SMALL_STATE(2830)] = 98901, + [SMALL_STATE(2831)] = 98924, + [SMALL_STATE(2832)] = 98947, + [SMALL_STATE(2833)] = 98966, + [SMALL_STATE(2834)] = 98985, + [SMALL_STATE(2835)] = 99004, + [SMALL_STATE(2836)] = 99023, + [SMALL_STATE(2837)] = 99036, + [SMALL_STATE(2838)] = 99059, + [SMALL_STATE(2839)] = 99074, + [SMALL_STATE(2840)] = 99089, + [SMALL_STATE(2841)] = 99112, + [SMALL_STATE(2842)] = 99131, + [SMALL_STATE(2843)] = 99144, + [SMALL_STATE(2844)] = 99167, + [SMALL_STATE(2845)] = 99184, + [SMALL_STATE(2846)] = 99203, + [SMALL_STATE(2847)] = 99222, + [SMALL_STATE(2848)] = 99241, + [SMALL_STATE(2849)] = 99260, + [SMALL_STATE(2850)] = 99279, + [SMALL_STATE(2851)] = 99298, + [SMALL_STATE(2852)] = 99317, + [SMALL_STATE(2853)] = 99336, + [SMALL_STATE(2854)] = 99355, + [SMALL_STATE(2855)] = 99374, + [SMALL_STATE(2856)] = 99393, + [SMALL_STATE(2857)] = 99412, + [SMALL_STATE(2858)] = 99431, + [SMALL_STATE(2859)] = 99450, + [SMALL_STATE(2860)] = 99469, + [SMALL_STATE(2861)] = 99492, + [SMALL_STATE(2862)] = 99511, + [SMALL_STATE(2863)] = 99530, + [SMALL_STATE(2864)] = 99549, + [SMALL_STATE(2865)] = 99568, + [SMALL_STATE(2866)] = 99581, + [SMALL_STATE(2867)] = 99598, + [SMALL_STATE(2868)] = 99621, + [SMALL_STATE(2869)] = 99634, + [SMALL_STATE(2870)] = 99653, + [SMALL_STATE(2871)] = 99672, + [SMALL_STATE(2872)] = 99691, + [SMALL_STATE(2873)] = 99710, + [SMALL_STATE(2874)] = 99729, + [SMALL_STATE(2875)] = 99748, + [SMALL_STATE(2876)] = 99765, + [SMALL_STATE(2877)] = 99788, + [SMALL_STATE(2878)] = 99807, + [SMALL_STATE(2879)] = 99826, + [SMALL_STATE(2880)] = 99849, + [SMALL_STATE(2881)] = 99862, + [SMALL_STATE(2882)] = 99881, + [SMALL_STATE(2883)] = 99900, + [SMALL_STATE(2884)] = 99923, + [SMALL_STATE(2885)] = 99942, + [SMALL_STATE(2886)] = 99965, + [SMALL_STATE(2887)] = 99980, + [SMALL_STATE(2888)] = 99999, + [SMALL_STATE(2889)] = 100018, + [SMALL_STATE(2890)] = 100041, + [SMALL_STATE(2891)] = 100060, + [SMALL_STATE(2892)] = 100079, + [SMALL_STATE(2893)] = 100098, + [SMALL_STATE(2894)] = 100117, + [SMALL_STATE(2895)] = 100136, + [SMALL_STATE(2896)] = 100155, + [SMALL_STATE(2897)] = 100174, + [SMALL_STATE(2898)] = 100193, + [SMALL_STATE(2899)] = 100212, + [SMALL_STATE(2900)] = 100231, + [SMALL_STATE(2901)] = 100250, + [SMALL_STATE(2902)] = 100269, + [SMALL_STATE(2903)] = 100288, + [SMALL_STATE(2904)] = 100307, + [SMALL_STATE(2905)] = 100326, + [SMALL_STATE(2906)] = 100345, + [SMALL_STATE(2907)] = 100364, + [SMALL_STATE(2908)] = 100383, + [SMALL_STATE(2909)] = 100398, + [SMALL_STATE(2910)] = 100417, + [SMALL_STATE(2911)] = 100436, + [SMALL_STATE(2912)] = 100455, + [SMALL_STATE(2913)] = 100474, + [SMALL_STATE(2914)] = 100493, + [SMALL_STATE(2915)] = 100512, + [SMALL_STATE(2916)] = 100531, + [SMALL_STATE(2917)] = 100554, + [SMALL_STATE(2918)] = 100577, + [SMALL_STATE(2919)] = 100596, + [SMALL_STATE(2920)] = 100611, + [SMALL_STATE(2921)] = 100628, + [SMALL_STATE(2922)] = 100651, + [SMALL_STATE(2923)] = 100670, + [SMALL_STATE(2924)] = 100689, + [SMALL_STATE(2925)] = 100708, + [SMALL_STATE(2926)] = 100731, + [SMALL_STATE(2927)] = 100750, + [SMALL_STATE(2928)] = 100765, + [SMALL_STATE(2929)] = 100784, + [SMALL_STATE(2930)] = 100807, + [SMALL_STATE(2931)] = 100826, + [SMALL_STATE(2932)] = 100845, + [SMALL_STATE(2933)] = 100858, + [SMALL_STATE(2934)] = 100877, + [SMALL_STATE(2935)] = 100893, + [SMALL_STATE(2936)] = 100913, + [SMALL_STATE(2937)] = 100929, + [SMALL_STATE(2938)] = 100941, + [SMALL_STATE(2939)] = 100953, + [SMALL_STATE(2940)] = 100971, + [SMALL_STATE(2941)] = 100983, + [SMALL_STATE(2942)] = 101001, + [SMALL_STATE(2943)] = 101013, + [SMALL_STATE(2944)] = 101027, + [SMALL_STATE(2945)] = 101043, + [SMALL_STATE(2946)] = 101057, + [SMALL_STATE(2947)] = 101075, + [SMALL_STATE(2948)] = 101091, + [SMALL_STATE(2949)] = 101105, + [SMALL_STATE(2950)] = 101121, + [SMALL_STATE(2951)] = 101133, + [SMALL_STATE(2952)] = 101147, + [SMALL_STATE(2953)] = 101159, + [SMALL_STATE(2954)] = 101175, + [SMALL_STATE(2955)] = 101193, + [SMALL_STATE(2956)] = 101205, + [SMALL_STATE(2957)] = 101225, + [SMALL_STATE(2958)] = 101237, + [SMALL_STATE(2959)] = 101255, + [SMALL_STATE(2960)] = 101267, + [SMALL_STATE(2961)] = 101285, + [SMALL_STATE(2962)] = 101297, + [SMALL_STATE(2963)] = 101315, + [SMALL_STATE(2964)] = 101329, + [SMALL_STATE(2965)] = 101347, + [SMALL_STATE(2966)] = 101361, + [SMALL_STATE(2967)] = 101373, + [SMALL_STATE(2968)] = 101391, + [SMALL_STATE(2969)] = 101405, + [SMALL_STATE(2970)] = 101421, + [SMALL_STATE(2971)] = 101435, + [SMALL_STATE(2972)] = 101449, + [SMALL_STATE(2973)] = 101463, + [SMALL_STATE(2974)] = 101481, + [SMALL_STATE(2975)] = 101493, + [SMALL_STATE(2976)] = 101513, + [SMALL_STATE(2977)] = 101529, + [SMALL_STATE(2978)] = 101549, + [SMALL_STATE(2979)] = 101565, + [SMALL_STATE(2980)] = 101577, + [SMALL_STATE(2981)] = 101595, + [SMALL_STATE(2982)] = 101609, + [SMALL_STATE(2983)] = 101627, + [SMALL_STATE(2984)] = 101645, + [SMALL_STATE(2985)] = 101661, + [SMALL_STATE(2986)] = 101679, + [SMALL_STATE(2987)] = 101690, + [SMALL_STATE(2988)] = 101709, + [SMALL_STATE(2989)] = 101720, + [SMALL_STATE(2990)] = 101731, + [SMALL_STATE(2991)] = 101746, + [SMALL_STATE(2992)] = 101757, + [SMALL_STATE(2993)] = 101768, + [SMALL_STATE(2994)] = 101779, + [SMALL_STATE(2995)] = 101790, + [SMALL_STATE(2996)] = 101805, + [SMALL_STATE(2997)] = 101816, + [SMALL_STATE(2998)] = 101831, + [SMALL_STATE(2999)] = 101842, + [SMALL_STATE(3000)] = 101853, + [SMALL_STATE(3001)] = 101864, + [SMALL_STATE(3002)] = 101883, + [SMALL_STATE(3003)] = 101898, + [SMALL_STATE(3004)] = 101917, + [SMALL_STATE(3005)] = 101930, + [SMALL_STATE(3006)] = 101941, + [SMALL_STATE(3007)] = 101952, + [SMALL_STATE(3008)] = 101971, + [SMALL_STATE(3009)] = 101984, + [SMALL_STATE(3010)] = 101999, + [SMALL_STATE(3011)] = 102012, + [SMALL_STATE(3012)] = 102023, + [SMALL_STATE(3013)] = 102038, + [SMALL_STATE(3014)] = 102049, + [SMALL_STATE(3015)] = 102068, + [SMALL_STATE(3016)] = 102087, + [SMALL_STATE(3017)] = 102100, + [SMALL_STATE(3018)] = 102111, + [SMALL_STATE(3019)] = 102122, + [SMALL_STATE(3020)] = 102135, + [SMALL_STATE(3021)] = 102148, + [SMALL_STATE(3022)] = 102159, + [SMALL_STATE(3023)] = 102174, + [SMALL_STATE(3024)] = 102185, + [SMALL_STATE(3025)] = 102196, + [SMALL_STATE(3026)] = 102207, + [SMALL_STATE(3027)] = 102226, + [SMALL_STATE(3028)] = 102241, + [SMALL_STATE(3029)] = 102260, + [SMALL_STATE(3030)] = 102279, + [SMALL_STATE(3031)] = 102298, + [SMALL_STATE(3032)] = 102317, + [SMALL_STATE(3033)] = 102328, + [SMALL_STATE(3034)] = 102341, + [SMALL_STATE(3035)] = 102353, + [SMALL_STATE(3036)] = 102369, + [SMALL_STATE(3037)] = 102379, + [SMALL_STATE(3038)] = 102395, + [SMALL_STATE(3039)] = 102405, + [SMALL_STATE(3040)] = 102421, + [SMALL_STATE(3041)] = 102435, + [SMALL_STATE(3042)] = 102445, + [SMALL_STATE(3043)] = 102461, + [SMALL_STATE(3044)] = 102477, + [SMALL_STATE(3045)] = 102493, + [SMALL_STATE(3046)] = 102505, + [SMALL_STATE(3047)] = 102519, + [SMALL_STATE(3048)] = 102535, + [SMALL_STATE(3049)] = 102549, + [SMALL_STATE(3050)] = 102563, + [SMALL_STATE(3051)] = 102579, + [SMALL_STATE(3052)] = 102595, + [SMALL_STATE(3053)] = 102611, + [SMALL_STATE(3054)] = 102627, + [SMALL_STATE(3055)] = 102643, + [SMALL_STATE(3056)] = 102659, + [SMALL_STATE(3057)] = 102675, + [SMALL_STATE(3058)] = 102691, + [SMALL_STATE(3059)] = 102707, + [SMALL_STATE(3060)] = 102721, + [SMALL_STATE(3061)] = 102737, + [SMALL_STATE(3062)] = 102751, + [SMALL_STATE(3063)] = 102765, + [SMALL_STATE(3064)] = 102781, + [SMALL_STATE(3065)] = 102797, + [SMALL_STATE(3066)] = 102811, + [SMALL_STATE(3067)] = 102825, + [SMALL_STATE(3068)] = 102841, + [SMALL_STATE(3069)] = 102851, + [SMALL_STATE(3070)] = 102863, + [SMALL_STATE(3071)] = 102873, + [SMALL_STATE(3072)] = 102885, + [SMALL_STATE(3073)] = 102901, + [SMALL_STATE(3074)] = 102917, + [SMALL_STATE(3075)] = 102933, + [SMALL_STATE(3076)] = 102949, + [SMALL_STATE(3077)] = 102963, + [SMALL_STATE(3078)] = 102979, + [SMALL_STATE(3079)] = 102993, + [SMALL_STATE(3080)] = 103009, + [SMALL_STATE(3081)] = 103025, + [SMALL_STATE(3082)] = 103041, + [SMALL_STATE(3083)] = 103057, + [SMALL_STATE(3084)] = 103073, + [SMALL_STATE(3085)] = 103089, + [SMALL_STATE(3086)] = 103103, + [SMALL_STATE(3087)] = 103113, + [SMALL_STATE(3088)] = 103129, + [SMALL_STATE(3089)] = 103139, + [SMALL_STATE(3090)] = 103155, + [SMALL_STATE(3091)] = 103171, + [SMALL_STATE(3092)] = 103185, + [SMALL_STATE(3093)] = 103199, + [SMALL_STATE(3094)] = 103215, + [SMALL_STATE(3095)] = 103225, + [SMALL_STATE(3096)] = 103241, + [SMALL_STATE(3097)] = 103257, + [SMALL_STATE(3098)] = 103273, + [SMALL_STATE(3099)] = 103289, + [SMALL_STATE(3100)] = 103303, + [SMALL_STATE(3101)] = 103319, + [SMALL_STATE(3102)] = 103335, + [SMALL_STATE(3103)] = 103349, + [SMALL_STATE(3104)] = 103363, + [SMALL_STATE(3105)] = 103375, + [SMALL_STATE(3106)] = 103389, + [SMALL_STATE(3107)] = 103405, + [SMALL_STATE(3108)] = 103421, + [SMALL_STATE(3109)] = 103437, + [SMALL_STATE(3110)] = 103451, + [SMALL_STATE(3111)] = 103467, + [SMALL_STATE(3112)] = 103483, + [SMALL_STATE(3113)] = 103499, + [SMALL_STATE(3114)] = 103513, + [SMALL_STATE(3115)] = 103529, + [SMALL_STATE(3116)] = 103545, + [SMALL_STATE(3117)] = 103558, + [SMALL_STATE(3118)] = 103571, + [SMALL_STATE(3119)] = 103584, + [SMALL_STATE(3120)] = 103597, + [SMALL_STATE(3121)] = 103610, + [SMALL_STATE(3122)] = 103623, + [SMALL_STATE(3123)] = 103636, + [SMALL_STATE(3124)] = 103649, + [SMALL_STATE(3125)] = 103662, + [SMALL_STATE(3126)] = 103671, + [SMALL_STATE(3127)] = 103684, + [SMALL_STATE(3128)] = 103697, + [SMALL_STATE(3129)] = 103710, + [SMALL_STATE(3130)] = 103723, + [SMALL_STATE(3131)] = 103736, + [SMALL_STATE(3132)] = 103749, + [SMALL_STATE(3133)] = 103762, + [SMALL_STATE(3134)] = 103771, + [SMALL_STATE(3135)] = 103780, + [SMALL_STATE(3136)] = 103793, + [SMALL_STATE(3137)] = 103806, + [SMALL_STATE(3138)] = 103819, + [SMALL_STATE(3139)] = 103832, + [SMALL_STATE(3140)] = 103845, + [SMALL_STATE(3141)] = 103858, + [SMALL_STATE(3142)] = 103871, + [SMALL_STATE(3143)] = 103884, + [SMALL_STATE(3144)] = 103897, + [SMALL_STATE(3145)] = 103910, + [SMALL_STATE(3146)] = 103923, + [SMALL_STATE(3147)] = 103936, + [SMALL_STATE(3148)] = 103949, + [SMALL_STATE(3149)] = 103962, + [SMALL_STATE(3150)] = 103975, + [SMALL_STATE(3151)] = 103988, + [SMALL_STATE(3152)] = 104001, + [SMALL_STATE(3153)] = 104014, + [SMALL_STATE(3154)] = 104027, + [SMALL_STATE(3155)] = 104040, + [SMALL_STATE(3156)] = 104053, + [SMALL_STATE(3157)] = 104066, + [SMALL_STATE(3158)] = 104079, + [SMALL_STATE(3159)] = 104092, + [SMALL_STATE(3160)] = 104105, + [SMALL_STATE(3161)] = 104118, + [SMALL_STATE(3162)] = 104131, + [SMALL_STATE(3163)] = 104144, + [SMALL_STATE(3164)] = 104157, + [SMALL_STATE(3165)] = 104170, + [SMALL_STATE(3166)] = 104183, + [SMALL_STATE(3167)] = 104196, + [SMALL_STATE(3168)] = 104209, + [SMALL_STATE(3169)] = 104222, + [SMALL_STATE(3170)] = 104235, + [SMALL_STATE(3171)] = 104248, + [SMALL_STATE(3172)] = 104261, + [SMALL_STATE(3173)] = 104274, + [SMALL_STATE(3174)] = 104287, + [SMALL_STATE(3175)] = 104300, + [SMALL_STATE(3176)] = 104313, + [SMALL_STATE(3177)] = 104326, + [SMALL_STATE(3178)] = 104339, + [SMALL_STATE(3179)] = 104352, + [SMALL_STATE(3180)] = 104365, + [SMALL_STATE(3181)] = 104378, + [SMALL_STATE(3182)] = 104391, + [SMALL_STATE(3183)] = 104404, + [SMALL_STATE(3184)] = 104417, + [SMALL_STATE(3185)] = 104430, + [SMALL_STATE(3186)] = 104443, + [SMALL_STATE(3187)] = 104456, + [SMALL_STATE(3188)] = 104469, + [SMALL_STATE(3189)] = 104482, + [SMALL_STATE(3190)] = 104495, + [SMALL_STATE(3191)] = 104508, + [SMALL_STATE(3192)] = 104521, + [SMALL_STATE(3193)] = 104534, + [SMALL_STATE(3194)] = 104547, + [SMALL_STATE(3195)] = 104558, + [SMALL_STATE(3196)] = 104571, + [SMALL_STATE(3197)] = 104584, + [SMALL_STATE(3198)] = 104597, + [SMALL_STATE(3199)] = 104610, + [SMALL_STATE(3200)] = 104623, + [SMALL_STATE(3201)] = 104636, + [SMALL_STATE(3202)] = 104649, + [SMALL_STATE(3203)] = 104662, + [SMALL_STATE(3204)] = 104675, + [SMALL_STATE(3205)] = 104688, + [SMALL_STATE(3206)] = 104701, + [SMALL_STATE(3207)] = 104714, + [SMALL_STATE(3208)] = 104727, + [SMALL_STATE(3209)] = 104740, + [SMALL_STATE(3210)] = 104753, + [SMALL_STATE(3211)] = 104766, + [SMALL_STATE(3212)] = 104779, + [SMALL_STATE(3213)] = 104792, + [SMALL_STATE(3214)] = 104805, + [SMALL_STATE(3215)] = 104818, + [SMALL_STATE(3216)] = 104831, + [SMALL_STATE(3217)] = 104844, + [SMALL_STATE(3218)] = 104857, + [SMALL_STATE(3219)] = 104870, + [SMALL_STATE(3220)] = 104883, + [SMALL_STATE(3221)] = 104896, + [SMALL_STATE(3222)] = 104909, + [SMALL_STATE(3223)] = 104922, + [SMALL_STATE(3224)] = 104935, + [SMALL_STATE(3225)] = 104948, + [SMALL_STATE(3226)] = 104961, + [SMALL_STATE(3227)] = 104974, + [SMALL_STATE(3228)] = 104987, + [SMALL_STATE(3229)] = 105000, + [SMALL_STATE(3230)] = 105013, + [SMALL_STATE(3231)] = 105026, + [SMALL_STATE(3232)] = 105039, + [SMALL_STATE(3233)] = 105052, + [SMALL_STATE(3234)] = 105065, + [SMALL_STATE(3235)] = 105078, + [SMALL_STATE(3236)] = 105091, + [SMALL_STATE(3237)] = 105104, + [SMALL_STATE(3238)] = 105117, + [SMALL_STATE(3239)] = 105130, + [SMALL_STATE(3240)] = 105143, + [SMALL_STATE(3241)] = 105156, + [SMALL_STATE(3242)] = 105169, + [SMALL_STATE(3243)] = 105182, + [SMALL_STATE(3244)] = 105195, + [SMALL_STATE(3245)] = 105208, + [SMALL_STATE(3246)] = 105221, + [SMALL_STATE(3247)] = 105234, + [SMALL_STATE(3248)] = 105247, + [SMALL_STATE(3249)] = 105260, + [SMALL_STATE(3250)] = 105273, + [SMALL_STATE(3251)] = 105286, + [SMALL_STATE(3252)] = 105299, + [SMALL_STATE(3253)] = 105308, + [SMALL_STATE(3254)] = 105321, + [SMALL_STATE(3255)] = 105334, + [SMALL_STATE(3256)] = 105347, + [SMALL_STATE(3257)] = 105360, + [SMALL_STATE(3258)] = 105373, + [SMALL_STATE(3259)] = 105384, + [SMALL_STATE(3260)] = 105397, + [SMALL_STATE(3261)] = 105410, + [SMALL_STATE(3262)] = 105423, + [SMALL_STATE(3263)] = 105436, + [SMALL_STATE(3264)] = 105449, + [SMALL_STATE(3265)] = 105462, + [SMALL_STATE(3266)] = 105475, + [SMALL_STATE(3267)] = 105488, + [SMALL_STATE(3268)] = 105501, + [SMALL_STATE(3269)] = 105510, + [SMALL_STATE(3270)] = 105523, + [SMALL_STATE(3271)] = 105536, + [SMALL_STATE(3272)] = 105549, + [SMALL_STATE(3273)] = 105562, + [SMALL_STATE(3274)] = 105575, + [SMALL_STATE(3275)] = 105588, + [SMALL_STATE(3276)] = 105601, + [SMALL_STATE(3277)] = 105614, + [SMALL_STATE(3278)] = 105627, + [SMALL_STATE(3279)] = 105640, + [SMALL_STATE(3280)] = 105653, + [SMALL_STATE(3281)] = 105666, + [SMALL_STATE(3282)] = 105679, + [SMALL_STATE(3283)] = 105692, + [SMALL_STATE(3284)] = 105705, + [SMALL_STATE(3285)] = 105718, + [SMALL_STATE(3286)] = 105731, + [SMALL_STATE(3287)] = 105744, + [SMALL_STATE(3288)] = 105757, + [SMALL_STATE(3289)] = 105766, + [SMALL_STATE(3290)] = 105779, + [SMALL_STATE(3291)] = 105790, + [SMALL_STATE(3292)] = 105803, + [SMALL_STATE(3293)] = 105816, + [SMALL_STATE(3294)] = 105829, + [SMALL_STATE(3295)] = 105842, + [SMALL_STATE(3296)] = 105855, + [SMALL_STATE(3297)] = 105868, + [SMALL_STATE(3298)] = 105881, + [SMALL_STATE(3299)] = 105894, + [SMALL_STATE(3300)] = 105907, + [SMALL_STATE(3301)] = 105920, + [SMALL_STATE(3302)] = 105933, + [SMALL_STATE(3303)] = 105946, + [SMALL_STATE(3304)] = 105959, + [SMALL_STATE(3305)] = 105972, + [SMALL_STATE(3306)] = 105985, + [SMALL_STATE(3307)] = 105998, + [SMALL_STATE(3308)] = 106011, + [SMALL_STATE(3309)] = 106024, + [SMALL_STATE(3310)] = 106037, + [SMALL_STATE(3311)] = 106050, + [SMALL_STATE(3312)] = 106063, + [SMALL_STATE(3313)] = 106076, + [SMALL_STATE(3314)] = 106089, + [SMALL_STATE(3315)] = 106102, + [SMALL_STATE(3316)] = 106115, + [SMALL_STATE(3317)] = 106128, + [SMALL_STATE(3318)] = 106141, + [SMALL_STATE(3319)] = 106154, + [SMALL_STATE(3320)] = 106167, + [SMALL_STATE(3321)] = 106180, + [SMALL_STATE(3322)] = 106193, + [SMALL_STATE(3323)] = 106206, + [SMALL_STATE(3324)] = 106219, + [SMALL_STATE(3325)] = 106232, + [SMALL_STATE(3326)] = 106245, + [SMALL_STATE(3327)] = 106258, + [SMALL_STATE(3328)] = 106271, + [SMALL_STATE(3329)] = 106284, + [SMALL_STATE(3330)] = 106297, + [SMALL_STATE(3331)] = 106310, + [SMALL_STATE(3332)] = 106323, + [SMALL_STATE(3333)] = 106336, + [SMALL_STATE(3334)] = 106349, + [SMALL_STATE(3335)] = 106362, + [SMALL_STATE(3336)] = 106375, + [SMALL_STATE(3337)] = 106388, + [SMALL_STATE(3338)] = 106401, + [SMALL_STATE(3339)] = 106414, + [SMALL_STATE(3340)] = 106423, + [SMALL_STATE(3341)] = 106436, + [SMALL_STATE(3342)] = 106449, + [SMALL_STATE(3343)] = 106462, + [SMALL_STATE(3344)] = 106475, + [SMALL_STATE(3345)] = 106488, + [SMALL_STATE(3346)] = 106497, + [SMALL_STATE(3347)] = 106510, + [SMALL_STATE(3348)] = 106523, + [SMALL_STATE(3349)] = 106536, + [SMALL_STATE(3350)] = 106549, + [SMALL_STATE(3351)] = 106562, + [SMALL_STATE(3352)] = 106575, + [SMALL_STATE(3353)] = 106588, + [SMALL_STATE(3354)] = 106601, + [SMALL_STATE(3355)] = 106614, + [SMALL_STATE(3356)] = 106627, + [SMALL_STATE(3357)] = 106640, + [SMALL_STATE(3358)] = 106653, + [SMALL_STATE(3359)] = 106666, + [SMALL_STATE(3360)] = 106679, + [SMALL_STATE(3361)] = 106692, + [SMALL_STATE(3362)] = 106705, + [SMALL_STATE(3363)] = 106718, + [SMALL_STATE(3364)] = 106731, + [SMALL_STATE(3365)] = 106744, + [SMALL_STATE(3366)] = 106757, + [SMALL_STATE(3367)] = 106770, + [SMALL_STATE(3368)] = 106783, + [SMALL_STATE(3369)] = 106796, + [SMALL_STATE(3370)] = 106809, + [SMALL_STATE(3371)] = 106822, + [SMALL_STATE(3372)] = 106835, + [SMALL_STATE(3373)] = 106848, + [SMALL_STATE(3374)] = 106861, + [SMALL_STATE(3375)] = 106874, + [SMALL_STATE(3376)] = 106887, + [SMALL_STATE(3377)] = 106900, + [SMALL_STATE(3378)] = 106913, + [SMALL_STATE(3379)] = 106923, + [SMALL_STATE(3380)] = 106933, + [SMALL_STATE(3381)] = 106943, + [SMALL_STATE(3382)] = 106951, + [SMALL_STATE(3383)] = 106961, + [SMALL_STATE(3384)] = 106971, + [SMALL_STATE(3385)] = 106981, + [SMALL_STATE(3386)] = 106991, + [SMALL_STATE(3387)] = 107001, + [SMALL_STATE(3388)] = 107011, + [SMALL_STATE(3389)] = 107021, + [SMALL_STATE(3390)] = 107031, + [SMALL_STATE(3391)] = 107039, + [SMALL_STATE(3392)] = 107049, + [SMALL_STATE(3393)] = 107059, + [SMALL_STATE(3394)] = 107069, + [SMALL_STATE(3395)] = 107079, + [SMALL_STATE(3396)] = 107089, + [SMALL_STATE(3397)] = 107099, + [SMALL_STATE(3398)] = 107109, + [SMALL_STATE(3399)] = 107119, + [SMALL_STATE(3400)] = 107129, + [SMALL_STATE(3401)] = 107139, + [SMALL_STATE(3402)] = 107149, + [SMALL_STATE(3403)] = 107159, + [SMALL_STATE(3404)] = 107169, + [SMALL_STATE(3405)] = 107179, + [SMALL_STATE(3406)] = 107189, + [SMALL_STATE(3407)] = 107199, + [SMALL_STATE(3408)] = 107209, + [SMALL_STATE(3409)] = 107219, + [SMALL_STATE(3410)] = 107227, + [SMALL_STATE(3411)] = 107237, + [SMALL_STATE(3412)] = 107247, + [SMALL_STATE(3413)] = 107257, + [SMALL_STATE(3414)] = 107267, + [SMALL_STATE(3415)] = 107277, + [SMALL_STATE(3416)] = 107287, + [SMALL_STATE(3417)] = 107295, + [SMALL_STATE(3418)] = 107305, + [SMALL_STATE(3419)] = 107315, + [SMALL_STATE(3420)] = 107325, + [SMALL_STATE(3421)] = 107335, + [SMALL_STATE(3422)] = 107345, + [SMALL_STATE(3423)] = 107355, + [SMALL_STATE(3424)] = 107365, + [SMALL_STATE(3425)] = 107375, + [SMALL_STATE(3426)] = 107383, + [SMALL_STATE(3427)] = 107393, + [SMALL_STATE(3428)] = 107403, + [SMALL_STATE(3429)] = 107413, + [SMALL_STATE(3430)] = 107423, + [SMALL_STATE(3431)] = 107433, + [SMALL_STATE(3432)] = 107443, + [SMALL_STATE(3433)] = 107453, + [SMALL_STATE(3434)] = 107463, + [SMALL_STATE(3435)] = 107471, + [SMALL_STATE(3436)] = 107481, + [SMALL_STATE(3437)] = 107491, + [SMALL_STATE(3438)] = 107501, + [SMALL_STATE(3439)] = 107511, + [SMALL_STATE(3440)] = 107521, + [SMALL_STATE(3441)] = 107531, + [SMALL_STATE(3442)] = 107541, + [SMALL_STATE(3443)] = 107551, + [SMALL_STATE(3444)] = 107559, + [SMALL_STATE(3445)] = 107569, + [SMALL_STATE(3446)] = 107579, + [SMALL_STATE(3447)] = 107587, + [SMALL_STATE(3448)] = 107597, + [SMALL_STATE(3449)] = 107607, + [SMALL_STATE(3450)] = 107617, + [SMALL_STATE(3451)] = 107627, + [SMALL_STATE(3452)] = 107637, + [SMALL_STATE(3453)] = 107647, + [SMALL_STATE(3454)] = 107657, + [SMALL_STATE(3455)] = 107667, + [SMALL_STATE(3456)] = 107677, + [SMALL_STATE(3457)] = 107687, + [SMALL_STATE(3458)] = 107697, + [SMALL_STATE(3459)] = 107707, + [SMALL_STATE(3460)] = 107717, + [SMALL_STATE(3461)] = 107727, + [SMALL_STATE(3462)] = 107737, + [SMALL_STATE(3463)] = 107747, + [SMALL_STATE(3464)] = 107757, + [SMALL_STATE(3465)] = 107767, + [SMALL_STATE(3466)] = 107777, + [SMALL_STATE(3467)] = 107787, + [SMALL_STATE(3468)] = 107795, + [SMALL_STATE(3469)] = 107805, + [SMALL_STATE(3470)] = 107815, + [SMALL_STATE(3471)] = 107825, + [SMALL_STATE(3472)] = 107835, + [SMALL_STATE(3473)] = 107845, + [SMALL_STATE(3474)] = 107855, + [SMALL_STATE(3475)] = 107865, + [SMALL_STATE(3476)] = 107875, + [SMALL_STATE(3477)] = 107885, + [SMALL_STATE(3478)] = 107895, + [SMALL_STATE(3479)] = 107903, + [SMALL_STATE(3480)] = 107911, + [SMALL_STATE(3481)] = 107919, + [SMALL_STATE(3482)] = 107929, + [SMALL_STATE(3483)] = 107939, + [SMALL_STATE(3484)] = 107949, + [SMALL_STATE(3485)] = 107959, + [SMALL_STATE(3486)] = 107969, + [SMALL_STATE(3487)] = 107979, + [SMALL_STATE(3488)] = 107989, + [SMALL_STATE(3489)] = 107999, + [SMALL_STATE(3490)] = 108009, + [SMALL_STATE(3491)] = 108019, + [SMALL_STATE(3492)] = 108029, + [SMALL_STATE(3493)] = 108037, + [SMALL_STATE(3494)] = 108047, + [SMALL_STATE(3495)] = 108055, + [SMALL_STATE(3496)] = 108063, + [SMALL_STATE(3497)] = 108073, + [SMALL_STATE(3498)] = 108081, + [SMALL_STATE(3499)] = 108091, + [SMALL_STATE(3500)] = 108101, + [SMALL_STATE(3501)] = 108111, + [SMALL_STATE(3502)] = 108121, + [SMALL_STATE(3503)] = 108131, + [SMALL_STATE(3504)] = 108141, + [SMALL_STATE(3505)] = 108151, + [SMALL_STATE(3506)] = 108161, + [SMALL_STATE(3507)] = 108171, + [SMALL_STATE(3508)] = 108181, + [SMALL_STATE(3509)] = 108191, + [SMALL_STATE(3510)] = 108201, + [SMALL_STATE(3511)] = 108211, + [SMALL_STATE(3512)] = 108221, + [SMALL_STATE(3513)] = 108231, + [SMALL_STATE(3514)] = 108239, + [SMALL_STATE(3515)] = 108249, + [SMALL_STATE(3516)] = 108259, + [SMALL_STATE(3517)] = 108269, + [SMALL_STATE(3518)] = 108279, + [SMALL_STATE(3519)] = 108287, + [SMALL_STATE(3520)] = 108297, + [SMALL_STATE(3521)] = 108305, + [SMALL_STATE(3522)] = 108313, + [SMALL_STATE(3523)] = 108323, + [SMALL_STATE(3524)] = 108333, + [SMALL_STATE(3525)] = 108343, + [SMALL_STATE(3526)] = 108353, + [SMALL_STATE(3527)] = 108363, + [SMALL_STATE(3528)] = 108373, + [SMALL_STATE(3529)] = 108383, + [SMALL_STATE(3530)] = 108393, + [SMALL_STATE(3531)] = 108401, + [SMALL_STATE(3532)] = 108411, + [SMALL_STATE(3533)] = 108421, + [SMALL_STATE(3534)] = 108431, + [SMALL_STATE(3535)] = 108441, + [SMALL_STATE(3536)] = 108451, + [SMALL_STATE(3537)] = 108461, + [SMALL_STATE(3538)] = 108469, + [SMALL_STATE(3539)] = 108479, + [SMALL_STATE(3540)] = 108489, + [SMALL_STATE(3541)] = 108499, + [SMALL_STATE(3542)] = 108509, + [SMALL_STATE(3543)] = 108519, + [SMALL_STATE(3544)] = 108529, + [SMALL_STATE(3545)] = 108539, + [SMALL_STATE(3546)] = 108549, + [SMALL_STATE(3547)] = 108557, + [SMALL_STATE(3548)] = 108567, + [SMALL_STATE(3549)] = 108577, + [SMALL_STATE(3550)] = 108587, + [SMALL_STATE(3551)] = 108597, + [SMALL_STATE(3552)] = 108607, + [SMALL_STATE(3553)] = 108617, + [SMALL_STATE(3554)] = 108627, + [SMALL_STATE(3555)] = 108637, + [SMALL_STATE(3556)] = 108645, + [SMALL_STATE(3557)] = 108653, + [SMALL_STATE(3558)] = 108663, + [SMALL_STATE(3559)] = 108673, + [SMALL_STATE(3560)] = 108683, + [SMALL_STATE(3561)] = 108693, + [SMALL_STATE(3562)] = 108701, + [SMALL_STATE(3563)] = 108711, + [SMALL_STATE(3564)] = 108721, + [SMALL_STATE(3565)] = 108731, + [SMALL_STATE(3566)] = 108741, + [SMALL_STATE(3567)] = 108751, + [SMALL_STATE(3568)] = 108759, + [SMALL_STATE(3569)] = 108769, + [SMALL_STATE(3570)] = 108779, + [SMALL_STATE(3571)] = 108789, + [SMALL_STATE(3572)] = 108797, + [SMALL_STATE(3573)] = 108807, + [SMALL_STATE(3574)] = 108817, + [SMALL_STATE(3575)] = 108827, + [SMALL_STATE(3576)] = 108837, + [SMALL_STATE(3577)] = 108847, + [SMALL_STATE(3578)] = 108857, + [SMALL_STATE(3579)] = 108867, + [SMALL_STATE(3580)] = 108874, + [SMALL_STATE(3581)] = 108881, + [SMALL_STATE(3582)] = 108888, + [SMALL_STATE(3583)] = 108895, + [SMALL_STATE(3584)] = 108902, + [SMALL_STATE(3585)] = 108909, + [SMALL_STATE(3586)] = 108916, + [SMALL_STATE(3587)] = 108923, + [SMALL_STATE(3588)] = 108930, + [SMALL_STATE(3589)] = 108937, + [SMALL_STATE(3590)] = 108944, + [SMALL_STATE(3591)] = 108951, + [SMALL_STATE(3592)] = 108958, + [SMALL_STATE(3593)] = 108965, + [SMALL_STATE(3594)] = 108972, + [SMALL_STATE(3595)] = 108979, + [SMALL_STATE(3596)] = 108986, + [SMALL_STATE(3597)] = 108993, + [SMALL_STATE(3598)] = 109000, + [SMALL_STATE(3599)] = 109007, + [SMALL_STATE(3600)] = 109014, + [SMALL_STATE(3601)] = 109021, + [SMALL_STATE(3602)] = 109028, + [SMALL_STATE(3603)] = 109035, + [SMALL_STATE(3604)] = 109042, + [SMALL_STATE(3605)] = 109049, + [SMALL_STATE(3606)] = 109056, + [SMALL_STATE(3607)] = 109063, + [SMALL_STATE(3608)] = 109070, + [SMALL_STATE(3609)] = 109077, + [SMALL_STATE(3610)] = 109084, + [SMALL_STATE(3611)] = 109091, + [SMALL_STATE(3612)] = 109098, + [SMALL_STATE(3613)] = 109105, + [SMALL_STATE(3614)] = 109112, + [SMALL_STATE(3615)] = 109119, + [SMALL_STATE(3616)] = 109126, + [SMALL_STATE(3617)] = 109133, + [SMALL_STATE(3618)] = 109140, + [SMALL_STATE(3619)] = 109147, + [SMALL_STATE(3620)] = 109154, + [SMALL_STATE(3621)] = 109161, + [SMALL_STATE(3622)] = 109168, + [SMALL_STATE(3623)] = 109175, + [SMALL_STATE(3624)] = 109182, + [SMALL_STATE(3625)] = 109189, + [SMALL_STATE(3626)] = 109196, + [SMALL_STATE(3627)] = 109203, + [SMALL_STATE(3628)] = 109210, + [SMALL_STATE(3629)] = 109217, + [SMALL_STATE(3630)] = 109224, + [SMALL_STATE(3631)] = 109231, + [SMALL_STATE(3632)] = 109238, + [SMALL_STATE(3633)] = 109245, + [SMALL_STATE(3634)] = 109252, + [SMALL_STATE(3635)] = 109259, + [SMALL_STATE(3636)] = 109266, + [SMALL_STATE(3637)] = 109273, + [SMALL_STATE(3638)] = 109280, + [SMALL_STATE(3639)] = 109287, + [SMALL_STATE(3640)] = 109294, + [SMALL_STATE(3641)] = 109301, + [SMALL_STATE(3642)] = 109308, + [SMALL_STATE(3643)] = 109315, + [SMALL_STATE(3644)] = 109322, + [SMALL_STATE(3645)] = 109329, + [SMALL_STATE(3646)] = 109336, + [SMALL_STATE(3647)] = 109343, + [SMALL_STATE(3648)] = 109350, + [SMALL_STATE(3649)] = 109357, + [SMALL_STATE(3650)] = 109364, + [SMALL_STATE(3651)] = 109371, + [SMALL_STATE(3652)] = 109378, + [SMALL_STATE(3653)] = 109385, + [SMALL_STATE(3654)] = 109392, + [SMALL_STATE(3655)] = 109399, + [SMALL_STATE(3656)] = 109406, + [SMALL_STATE(3657)] = 109413, + [SMALL_STATE(3658)] = 109420, + [SMALL_STATE(3659)] = 109427, + [SMALL_STATE(3660)] = 109434, + [SMALL_STATE(3661)] = 109441, + [SMALL_STATE(3662)] = 109448, + [SMALL_STATE(3663)] = 109455, + [SMALL_STATE(3664)] = 109462, + [SMALL_STATE(3665)] = 109469, + [SMALL_STATE(3666)] = 109476, + [SMALL_STATE(3667)] = 109483, + [SMALL_STATE(3668)] = 109490, + [SMALL_STATE(3669)] = 109497, + [SMALL_STATE(3670)] = 109504, + [SMALL_STATE(3671)] = 109511, + [SMALL_STATE(3672)] = 109518, + [SMALL_STATE(3673)] = 109525, + [SMALL_STATE(3674)] = 109532, + [SMALL_STATE(3675)] = 109539, + [SMALL_STATE(3676)] = 109546, + [SMALL_STATE(3677)] = 109553, + [SMALL_STATE(3678)] = 109560, + [SMALL_STATE(3679)] = 109567, + [SMALL_STATE(3680)] = 109574, + [SMALL_STATE(3681)] = 109581, + [SMALL_STATE(3682)] = 109588, + [SMALL_STATE(3683)] = 109595, + [SMALL_STATE(3684)] = 109602, + [SMALL_STATE(3685)] = 109609, + [SMALL_STATE(3686)] = 109616, + [SMALL_STATE(3687)] = 109623, + [SMALL_STATE(3688)] = 109630, + [SMALL_STATE(3689)] = 109637, + [SMALL_STATE(3690)] = 109644, + [SMALL_STATE(3691)] = 109651, + [SMALL_STATE(3692)] = 109658, + [SMALL_STATE(3693)] = 109665, + [SMALL_STATE(3694)] = 109672, + [SMALL_STATE(3695)] = 109679, + [SMALL_STATE(3696)] = 109686, + [SMALL_STATE(3697)] = 109693, + [SMALL_STATE(3698)] = 109700, + [SMALL_STATE(3699)] = 109707, + [SMALL_STATE(3700)] = 109714, + [SMALL_STATE(3701)] = 109721, + [SMALL_STATE(3702)] = 109728, + [SMALL_STATE(3703)] = 109735, + [SMALL_STATE(3704)] = 109742, + [SMALL_STATE(3705)] = 109749, + [SMALL_STATE(3706)] = 109756, + [SMALL_STATE(3707)] = 109763, + [SMALL_STATE(3708)] = 109770, + [SMALL_STATE(3709)] = 109777, + [SMALL_STATE(3710)] = 109784, + [SMALL_STATE(3711)] = 109791, + [SMALL_STATE(3712)] = 109798, + [SMALL_STATE(3713)] = 109805, + [SMALL_STATE(3714)] = 109812, + [SMALL_STATE(3715)] = 109819, + [SMALL_STATE(3716)] = 109826, + [SMALL_STATE(3717)] = 109833, + [SMALL_STATE(3718)] = 109840, + [SMALL_STATE(3719)] = 109847, + [SMALL_STATE(3720)] = 109854, + [SMALL_STATE(3721)] = 109861, + [SMALL_STATE(3722)] = 109868, + [SMALL_STATE(3723)] = 109875, + [SMALL_STATE(3724)] = 109882, + [SMALL_STATE(3725)] = 109889, + [SMALL_STATE(3726)] = 109896, + [SMALL_STATE(3727)] = 109903, + [SMALL_STATE(3728)] = 109910, + [SMALL_STATE(3729)] = 109917, + [SMALL_STATE(3730)] = 109924, + [SMALL_STATE(3731)] = 109931, + [SMALL_STATE(3732)] = 109938, + [SMALL_STATE(3733)] = 109945, + [SMALL_STATE(3734)] = 109952, + [SMALL_STATE(3735)] = 109959, + [SMALL_STATE(3736)] = 109966, + [SMALL_STATE(3737)] = 109973, + [SMALL_STATE(3738)] = 109980, + [SMALL_STATE(3739)] = 109987, + [SMALL_STATE(3740)] = 109994, + [SMALL_STATE(3741)] = 110001, + [SMALL_STATE(3742)] = 110008, + [SMALL_STATE(3743)] = 110015, + [SMALL_STATE(3744)] = 110022, + [SMALL_STATE(3745)] = 110029, + [SMALL_STATE(3746)] = 110036, + [SMALL_STATE(3747)] = 110043, + [SMALL_STATE(3748)] = 110050, + [SMALL_STATE(3749)] = 110057, + [SMALL_STATE(3750)] = 110064, + [SMALL_STATE(3751)] = 110071, + [SMALL_STATE(3752)] = 110078, + [SMALL_STATE(3753)] = 110085, + [SMALL_STATE(3754)] = 110092, + [SMALL_STATE(3755)] = 110099, + [SMALL_STATE(3756)] = 110106, + [SMALL_STATE(3757)] = 110113, + [SMALL_STATE(3758)] = 110120, + [SMALL_STATE(3759)] = 110127, + [SMALL_STATE(3760)] = 110134, + [SMALL_STATE(3761)] = 110141, + [SMALL_STATE(3762)] = 110148, + [SMALL_STATE(3763)] = 110155, + [SMALL_STATE(3764)] = 110162, + [SMALL_STATE(3765)] = 110169, + [SMALL_STATE(3766)] = 110176, + [SMALL_STATE(3767)] = 110183, + [SMALL_STATE(3768)] = 110190, + [SMALL_STATE(3769)] = 110197, + [SMALL_STATE(3770)] = 110204, + [SMALL_STATE(3771)] = 110211, + [SMALL_STATE(3772)] = 110218, + [SMALL_STATE(3773)] = 110225, + [SMALL_STATE(3774)] = 110232, + [SMALL_STATE(3775)] = 110239, + [SMALL_STATE(3776)] = 110246, + [SMALL_STATE(3777)] = 110253, + [SMALL_STATE(3778)] = 110260, + [SMALL_STATE(3779)] = 110267, + [SMALL_STATE(3780)] = 110274, + [SMALL_STATE(3781)] = 110281, + [SMALL_STATE(3782)] = 110288, + [SMALL_STATE(3783)] = 110295, + [SMALL_STATE(3784)] = 110302, + [SMALL_STATE(3785)] = 110309, + [SMALL_STATE(3786)] = 110316, + [SMALL_STATE(3787)] = 110323, + [SMALL_STATE(3788)] = 110330, + [SMALL_STATE(3789)] = 110337, + [SMALL_STATE(3790)] = 110344, + [SMALL_STATE(3791)] = 110351, + [SMALL_STATE(3792)] = 110358, + [SMALL_STATE(3793)] = 110365, + [SMALL_STATE(3794)] = 110372, + [SMALL_STATE(3795)] = 110379, + [SMALL_STATE(3796)] = 110386, + [SMALL_STATE(3797)] = 110393, + [SMALL_STATE(3798)] = 110400, + [SMALL_STATE(3799)] = 110407, + [SMALL_STATE(3800)] = 110414, + [SMALL_STATE(3801)] = 110421, + [SMALL_STATE(3802)] = 110428, + [SMALL_STATE(3803)] = 110435, + [SMALL_STATE(3804)] = 110442, + [SMALL_STATE(3805)] = 110449, + [SMALL_STATE(3806)] = 110456, + [SMALL_STATE(3807)] = 110463, + [SMALL_STATE(3808)] = 110470, + [SMALL_STATE(3809)] = 110477, + [SMALL_STATE(3810)] = 110484, + [SMALL_STATE(3811)] = 110491, + [SMALL_STATE(3812)] = 110498, + [SMALL_STATE(3813)] = 110505, + [SMALL_STATE(3814)] = 110512, + [SMALL_STATE(3815)] = 110519, + [SMALL_STATE(3816)] = 110526, + [SMALL_STATE(3817)] = 110533, + [SMALL_STATE(3818)] = 110540, + [SMALL_STATE(3819)] = 110547, + [SMALL_STATE(3820)] = 110554, + [SMALL_STATE(3821)] = 110561, + [SMALL_STATE(3822)] = 110568, + [SMALL_STATE(3823)] = 110575, + [SMALL_STATE(3824)] = 110582, + [SMALL_STATE(3825)] = 110589, + [SMALL_STATE(3826)] = 110596, + [SMALL_STATE(3827)] = 110603, + [SMALL_STATE(3828)] = 110610, + [SMALL_STATE(3829)] = 110617, + [SMALL_STATE(3830)] = 110624, + [SMALL_STATE(3831)] = 110631, + [SMALL_STATE(3832)] = 110638, + [SMALL_STATE(3833)] = 110645, + [SMALL_STATE(3834)] = 110652, + [SMALL_STATE(3835)] = 110659, + [SMALL_STATE(3836)] = 110666, + [SMALL_STATE(3837)] = 110673, + [SMALL_STATE(3838)] = 110680, + [SMALL_STATE(3839)] = 110687, + [SMALL_STATE(3840)] = 110694, + [SMALL_STATE(3841)] = 110701, + [SMALL_STATE(3842)] = 110708, + [SMALL_STATE(3843)] = 110715, + [SMALL_STATE(3844)] = 110722, + [SMALL_STATE(3845)] = 110729, + [SMALL_STATE(3846)] = 110736, + [SMALL_STATE(3847)] = 110743, + [SMALL_STATE(3848)] = 110750, + [SMALL_STATE(3849)] = 110757, + [SMALL_STATE(3850)] = 110764, + [SMALL_STATE(3851)] = 110771, + [SMALL_STATE(3852)] = 110778, + [SMALL_STATE(3853)] = 110785, + [SMALL_STATE(3854)] = 110792, + [SMALL_STATE(3855)] = 110799, + [SMALL_STATE(3856)] = 110806, + [SMALL_STATE(3857)] = 110813, + [SMALL_STATE(3858)] = 110820, + [SMALL_STATE(3859)] = 110827, + [SMALL_STATE(3860)] = 110834, + [SMALL_STATE(3861)] = 110841, + [SMALL_STATE(3862)] = 110848, + [SMALL_STATE(3863)] = 110855, + [SMALL_STATE(3864)] = 110862, + [SMALL_STATE(3865)] = 110869, + [SMALL_STATE(3866)] = 110876, + [SMALL_STATE(3867)] = 110883, }; static TSParseActionEntry ts_parse_actions[] = { @@ -195876,3185 +200875,3225 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 4), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1043), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3768), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1015), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1015), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1409), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1324), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(15), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2677), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2678), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2680), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2684), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2999), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(140), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1334), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(502), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(71), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2801), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2918), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1099), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2954), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2911), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(948), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3809), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3326), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(410), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3670), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(56), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3494), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3293), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3292), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(363), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(342), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3330), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3441), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3798), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3332), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2187), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2671), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3335), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2423), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2415), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2564), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2531), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2615), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1340), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 5), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1043), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3768), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1015), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1015), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1409), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1324), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(15), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2677), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2678), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2680), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2684), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2999), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(140), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1334), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(502), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(71), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2801), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2918), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1099), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2954), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2911), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(948), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3809), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3326), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(56), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3494), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3293), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3292), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(363), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(342), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3330), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3441), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3798), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3332), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2187), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2671), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3335), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2423), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2415), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2564), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2531), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2615), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1340), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(14), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(951), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3327), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3331), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3804), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1086), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3743), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1049), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1049), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1377), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1441), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(13), + [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2783), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2767), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2759), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2719), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3074), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(180), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1443), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(400), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(71), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2482), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2951), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1082), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3016), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2948), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(964), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3818), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3419), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(575), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3663), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(55), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3573), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3141), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3116), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(372), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(356), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3427), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3500), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3856), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3429), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2213), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2711), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(3443), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2469), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2440), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2644), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2573), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2635), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1428), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 5), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1086), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3743), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1049), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1049), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1377), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1441), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(15), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2783), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2767), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2759), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2719), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3074), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(180), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1443), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(400), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(71), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2482), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2951), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1082), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3016), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2948), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(967), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3818), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3419), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(55), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3423), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3141), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3116), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(372), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(356), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3427), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3428), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3807), + [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3429), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2213), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2711), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3443), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2469), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2440), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2644), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2573), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(2635), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(1428), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(13), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(964), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3573), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3500), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat3, 2), SHIFT_REPEAT(3856), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3218), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multiplicative_expression_repeat1, 2), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multiplicative_expression_repeat1, 2), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(692), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_cascade, 1), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_cascade, 1), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3235), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(662), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_cascade, 1), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_cascade, 1), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 14), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 14), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multiplicative_expression_repeat1, 2), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multiplicative_expression_repeat1, 2), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_additive_expression_repeat1, 2), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_additive_expression_repeat1, 2), [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shift_expression_repeat1, 2), [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shift_expression_repeat1, 2), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 14), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 14), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_additive_expression_repeat1, 2), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_additive_expression_repeat1, 2), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_expression, 1), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_expression, 1), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(392), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(328), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(2545), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), REDUCE(sym__postfix_expression, 1), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(286), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3785), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3797), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_section, 3), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_section, 3), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_expression, 1), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_expression, 1), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(309), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(760), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 1), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 1), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(392), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(328), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(2545), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(286), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3785), - [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3797), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_section, 2), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_section, 2), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), REDUCE(sym__postfix_expression, 1), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(392), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(315), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(2545), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3785), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3797), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_expression, 2), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_expression, 2), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(392), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(315), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(2545), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3785), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3797), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(392), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(315), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(2545), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3785), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3797), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_expression, 2), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_expression, 2), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(392), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(328), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(2545), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(286), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3785), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3797), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_section, 2), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_section, 2), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_expression, 1), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_expression, 1), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(442), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_expression, 1), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_expression, 1), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(251), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(2641), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), REDUCE(sym__postfix_expression, 1), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(854), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3864), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3860), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 1), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 1), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(442), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(238), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(2641), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(325), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3864), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3860), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(238), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(325), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), REDUCE(sym__postfix_expression, 1), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_section, 3), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_section, 3), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(442), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(239), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(2641), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3864), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3860), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_expression, 2), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_expression, 2), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(442), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(239), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(2641), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3864), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3860), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(442), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(239), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(2641), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3864), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3860), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(442), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(238), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(2641), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(325), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3864), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3860), [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(392), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(328), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(2545), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(286), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3785), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3797), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(392), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(328), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(2545), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(286), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3785), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3797), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_section, 4), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_section, 4), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cascade_subsection, 1), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(328), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__cascade_subsection, 1), SHIFT(2545), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_expression, 3), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_expression, 3), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_relational_expression, 3), SHIFT(2332), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_relational_expression, 3), SHIFT(2332), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_relational_expression, 3), SHIFT(3014), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_relational_expression, 3), SHIFT(3263), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(328), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(2545), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cascade_subsection, 2), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(328), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__cascade_subsection, 2), SHIFT(2545), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(392), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3785), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3797), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 1), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 1), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3005), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void_not_function, 1), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_not_void_not_function, 1), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_expression, 2), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_expression, 2), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_additive_expression_repeat1, 2), SHIFT_REPEAT(2340), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3218), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 2), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 2), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shift_expression_repeat1, 2), SHIFT_REPEAT(2348), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multiplicative_expression_repeat1, 2), SHIFT_REPEAT(2345), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multiplicative_expression_repeat1, 2), SHIFT_REPEAT(2345), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_repeat1, 2), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3218), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 2), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 2), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(647), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3213), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(691), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_name, 1, .production_id = 1), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_name, 1, .production_id = 1), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_and_expression, 2), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_and_expression, 2), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_xor_expression, 2), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_xor_expression, 2), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(645), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary, 1), REDUCE(sym__type_name, 1, .production_id = 1), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary, 1), SHIFT(3750), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_and_expression, 2), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_and_expression, 2), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_or_expression, 2), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_or_expression, 2), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_or_expression, 2), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_or_expression, 2), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_null_expression, 2, .production_id = 6), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_null_expression, 2, .production_id = 6), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(646), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(690), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(689), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 2), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 2), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 1), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 1), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 2), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 2), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), REDUCE(sym__primary, 2), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), REDUCE(sym__primary, 2), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_dot_identifier, 2, .dynamic_precedence = 17, .production_id = 13), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_dot_identifier, 2, .dynamic_precedence = 17, .production_id = 13), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 6), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type_list, 6), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_section, 5), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_section, 5), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_name, 2, .production_id = 1), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_name, 2, .production_id = 1), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 5), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type_list, 5), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 4), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type_list, 4), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_args, 4), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_args, 4), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_tail, 2), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_type_tail, 2), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_selector_part, 1), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_selector_part, 1), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 5), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 5), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector, 1), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector, 1), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_selector, 1), REDUCE(aux_sym_assignable_selector_part_repeat1, 1), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_selector, 1), REDUCE(aux_sym_assignable_selector_part_repeat1, 1), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_selector_part, 1), REDUCE(sym_selector, 1), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_selector_part, 1), REDUCE(sym_selector, 1), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 16), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 16), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__below_relational_expression, 1), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__below_relational_expression, 1), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__real_expression, 1), REDUCE(sym__below_relational_expression, 1), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__real_expression, 1), REDUCE(sym__below_relational_expression, 1), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 44), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 44), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_test, 2), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_part, 2), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_part, 2), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression_without_cascade, 2), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression_without_cascade, 2), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression_without_cascade, 3, .production_id = 16), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression_without_cascade, 3, .production_id = 16), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_selector, 1), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_selector, 1), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super, 1), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super, 1), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_part, 1), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_part, 1), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_selector, 3), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_selector, 3), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 5), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 5), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unconditional_assignable_selector, 2), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unconditional_assignable_selector, 2), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_selector, 2), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_selector, 2), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 5), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 5), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_object_expression, 4), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_object_expression, 4), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unconditional_assignable_selector, 3), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unconditional_assignable_selector, 3), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 3), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type_list, 3), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression_body, 3), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression_body, 3), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast, 2), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast, 2), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 4), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 4), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_single_quotes_multiple, 4), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_single_quotes_multiple, 4), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_args, 2), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_args, 2), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_literal, 1), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_literal, 1), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_selector_part, 2), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_selector_part, 2), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_double_quotes_multiple, 4), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_double_quotes_multiple, 4), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_single_quotes, 4), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_single_quotes, 4), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void_not_function, 2), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_not_void_not_function, 2), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_tail, 3), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_type_tail, 3), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_double_quotes, 4), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_double_quotes, 4), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 4), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 4), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this, 1), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this, 1), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_args, 3), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_args, 3), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_object_expression, 3), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_object_expression, 3), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression_body, 2), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression_body, 2), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_selector, 1), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_selector, 1), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_expression, 3), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_expression, 3), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 3), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 3), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 3), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 3), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_expression, 2), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_expression, 2), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 2), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 2), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_single_quotes_multiple, 3), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_single_quotes_multiple, 3), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_double_quotes_multiple, 3), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_double_quotes_multiple, 3), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_single_quotes, 3), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_single_quotes, 3), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_double_quotes, 3), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_double_quotes, 3), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_single_quotes_multiple, 3), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_single_quotes_multiple, 3), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_double_quotes_multiple, 3), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_double_quotes_multiple, 3), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_single_quotes, 3), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_single_quotes, 3), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_double_quotes, 3), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_double_quotes, 3), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 3), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 3), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void, 1), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_not_void, 1), - [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_not_function, 1), REDUCE(sym__type_not_void, 1), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 2, .production_id = 8), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 2, .production_id = 8), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression_body, 1), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression_body, 1), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_literal, 2), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_literal, 2), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cascade_assignment_section, 2), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cascade_assignment_section, 2), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__real_expression, 1), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__real_expression, 1), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_operator, 1), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_operator, 1), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_single_quotes_multiple, 2), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_single_quotes_multiple, 2), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_double_quotes, 2), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_double_quotes, 2), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 1), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 1), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_double_quotes_multiple, 2), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_double_quotes_multiple, 2), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_single_quotes, 2), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_single_quotes, 2), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(588), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(433), - [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3772), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3767), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(433), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(309), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(760), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3772), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3767), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_set_or_map_literal, 2), REDUCE(sym_block, 2), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_set_or_map_literal, 2), REDUCE(sym_block, 2), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(673), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 49), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(433), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3772), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3767), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(433), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 2), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 35), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 63), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 47), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3772), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3767), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 33), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 2, .production_id = 20), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(433), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3772), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3767), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 20), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(433), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(309), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(760), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(433), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(309), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(760), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3772), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3767), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(433), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(309), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(760), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3772), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3767), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3772), - [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3767), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(644), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2618), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3332), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3802), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3801), - [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3334), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2671), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3335), - [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2423), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2415), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3779), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3778), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2648), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2418), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(323), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(2996), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3213), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shift_expression_repeat1, 2), SHIFT_REPEAT(2348), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3213), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(695), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(696), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3029), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(694), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(594), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(591), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(589), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(632), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(633), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(634), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(672), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(670), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(669), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(323), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(323), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3066), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(518), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3664), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3667), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(643), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(641), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(640), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3357), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2482), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2501), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__semicolon, 1), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__semicolon, 1), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__semicolon, 2), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__semicolon, 2), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3161), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3166), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(654), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(711), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(534), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(327), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(1313), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3749), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3748), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 4), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 4), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(477), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(312), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(1316), - [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3582), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3580), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(316), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(485), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(327), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(1313), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3708), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3711), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 3), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 3), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(308), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(314), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(1907), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(320), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(1819), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(419), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(312), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(1316), - [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3567), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3562), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_identifier_list_repeat1, 2), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_identifier_list_repeat1, 2), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_identifier_list_repeat1, 2), SHIFT_REPEAT(3644), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_identifier_list, 2), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_identifier_list, 2), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_identifier_list, 1), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_identifier_list, 1), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(477), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3582), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3580), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(477), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3582), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3580), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(534), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3749), - [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3748), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(534), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3749), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3748), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 7), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 7), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(477), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3582), - [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3580), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(534), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3749), - [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3748), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(534), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(327), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1313), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3749), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3748), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3102), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2554), - [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(3746), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(477), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(312), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1316), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3582), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3580), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(477), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(312), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(1316), - [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3582), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3580), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(477), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(312), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(1316), - [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3582), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3580), - [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(534), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(327), - [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(1313), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3749), - [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3748), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(534), - [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(327), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(1313), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3749), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3748), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary, 1), SHIFT(1609), - [2592] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__primary, 1), REDUCE(sym__type_name, 1, .production_id = 1), SHIFT(2801), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_final_declaration_list, 1), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_final_declaration_list, 1), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 6), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 6), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 3), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 3), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_or_export, 1), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_or_export, 1), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_export, 3), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_export, 3), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_import, 2), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_import, 2), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_name, 3), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_name, 3), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 7), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 7), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_import, 1), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_import, 1), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 5), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 5), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_tag, 3), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_tag, 3), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_export, 5), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_export, 5), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_final_declaration, 3), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_final_declaration, 3), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_final_declaration_list, 2), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_final_declaration_list, 2), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_final_declaration_list_repeat1, 2), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_static_final_declaration_list_repeat1, 2), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 4), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 4), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_export, 4), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_export, 4), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_static_final_declaration_list_repeat1, 2), SHIFT_REPEAT(3439), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__on_part, 4), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__on_part, 4), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(312), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_relational_expression, 3), SHIFT(3014), - [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_relational_expression, 3), SHIFT(3263), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(327), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(312), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(312), - [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(327), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__on_part, 2), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__on_part, 2), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__on_part, 3), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__on_part, 3), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(327), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 42), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 42), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_definition, 4), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_definition, 4), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 2), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 2), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 7), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assertion, 7), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_definition, 2), REDUCE(sym_lambda_expression, 2, .production_id = 8), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_definition, 2), REDUCE(sym_lambda_expression, 2, .production_id = 8), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_definition, 2), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_definition, 2), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 25), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 25), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 69), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 69), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_definition, 5), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_definition, 5), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3071), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3016), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 45), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 45), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, .production_id = 12), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, .production_id = 12), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary, 1), REDUCE(sym__simple_formal_parameter, 1), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary, 1), REDUCE(sym__simple_formal_parameter, 1), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 43), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 43), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 58), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 58), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 57), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 57), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 6), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assertion, 6), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 24), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 24), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 41), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 41), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_application_class, 4), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_application_class, 4), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 22), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 22), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 23), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 23), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 54), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 54), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 55), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 55), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 56), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 56), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 71), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 71), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 38), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 38), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 72), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 72), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 22), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 22), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(534), - [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3749), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3748), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 60), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 60), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 59), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 59), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 39), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 39), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 73), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 73), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(477), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3582), - [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3580), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_definition, 3), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_definition, 3), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(442), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(238), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(2641), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(325), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3864), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3860), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_expression, 2), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_expression, 2), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(442), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(238), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(2641), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(325), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3864), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3860), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_section, 4), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_section, 4), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cascade_subsection, 2), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(238), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__cascade_subsection, 2), SHIFT(2641), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cascade_subsection, 1), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(238), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__cascade_subsection, 1), SHIFT(2641), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_expression, 3), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_expression, 3), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_relational_expression, 3), SHIFT(2373), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_relational_expression, 3), SHIFT(2373), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_relational_expression, 3), SHIFT(3069), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_relational_expression, 3), SHIFT(3252), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(238), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(2641), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(442), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3864), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3860), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3060), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 1), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 1), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 2), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 2), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multiplicative_expression_repeat1, 2), SHIFT_REPEAT(2374), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multiplicative_expression_repeat1, 2), SHIFT_REPEAT(2374), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void_not_function, 1), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_not_void_not_function, 1), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shift_expression_repeat1, 2), SHIFT_REPEAT(2377), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3235), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_repeat1, 2), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3235), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 2), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 2), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_additive_expression_repeat1, 2), SHIFT_REPEAT(2379), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_expression, 2), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_expression, 2), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_and_expression, 2), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_and_expression, 2), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_or_expression, 2), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_or_expression, 2), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_name, 1, .production_id = 1), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_name, 1, .production_id = 1), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_and_expression, 2), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_and_expression, 2), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_or_expression, 2), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_or_expression, 2), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_null_expression, 2, .production_id = 6), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_null_expression, 2, .production_id = 6), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary, 1), REDUCE(sym__type_name, 1, .production_id = 1), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary, 1), SHIFT(3789), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_xor_expression, 2), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_xor_expression, 2), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(619), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(676), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(668), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(665), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(617), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(616), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3276), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_part, 1), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_part, 1), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 2), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 2), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression_body, 1), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression_body, 1), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 2, .production_id = 8), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 2, .production_id = 8), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void, 1), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_not_void, 1), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_not_function, 1), REDUCE(sym__type_not_void, 1), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 3), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 3), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_expression, 3), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_expression, 3), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), REDUCE(sym__primary, 2), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), REDUCE(sym__primary, 2), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__real_expression, 1), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__real_expression, 1), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__real_expression, 1), REDUCE(sym__below_relational_expression, 1), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__real_expression, 1), REDUCE(sym__below_relational_expression, 1), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector, 1), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector, 1), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_selector_part, 1), REDUCE(sym_selector, 1), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_selector_part, 1), REDUCE(sym_selector, 1), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unconditional_assignable_selector, 3), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unconditional_assignable_selector, 3), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_operator, 1), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_operator, 1), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 2), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 2), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_double_quotes, 3), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_double_quotes, 3), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_single_quotes, 3), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_single_quotes, 3), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_double_quotes_multiple, 3), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_double_quotes_multiple, 3), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_single_quotes_multiple, 3), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_single_quotes_multiple, 3), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_double_quotes, 3), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_double_quotes, 3), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_single_quotes, 3), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_single_quotes, 3), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_selector, 2), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_selector, 2), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_double_quotes_multiple, 3), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_double_quotes_multiple, 3), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_args, 2), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_args, 2), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_single_quotes_multiple, 3), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_single_quotes_multiple, 3), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 2), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 2), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 3), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 3), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 3), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 3), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_selector, 1), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_selector, 1), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unconditional_assignable_selector, 2), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unconditional_assignable_selector, 2), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_dot_identifier, 2, .dynamic_precedence = 17, .production_id = 13), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_dot_identifier, 2, .dynamic_precedence = 17, .production_id = 13), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void_not_function, 2), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_not_void_not_function, 2), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression_body, 2), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression_body, 2), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_object_expression, 3), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_object_expression, 3), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 4), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 4), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_double_quotes, 4), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_double_quotes, 4), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_single_quotes, 4), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_single_quotes, 4), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_double_quotes_multiple, 4), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_double_quotes_multiple, 4), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_string_literal_single_quotes_multiple, 4), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_string_literal_single_quotes_multiple, 4), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 4), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 4), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression_body, 3), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression_body, 3), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__below_relational_expression, 1), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__below_relational_expression, 1), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_name, 2, .production_id = 1), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_name, 2, .production_id = 1), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_selector_part, 1), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_selector_part, 1), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_double_quotes_multiple, 2), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_double_quotes_multiple, 2), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_selector, 1), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_selector, 1), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_object_expression, 4), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_object_expression, 4), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 5), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 5), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 5), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 5), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_selector, 3), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_selector, 3), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_or_map_literal, 6), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_or_map_literal, 6), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 6), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_literal, 6), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super, 1), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super, 1), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 1), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 1), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 6), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type_list, 6), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 5), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type_list, 5), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 4), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type_list, 4), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 44), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 44), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_single_quotes_multiple, 2), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_single_quotes_multiple, 2), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 3), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_type_list, 3), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_single_quotes, 2), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_single_quotes, 2), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal_double_quotes, 2), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal_double_quotes, 2), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_args, 4), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_args, 4), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_selector, 1), REDUCE(aux_sym_assignable_selector_part_repeat1, 1), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_selector, 1), REDUCE(aux_sym_assignable_selector_part_repeat1, 1), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 1), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 1), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_tail, 3), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_type_tail, 3), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignable_selector_part, 2), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignable_selector_part, 2), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast, 2), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast, 2), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_test, 2), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_expression, 2), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_expression, 2), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_literal, 2), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_literal, 2), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cascade_section, 5), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cascade_section, 5), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this, 1), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this, 1), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 16), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 16), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_args, 3), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_args, 3), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_tail, 2), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_type_tail, 2), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 5), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 5), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_part, 2), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_part, 2), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_literal, 1), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_literal, 1), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression_without_cascade, 2), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression_without_cascade, 2), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cascade_assignment_section, 2), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cascade_assignment_section, 2), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression_without_cascade, 3, .production_id = 16), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression_without_cascade, 3, .production_id = 16), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(705), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 20), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(440), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3823), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3822), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 2, .production_id = 20), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 2), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(440), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(251), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(854), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3823), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3822), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 63), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 47), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 49), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_set_or_map_literal, 2), REDUCE(sym_block, 2), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_set_or_map_literal, 2), REDUCE(sym_block, 2), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 35), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 33), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(737), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(440), + [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3823), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3822), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(440), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3823), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3822), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(440), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3823), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3822), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(440), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(251), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(854), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3823), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3822), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(440), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(251), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(854), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(440), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(251), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(854), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3823), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3822), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3823), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3822), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(620), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2648), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3429), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3799), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3795), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3432), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2711), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3443), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2469), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2440), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3647), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(3645), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2699), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2), SHIFT_REPEAT(2472), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(246), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3047), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3276), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3276), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shift_expression_repeat1, 2), SHIFT_REPEAT(2377), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(656), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(708), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(690), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(657), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(709), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(661), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3093), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(740), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(697), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(695), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(675), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(677), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(680), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(246), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(246), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(483), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3600), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3599), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3095), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(626), + [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(628), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(622), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3421), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2523), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2517), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__semicolon, 1), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__semicolon, 1), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__semicolon, 2), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__semicolon, 2), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3309), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3227), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(621), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(655), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(555), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(240), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3587), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3702), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 4), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 4), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(407), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(250), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(1851), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3636), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3635), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 3), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 3), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(228), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(1761), + [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(234), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(405), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(227), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(1381), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3623), + [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3620), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(230), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(1452), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(227), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(1381), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(477), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(230), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(1452), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3610), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3682), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_identifier_list, 1), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_identifier_list, 1), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_identifier_list, 2), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_identifier_list, 2), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_identifier_list_repeat1, 2), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_identifier_list_repeat1, 2), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_identifier_list_repeat1, 2), SHIFT_REPEAT(3686), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(407), + [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3636), + [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3635), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(407), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3636), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3635), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 7), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 7), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(555), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3587), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3702), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(555), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3587), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3702), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(555), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3587), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3702), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(407), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3636), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3635), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(555), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(230), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1452), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3587), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3702), + [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(407), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(227), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1381), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3636), + [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3635), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2659), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(3659), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(555), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(230), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(1452), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3587), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3702), + [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3119), + [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(407), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(227), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(1381), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3636), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3635), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(555), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(230), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(1452), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3587), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3702), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(407), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(227), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(1381), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3636), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3635), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary, 1), SHIFT(1653), + [2756] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__primary, 1), REDUCE(sym__type_name, 1, .production_id = 1), SHIFT(2841), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_final_declaration_list, 2), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_final_declaration_list, 2), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 6), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 6), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 3), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 3), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_import, 1), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_import, 1), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_or_export, 1), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_or_export, 1), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_export, 3), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_export, 3), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 4), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 4), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_final_declaration_list, 1), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_final_declaration_list, 1), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_static_final_declaration_list_repeat1, 2), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_static_final_declaration_list_repeat1, 2), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_static_final_declaration_list_repeat1, 2), SHIFT_REPEAT(3466), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_name, 3), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_name, 3), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 7), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 7), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_final_declaration, 3), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_final_declaration, 3), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specification, 5), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_specification, 5), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_script_tag, 3), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_script_tag, 3), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_export, 4), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_export, 4), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_import, 2), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_import, 2), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_library_export, 5), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_library_export, 5), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__on_part, 2), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__on_part, 2), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_relational_expression, 3), SHIFT(3069), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_relational_expression, 3), SHIFT(3252), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__on_part, 4), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__on_part, 4), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(230), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(227), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(227), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(227), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(230), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(230), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__on_part, 3), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__on_part, 3), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 72), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 72), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 55), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 55), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 54), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 54), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_definition, 4), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_definition, 4), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 22), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 22), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3035), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 2), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 2), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 6), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assertion, 6), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, .production_id = 12), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, .production_id = 12), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3098), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 7), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assertion, 7), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 60), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 60), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_definition, 2), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_definition, 2), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 25), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 25), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 24), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 24), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 23), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 23), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(555), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3587), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3702), + [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary, 1), REDUCE(sym__simple_formal_parameter, 1), + [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary, 1), REDUCE(sym__simple_formal_parameter, 1), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_definition, 2), REDUCE(sym_lambda_expression, 2, .production_id = 8), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_definition, 2), REDUCE(sym_lambda_expression, 2, .production_id = 8), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(407), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3636), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3635), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 37), [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 37), [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assertion, 4), [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assertion, 4), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_application_class, 5), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_application_class, 5), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, .production_id = 77), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, .production_id = 77), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(321), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(324), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(321), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(324), - [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(321), - [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(324), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_formal_parameter, 1), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 2), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 2), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3161), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3161), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(473), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3720), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3719), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 8), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 8), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3166), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_each_statement, 4), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_each_statement, 4), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 32), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 32), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 28), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 28), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 27), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 27), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3166), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 46), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 46), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(418), - [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3520), - [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3521), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 7), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 7), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 9), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 9), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 9), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 9), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 1), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 1), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(642), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_function, 1), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(562), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(656), - [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(565), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(573), - [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(639), - [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(564), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(710), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(688), - [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(687), - [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(563), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(661), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3282), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 10), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3122), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_label, 2), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), - [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2542), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3332), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2403), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2671), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3335), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2543), - [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3661), - [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2415), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3732), - [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2381), - [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3731), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3425), - [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2535), - [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2406), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_label, 3), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(706), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3223), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(631), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3262), - [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(445), - [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(320), - [3385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(1819), - [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3574), - [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3573), - [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(491), - [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3659), - [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3628), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(404), - [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(314), - [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(1907), - [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3745), - [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3747), - [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(494), - [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3672), - [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3669), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary, 1), SHIFT(3721), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(682), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(508), - [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(308), - [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3632), - [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3631), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(618), - [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(414), - [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(316), - [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3537), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3549), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(494), - [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3672), - [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3669), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(491), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3659), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3628), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(491), - [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3659), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3628), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(494), - [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3672), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3669), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(491), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3659), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3628), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(494), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3672), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3669), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(491), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(314), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(1907), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3659), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3628), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(494), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(320), - [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(1819), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3672), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3669), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(494), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(320), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1819), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3672), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3669), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(494), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(320), - [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(1819), - [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3672), - [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3669), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(491), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(314), - [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1907), - [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3659), - [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3628), - [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(491), - [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(314), - [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(1907), - [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3659), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3628), - [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(416), - [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3535), - [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3534), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(416), - [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3535), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3534), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(416), - [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3535), - [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3534), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(524), - [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(308), - [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3614), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3611), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(524), - [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3614), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3611), - [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(416), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(316), - [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1929), - [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3535), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3534), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(416), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(316), - [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3535), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3534), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(524), - [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(308), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3614), - [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3611), - [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(524), - [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3614), - [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3611), - [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(524), - [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3614), - [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3611), - [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(416), - [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(316), - [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3535), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3534), - [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(524), - [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(308), - [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1934), - [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3614), - [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3611), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(566), - [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(595), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3044), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3047), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3072), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3122), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3122), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3282), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3002), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 5), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer, 5), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer, 3), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3282), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3000), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(627), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(630), - [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(619), - [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(620), - [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(621), - [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(628), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(709), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(708), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(707), - [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(717), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(705), - [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(685), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(561), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3223), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_additive_expression_repeat1, 2), SHIFT_REPEAT(2340), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3262), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3262), - [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3223), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(716), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(704), - [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(636), - [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(684), - [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(596), - [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(683), - [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(587), - [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(615), - [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(585), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(616), - [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(617), - [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(584), - [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(598), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(597), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3030), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3021), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_not_function, 1), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(593), - [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(567), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(592), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(674), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(675), - [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(676), - [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(568), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(569), - [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(662), - [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(590), - [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(664), - [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(663), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(325), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(609), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_operator, 1), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_operator, 1), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_operator, 1), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_operator, 1), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_operator, 1), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_operator, 1), - [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(447), - [4232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3591), - [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3587), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(518), - [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3664), - [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3667), - [4249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2507), - [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__metadata, 2), SHIFT_REPEAT(3332), - [4255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2671), - [4258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(3335), - [4261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2445), - [4264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2415), - [4267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2615), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__metadata, 2), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(666), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(712), - [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(713), - [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(715), - [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(665), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(667), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(702), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(697), - [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(606), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(608), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(607), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(693), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__static_or_covariant, 1), SHIFT(2618), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__static_or_covariant, 1), SHIFT(2671), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_or_covariant, 1), - [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__static_or_covariant, 1), SHIFT(2415), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 4), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 4), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), - [4343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__external_and_static, 1), SHIFT(2766), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [4348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__external_and_static, 1), SHIFT(2671), - [4351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__external_and_static, 1), SHIFT(2415), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_and_static, 1), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 11), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 11), - [4360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(612), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(610), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(611), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(395), - [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(2545), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3523), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3663), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_formal_parameter, 2), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2826), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strict_formal_parameter_list, 4), - [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strict_formal_parameter_list, 4), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter_list, 1), - [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameter_list, 1), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter_part, 2), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__formal_parameter_part, 2), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strict_formal_parameter_list, 5), - [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strict_formal_parameter_list, 5), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_param, 4), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_param, 3), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [4642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2507), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strict_formal_parameter_list, 2), - [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strict_formal_parameter_list, 2), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strict_formal_parameter_list, 3), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strict_formal_parameter_list, 3), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(315), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(2545), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 6), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer, 6), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4), - [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer, 4), - [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3125), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_void_type, 1), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_void_type, 1), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3095), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2975), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(3148), - [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2676), - [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_multiple_repeat1, 2), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 1), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_signature, 1), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_identifier, 1), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configurable_uri, 1), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2981), - [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(3305), - [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2724), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_multiple_repeat1, 2), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(2956), - [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(3290), - [4939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(2726), - [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_repeat1, 2), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(2976), - [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(3146), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_repeat1, 2), - [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(2728), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declared_identifier, 2, .production_id = 4), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declared_identifier, 4, .production_id = 26), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializers_repeat1, 2), - [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializers_repeat1, 2), SHIFT_REPEAT(2764), - [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_initializers_repeat1, 2), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_signature, 3), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declared_identifier, 3, .production_id = 17), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_signature, 2), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializers, 3), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializers, 3), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializers, 2), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializers, 2), - [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2627), - [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(3746), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_operator, 1), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_operator, 1), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2772), - [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2928), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 2), - [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2773), - [5089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2938), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 2), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list_entry, 1), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list_entry, 1), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configurable_uri_repeat1, 2), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configurable_uri_repeat1, 2), SHIFT_REPEAT(3699), - [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(2816), - [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(2893), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 2), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(2819), - [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(2910), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 2), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list_entry, 2), - [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list_entry, 2), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configurable_uri, 2), - [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_signature, 4, .production_id = 70), - [5335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_signature, 4, .production_id = 70), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__metadata, 2), SHIFT_REPEAT(3357), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__metadata, 2), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__formal_parameter_part, 1), REDUCE(sym_constructor_signature, 2, .production_id = 40), - [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_signature, 2, .production_id = 40), - [5413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__formal_parameter_part, 1), REDUCE(sym_constructor_signature, 2, .production_id = 40), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 1), - [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 1), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_formal_parameter, 4), - [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declared_identifier, 3, .production_id = 17), REDUCE(sym__declared_identifier, 4, .production_id = 26), - [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 3, .production_id = 4), - [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 3, .production_id = 4), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_signature, 3), - [5475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter_signature, 3), - [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter_signature, 3), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(3643), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), - [5486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter_signature, 2), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_signature, 2), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter_signature, 2), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_formal_parameter, 1, .production_id = 2), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_formal_parameter, 2), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uri, 1), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 1), - [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 1), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tilde_operator, 1), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tilde_operator, 1), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3076), - [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus_operator, 1), - [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus_operator, 1), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2, .production_id = 5), - [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 2, .production_id = 5), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2), - [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_signature, 2), - [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 2), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 1), - [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 1), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_param, 5), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_signature, 3), - [5547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_signature, 3), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 39), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 39), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_definition, 3), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_definition, 3), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_application_class, 5), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_application_class, 5), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 22), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 22), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_application_class, 4), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_application_class, 4), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 41), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 41), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 42), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 42), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 43), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 43), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, .production_id = 77), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, .production_id = 77), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 45), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 45), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 73), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 73), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 59), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 59), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 71), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 71), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 56), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 56), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 69), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 69), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_definition, 5), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_definition, 5), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 38), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 38), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 57), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 57), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 58), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 58), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_formal_parameter, 1), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 2), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 2), + [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(241), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(241), + [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(225), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 1), SHIFT(225), + [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(241), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__cascade_subsection, 2), SHIFT(225), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 7), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 7), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 46), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 46), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 9), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 9), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 9), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 9), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 1), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 1), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3227), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_each_statement, 4), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_each_statement, 4), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 27), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 27), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 28), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 28), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(437), + [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3771), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3770), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3227), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3309), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 32), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 32), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 8), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 8), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(404), + [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3581), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3582), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3309), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(651), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(652), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_function, 1), + [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(654), + [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(658), + [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(660), + [3256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(693), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3352), + [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(712), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 10), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3263), + [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(648), + [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(638), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(623), + [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(618), + [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(609), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_label, 3), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2583), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3429), + [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2435), + [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2711), + [3361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3443), + [3364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2587), + [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3603), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2440), + [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3616), + [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2394), + [3379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3619), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3578), + [3385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2582), + [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2438), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_label, 2), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3143), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3349), + [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(718), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(681), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(435), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3718), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3715), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(406), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(250), + [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(1851), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3629), + [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3627), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(494), + [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 1), SHIFT(3642), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 1), SHIFT(3640), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary, 1), SHIFT(3717), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(470), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(228), + [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(1761), + [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3756), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3760), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(434), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(234), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3685), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3683), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(649), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(510), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(240), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 1), SHIFT(3867), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 1), SHIFT(3866), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(612), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(435), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3718), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3715), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(435), + [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3718), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3715), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(494), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3642), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3640), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(494), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3642), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3640), + [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(435), + [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3718), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3715), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(494), + [3606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3642), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3640), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(435), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(250), + [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(1851), + [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3718), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3715), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(494), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(228), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1761), + [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3642), + [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3640), + [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(435), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(250), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1851), + [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3718), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3715), + [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(494), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(228), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(1761), + [3668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3642), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3640), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(494), + [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(228), + [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(1761), + [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3642), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3640), + [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(435), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(250), + [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(1851), + [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3718), + [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3715), + [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(433), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3656), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3654), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(433), + [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3656), + [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3654), + [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(556), + [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(240), + [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1992), + [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3773), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3772), + [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(556), + [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3773), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3772), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(433), + [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(234), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3656), + [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3654), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(433), + [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(234), + [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3656), + [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3654), + [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(433), + [3787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3656), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3654), + [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(556), + [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 2), SHIFT(3773), + [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 2), SHIFT(3772), + [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(556), + [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(240), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_postfix_expression, 2), SHIFT(3773), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_postfix_expression, 2), SHIFT(3772), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(556), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(240), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__postfix_expression, 2), SHIFT(3773), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__postfix_expression, 2), SHIFT(3772), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(556), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignable_expression, 1), SHIFT(3773), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignable_expression, 1), SHIFT(3772), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(433), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(234), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(1985), + [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3656), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_expression_repeat1, 2), SHIFT_REPEAT(3654), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(732), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(646), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3063), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3081), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3352), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3077), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer, 3), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3352), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 5), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer, 5), + [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3263), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3263), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3084), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(685), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(589), + [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(682), + [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(608), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(607), + [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(606), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(613), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(624), + [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(625), + [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(716), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(715), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(603), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_additive_expression_repeat1, 2), SHIFT_REPEAT(2379), + [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(701), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3349), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3143), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(632), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 2), SHIFT(3349), + [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3143), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(610), + [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(724), + [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(725), + [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(726), + [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(700), + [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(683), + [4087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(667), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(629), + [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(627), + [4100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(738), + [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(614), + [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(735), + [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(736), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3044), + [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3042), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_not_function, 1), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(723), + [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(719), + [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(733), + [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(698), + [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(636), + [4165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(641), + [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(645), + [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(678), + [4174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(727), + [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(728), + [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(731), + [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(699), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(235), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_equality_expression, 3), SHIFT(631), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_operator, 1), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_operator, 1), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_operator, 1), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_operator, 1), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_operator, 1), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_operator, 1), + [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(483), + [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3600), + [4300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3599), + [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(432), + [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3646), + [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cascade_section_repeat1, 2), SHIFT_REPEAT(3639), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(635), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2552), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__metadata, 2), SHIFT_REPEAT(3429), + [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2711), + [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(3443), + [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2488), + [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2440), + [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__metadata, 2), SHIFT(2635), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__metadata, 2), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(707), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(706), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(702), + [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(637), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(634), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_and_expression_repeat1, 2), SHIFT_REPEAT(730), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(611), + [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(615), + [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitwise_or_expression_repeat1, 2), SHIFT_REPEAT(696), + [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(647), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitwise_xor_expression_repeat1, 2), SHIFT_REPEAT(704), + [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__static_or_covariant, 1), SHIFT(2648), + [4388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__static_or_covariant, 1), SHIFT(2711), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_or_covariant, 1), + [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__static_or_covariant, 1), SHIFT(2440), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 4), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 4), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 21), + [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__external_and_static, 1), SHIFT(2809), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [4413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__external_and_static, 1), SHIFT(2711), + [4416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__external_and_static, 1), SHIFT(2440), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_and_static, 1), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 11), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 11), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_type_tails, 2), SHIFT_REPEAT(3108), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_and_expression_repeat1, 2), SHIFT_REPEAT(694), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_null_expression, 2, .production_id = 15), SHIFT_REPEAT(687), + [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_logical_or_expression_repeat1, 2), SHIFT_REPEAT(691), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_formal_parameter, 2), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(504), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(2641), + [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3710), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_expression_repeat1, 2), SHIFT_REPEAT(3709), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2828), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strict_formal_parameter_list, 4), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strict_formal_parameter_list, 4), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strict_formal_parameter_list, 5), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strict_formal_parameter_list, 5), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_param, 4), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strict_formal_parameter_list, 3), + [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strict_formal_parameter_list, 3), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strict_formal_parameter_list, 2), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strict_formal_parameter_list, 2), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_param, 3), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter_list, 1), + [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_parameter_list, 1), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2552), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter_part, 2), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__formal_parameter_part, 2), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 6), + [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer, 6), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4), + [4763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer, 4), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_void_type, 1), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_void_type, 1), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3279), + [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(239), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assignable_selector_part_repeat1, 2), SHIFT_REPEAT(2641), + [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_repeat1, 2), SHIFT_REPEAT(3180), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(3013), + [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(3303), + [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2723), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_multiple_repeat1, 2), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_identifier, 1), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(2988), + [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(3199), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_repeat1, 2), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(2741), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(2996), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(3171), + [4909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(2742), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_repeat1, 2), + [4914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(3011), + [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(3308), + [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2743), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_single_quotes_multiple_repeat1, 2), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 1), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_signature, 1), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configurable_uri, 1), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2647), + [5092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(3659), + [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1), REDUCE(sym__type_name, 1, .production_id = 1), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializers_repeat1, 2), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializers_repeat1, 2), SHIFT_REPEAT(2810), + [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_initializers_repeat1, 2), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializers, 3), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializers, 3), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializers, 2), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializers, 2), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declared_identifier, 3, .production_id = 17), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_signature, 2), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declared_identifier, 2, .production_id = 4), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declared_identifier, 4, .production_id = 26), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_signature, 3), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(2817), + [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 2), SHIFT_REPEAT(2969), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 2), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_operator, 1), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_operator, 1), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [5181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(2821), + [5184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 2), SHIFT_REPEAT(2953), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 2), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2826), + [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2944), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 2), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2827), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 2), SHIFT_REPEAT(2984), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 2), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list_entry, 2), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list_entry, 2), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_signature, 4, .production_id = 70), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_signature, 4, .production_id = 70), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configurable_uri, 2), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__formal_parameter_part, 1), REDUCE(sym_constructor_signature, 2, .production_id = 40), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_signature, 2, .production_id = 40), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__formal_parameter_part, 1), REDUCE(sym_constructor_signature, 2, .production_id = 40), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configurable_uri_repeat1, 2), + [5369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configurable_uri_repeat1, 2), SHIFT_REPEAT(3816), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list_entry, 1), + [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list_entry, 1), + [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__metadata, 2), SHIFT_REPEAT(3421), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__metadata, 2), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_formal_parameter, 4), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 1, .production_id = 2), + [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_formal_parameter, 1, .production_id = 2), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_signature, 3), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_signature, 3), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 1), + [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__raw_string_literal_double_quotes_multiple_repeat1, 1), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_signature, 4), [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_signature, 4), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 1), - [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 1), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 1, .production_id = 2), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_formal_parameter, 3), - [5567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declared_identifier, 2, .production_id = 4), REDUCE(sym__declared_identifier, 3, .production_id = 17), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__normal_formal_parameter, 2), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sub_string_test, 2), - [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negation_operator, 1), - [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negation_operator, 1), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 2), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_not_void_list_repeat1, 2), - [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_not_void_list_repeat1, 2), SHIFT_REPEAT(2565), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 4), - [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2891), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void_list, 2), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void_list, 1), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_uri, 5), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factory_constructor_signature, 3), - [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factory_constructor_signature, 3), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factory_constructor_signature, 4), - [5616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factory_constructor_signature, 4), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_list, 1), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_and_static, 2), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_list, 2), - [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_library_export_repeat1, 2), SHIFT_REPEAT(3398), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_library_export_repeat1, 2), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_variable_definition, 1, .production_id = 2), - [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_application, 2), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_named_parameter, 1), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initialized_identifier, 1), SHIFT(3643), - [5654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initialized_identifier, 1), REDUCE(sym_variable_declaration, 3, .production_id = 2), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_parameter_type, 1), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 1), SHIFT(340), - [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 1), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_operator, 1), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 3), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_element, 3, .production_id = 10), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_literal_repeat1, 2), - [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_literal_repeat1, 2), SHIFT_REPEAT(174), - [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 19), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_named_parameter, 2), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declaration, 1, .production_id = 2), REDUCE(sym_initialized_variable_definition, 1, .production_id = 2), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_element, 5, .production_id = 32), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_element, 5, .production_id = 28), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [5784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 2), SHIFT(340), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 2), - [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_identifier, 2), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_element, 6, .production_id = 46), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), SHIFT_REPEAT(2536), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2790), - [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_combinator, 2), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_identifier_list, 1), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 2), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 64), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 62), - [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_variable_definition, 2, .production_id = 2), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_variable_definition, 4, .production_id = 18), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 61), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 2), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_operator, 2), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 6, .production_id = 74), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 2), SHIFT(3155), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 2), SHIFT(3319), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixins, 2), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_parameter_types_repeat1, 2), - [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_parameter_types_repeat1, 2), SHIFT_REPEAT(2579), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 48), - [6026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat1, 2), SHIFT_REPEAT(3155), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat1, 2), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 50), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 51), - [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__final_const_var_or_type, 2), SHIFT(3690), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 52), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 53), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_identifier_list, 2), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__named_formal_parameters_repeat1, 2), - [6068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__named_formal_parameters_repeat1, 2), SHIFT_REPEAT(2025), - [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_parameters_repeat1, 2), SHIFT_REPEAT(2163), - [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_parameters_repeat1, 2), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__normal_formal_parameters, 1), SHIFT(2186), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__normal_formal_parameters, 1), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__normal_formal_parameters_repeat1, 2), SHIFT_REPEAT(2186), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__normal_formal_parameters_repeat1, 2), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__normal_formal_parameters, 2), SHIFT(2186), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__normal_formal_parameters, 2), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(2890), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 65), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 7, .production_id = 78), - [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat1, 2, .production_id = 31), SHIFT_REPEAT(406), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat1, 2, .production_id = 31), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_head, 2, .production_id = 3), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 34), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 36), - [6205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_static_final_declaration_list_repeat1, 2), SHIFT_REPEAT(3507), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_formal_parameter, 1), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 2), SHIFT_REPEAT(3155), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 2), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_operator, 1), - [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_args_repeat1, 2), SHIFT_REPEAT(2650), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_args_repeat1, 2), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [6248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat2, 2), SHIFT_REPEAT(496), - [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat2, 2), - [6253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 3), SHIFT(3155), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 3), - [6258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 1), SHIFT(3155), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat2, 2, .production_id = 67), SHIFT_REPEAT(537), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat2, 2, .production_id = 67), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 3), SHIFT(3319), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 3), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 68), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 6, .production_id = 76), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initialized_identifier_list_repeat1, 2), SHIFT_REPEAT(3378), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initialized_identifier_list_repeat1, 2), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_variable_definition, 3, .production_id = 18), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializers_repeat1, 2), SHIFT_REPEAT(2758), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 2), SHIFT_REPEAT(3319), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 6, .production_id = 75), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inferred_type, 1), - [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2946), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 2), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 1), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1, .production_id = 2), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), - [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 5), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interfaces, 2), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_named_parameter, 3), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_formal_parameter, 3), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat1, 2, .production_id = 30), + [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(3688), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), + [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tilde_operator, 1), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tilde_operator, 1), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2), + [5566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_signature, 2), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 2), + [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declared_identifier, 3, .production_id = 17), REDUCE(sym__declared_identifier, 4, .production_id = 26), + [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus_operator, 1), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus_operator, 1), + [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declared_identifier, 2, .production_id = 4), REDUCE(sym__declared_identifier, 3, .production_id = 17), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 1), + [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__raw_string_literal_single_quotes_repeat1, 1), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_formal_parameter, 3), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_formal_parameter, 2), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2, .production_id = 5), + [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 2, .production_id = 5), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_signature, 3), + [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter_signature, 3), + [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__normal_formal_parameter, 2), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 3, .production_id = 4), + [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 3, .production_id = 4), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 1), + [5610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__raw_string_literal_double_quotes_repeat1, 1), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_signature, 2), + [5616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter_signature, 2), + [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter_signature, 2), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_param, 5), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uri, 1), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element, 1), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter_signature, 3), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 1), + [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__raw_string_literal_single_quotes_multiple_repeat1, 1), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sub_string_test, 2), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 2), + [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 4), + [5648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_library_export_repeat1, 2), SHIFT_REPEAT(3430), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_library_export_repeat1, 2), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void_list, 1), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_not_void_list, 2), + [5659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2956), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_not_void_list_repeat1, 2), + [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_not_void_list_repeat1, 2), SHIFT_REPEAT(2673), + [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negation_operator, 1), + [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negation_operator, 1), + [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_and_static, 2), + [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factory_constructor_signature, 4), + [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factory_constructor_signature, 4), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_list, 1), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_list, 2), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_variable_definition, 1, .production_id = 2), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration_uri, 5), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factory_constructor_signature, 3), + [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factory_constructor_signature, 3), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_element, 3, .production_id = 10), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_element, 5, .production_id = 32), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_element, 5, .production_id = 28), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_named_parameter, 2), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), SHIFT_REPEAT(2578), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_type_list_repeat1, 2), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initialized_identifier, 1), SHIFT(3688), + [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initialized_identifier, 1), REDUCE(sym_variable_declaration, 3, .production_id = 2), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_identifier, 2), + [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_operator, 1), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_element, 6, .production_id = 46), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_parameter_type, 1), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declaration, 1, .production_id = 2), REDUCE(sym_initialized_variable_definition, 1, .production_id = 2), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 3), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 19), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), + [5825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 1), SHIFT(368), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 1), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_named_parameter, 1), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 2), SHIFT(368), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 2), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_literal_repeat1, 2), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_literal_repeat1, 2), SHIFT_REPEAT(203), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_application, 2), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(2864), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixins, 2), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 3), SHIFT(3121), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list, 3), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_operator, 2), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat2, 2), SHIFT_REPEAT(386), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat2, 2), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 2), SHIFT_REPEAT(3166), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 2), + [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_static_final_declaration_list_repeat1, 2), SHIFT_REPEAT(3411), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_variable_definition, 2, .production_id = 2), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 7, .production_id = 78), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 62), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_variable_definition, 4, .production_id = 18), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 2), SHIFT(3121), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_identifier_list, 2), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_args_repeat1, 2), SHIFT_REPEAT(2690), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_args_repeat1, 2), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2856), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_identifier_list, 1), + [6000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 2), SHIFT(3166), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializers_repeat1, 2), SHIFT_REPEAT(2806), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [6038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument_list, 1), SHIFT(3166), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_formal_parameter, 1), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 3), SHIFT(3166), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 3), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat3, 2), SHIFT_REPEAT(3121), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 53), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 52), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 2), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 51), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 50), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_parameter_types_repeat1, 2), + [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_parameter_types_repeat1, 2), SHIFT_REPEAT(2646), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 4, .production_id = 48), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat1, 2), SHIFT_REPEAT(3166), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_repeat1, 2), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 61), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 6, .production_id = 74), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_operator, 1), + [6177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initialized_identifier_list_repeat1, 2), SHIFT_REPEAT(3529), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initialized_identifier_list_repeat1, 2), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_variable_definition, 3, .production_id = 18), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 64), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 6, .production_id = 76), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_combinator, 2), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__normal_formal_parameters_repeat1, 2), SHIFT_REPEAT(2218), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__normal_formal_parameters_repeat1, 2), + [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__normal_formal_parameters, 2), SHIFT(2218), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__normal_formal_parameters, 2), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 65), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__final_const_var_or_type, 2), SHIFT(3746), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [6267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat2, 2, .production_id = 67), SHIFT_REPEAT(396), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat2, 2, .production_id = 67), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 6, .production_id = 75), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 5, .production_id = 68), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__named_formal_parameters_repeat1, 2), + [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__named_formal_parameters_repeat1, 2), SHIFT_REPEAT(2174), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_head, 2, .production_id = 3), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 36), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__normal_formal_parameters, 1), SHIFT(2218), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__normal_formal_parameters, 1), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 34), + [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_parameters_repeat1, 2), SHIFT_REPEAT(2196), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_parameters_repeat1, 2), + [6385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat1, 2, .production_id = 31), SHIFT_REPEAT(570), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat1, 2, .production_id = 31), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 2), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat1, 2, .production_id = 30), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2977), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_formal_parameter, 3), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_named_parameter, 3), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 4), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified, 1), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 3), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_identifier, 3), - [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uri_test, 1), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_named_parameter, 4), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_constructor_signature, 3), - [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat2, 2, .production_id = 66), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 5), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uri_test, 3), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6), - [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified, 3), - [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_positional_parameter_types, 4), - [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_parameter_types, 4), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_application, 3), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_positional_parameter_types, 3), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_parameter_types, 3), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 4), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_operator, 1), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 29), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__optional_postional_formal_parameters, 4), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_formal_parameters, 4), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_identifier, 2, .dynamic_precedence = 18), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_formal_parameters, 3), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__optional_postional_formal_parameters, 3), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_types, 1), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2942), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_formal_parameters, 1), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2891), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7039] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1, .production_id = 2), + [6493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inferred_type, 1), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 1), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_loop_parts_repeat2, 2, .production_id = 66), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), + [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_constructor_signature, 3), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 5), + [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uri_test, 1), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_named_parameter, 4), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__final_const_var_or_type, 2), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interfaces, 2), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initialized_identifier, 3), + [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified, 1), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 3), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_operator, 1), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2956), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 4), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_parameter_types, 3), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_positional_parameter_types, 3), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified, 3), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_application, 3), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_parameter_types, 4), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_positional_parameter_types, 4), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__final_const_var_or_type, 1), SHIFT(2975), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__optional_postional_formal_parameters, 3), + [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_identifier, 2, .dynamic_precedence = 18), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uri_test, 3), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6979] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 5), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_formal_parameters, 3), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_types, 1), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_formal_parameters, 4), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__optional_postional_formal_parameters, 4), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_formal_parameters, 1), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_loop_parts, 3, .production_id = 29), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), }; #ifdef __cplusplus diff --git a/test/corpus/dart.txt b/test/corpus/dart.txt index f924559d3..871b73373 100644 --- a/test/corpus/dart.txt +++ b/test/corpus/dart.txt @@ -194,3 +194,17 @@ final set = {"hello", "world"}; (local_variable_declaration (initialized_variable_definition (identifier) (set_or_map_literal (string_literal) (string_literal))))) +================================================== +collection literal type parameters +================================================== + +final dynamic opts = { + 'transports': ['websocket'], + 'forceNew': true, +}; + +--- + +(program (local_variable_declaration (initialized_variable_definition (type_identifier) (identifier) + (set_or_map_literal (type_arguments (type_identifier) (type_identifier)) (pair (string_literal) + (list_literal (string_literal))) (pair (string_literal) (true)))))) \ No newline at end of file